High number of "white" pages

ErrorCode

Member
Is there a reason for this? Was I supposed to upload some of the files a different way? Am I not connecting to the MySQL database correctly?
 
A blank page is often a suppressed error. Try adding this line to your library/config.php file:

Code:
ini_set('display_errors', true);

Or add this to a .htaccess file on your server (only works on Apache servers):

Code:
php_value display_errors 1

That may reveal an error message on the blank page.
 
The place to start is in this thread. Turn on the errors and see what gets displayed on the screen.

Also checkout the server errors log in the ACP. Lastly, check through the PHP error log to see if there is anything in there.
 
Top Bottom