Page 1 of 1

PostPosted: Sat Aug 11, 2007 8:57 am
by MCJohnson74
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?

PostPosted: Sat Aug 11, 2007 10:31 am
by shannah

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:

1. 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?

2. 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