Blank Pages

Why am I getting Blank pages for example http://www.cheapelectronics.co.nz/shop/account.php

could u give us some more information? maybe sourcecode.

or try debugging (use some echos or print_r’s, and put error_reporting(E_ALL) at the beginning of ur script)

document http://www.jzm.co.nz/account.zip

i don’t think there is a problem within account.php.

have u tryed error_reporting(E_ALL) ?

i do that

Looks like you don’t have PHP installed. Try installing and enabling it. You can easily check if PHP works by using a simple script:

[php]

<?php echo "PHP Enabled."; ?>

[/php]

to me it looks very much like php is installed and running, as the page is not showing the php source but is empty when viewing the the html-source.

Sounds to me like error reporting is turned off the PHP is in fact running.

Change either in the php.ini file or as Q1712 stated use:

error_reporting(E_ALL); at the top of your pages while in development.

Sponsor our Newsletter | Privacy Policy | Terms of Service