08-12-2007, 01:10 PM
|
#1 |
| | Blank pages after server move !!! HELP ! | Hello,
After moving from my shared host to my dedicated, i have all pages blank, even admincp login page!
Checking tutorial at vbulletin.com: Quote:
Blank or 'White' Pages
Here are the known causes of blank or 'white' pages:
1. You did not upload the vB files correctly. Reupload the vB non-image files and make sure you upload these in ASCII format and that you overwrite the ones on the server. Make sure you upload the Admin CP files to the admincp directory specified in your config.php file.
2. You have extra space or lines in your config.php file. Make sure there is no whitespace or extra lines in config.php either before the <?php or after the ?>. [Note: Beginning with 3.6.3 the trailing ?> was removed.]
3. If this is happening on the forum home page only, then you may have an empty index.html or index.htm file in that directory. Delete it.
4. You have a bad plugin installed. To disable the plugin system, edit config.php and add this line right under <?php define('DISABLE_HOOKS', true);
5. The servername setting in config.php is wrong. Doublecheck this setting. 99% of the time, 'localhost' is correct: $config['MasterServer']['servername'] = 'localhost';
6. Your PHP has magic_quotes_sybase turned on. You have to turn this off. On *nix systems you can do this by creating an .htaccess file with this content and placing it in your main forum directory: php_flag magic_quotes_sybase 0
7. [For multiple white pages] You have added code to your header, headinclude or phpinclude templates that is no longer functional.
[For white pages in a select area] You have added code to one of your templates that is causing this problem.
8. You have a corrupted template. Repairing the template table may help: REPAIR TABLE template;
9. You have GZIP enabled. Try turning GZIP off here: Admin CP -> vBulletin Options -> Cookies and HTTP Header Options -> GZIP HTML Output -> No
Or by running these queries: UPDATE setting SET value = '0' WHERE varname = 'gzipoutput'; UPDATE datastore SET data=REPLACE(data,'s:10:"gzipoutput";i:1;','s:10:" gzipoutput";i:0;') WHERE title='options';
You can also add DEFINE('NOZIP', 1); to the top of login.php, or config.php, which should allow you to login.
Sometimes this problem is caused when your server is already using GZIP and by turning this on in vB you were double compressing. This causes problems with some pages but not others. It also happens to some people and not others.
10. Sometimes this can also be caused when PHP has the 'display_errors' function turned off. So instead of displaying the actual error so you can see what is wrong, you get a blank page. Look at your phpinfo page and if 'display_errors' is Off or '0', then add this line to your includes/config.php file right under <?php ini_set("display_errors", true);
11. Check your phpinfo page to see if suhosin is installed as a module. If it is, this could be the cause of this problem. To fix this, add or edit an .htaccess file in your root forum directory and add these lines to it: php_flag suhosin.cookie.encrypt Off
php_value suhosin.request.max_vars 2048
php_value suhosin.post.max_vars 2048 | Solution nr1 - i uploaded everything compressed in a .TAR file (binary)
Solution nr2 - no
Solution nr3 - no
Solution nr4 - tried, not working
Solution nr5 - checked, not working
Solution nr6 - tried, not working
Solution nr7 - maybe could be this, how can i edit/replace header, headinclude or phpinclude templates without having access to admincp?
Solution nr8 - can't access run query in admincp
Solution nr9 - can't access admincp to change
Solution nr10 - tried, not working
Solution nr11 - tried, not working
Can s omeone help me out solving this?
MySQL is 5.0.27-standard and PHP is 4.4.7, s o, that's not the Problem.
Thank you.
Last edited by xpgo; 08-12-2007 at 01:14 PM.
| |