Blank index.php page
Archived from the Web Auction Discussion forum.
MCJohnson74 — Sat Aug 11, 2007 8:57 am
I am getting a blank page when I access it. For that matter I get a blank page when I access any of the php files. I am using AT&T Yahoo for my web hosting.
I have manually updated the conf.ini file as well. Any ideas?
shannah — Sat Aug 11, 2007 10:31 am
Please check your error log to see what the problem is.Ê Hard to tell what is going on without an error.
Other ideas you can try:
-
View the source of the page that is output by the browser.Ê Maybe the page appears to be blank, but there is actually some html being output?
-
Try to force error output to the browser by adding the following to the beginning of the index.php file:
error_reporting(E_ALL);
ini_set(‘displaly_errors’,’on’);
-Steve