Reputation: 13
I'm running a WordPress website with a custom template that is showing me a blank screen when I have not viewed the site in a few days. I've cleared the browser cache and I've empited all cache using w3 total cache. Once I cleared the cache,I typed in the URL each time, and it loaded the website perfectly. I did not copy and paste the URL. The URL combinations are listed below;
I've also provided a list of plugins that are currently installed on the website.
Just wondering if there may be a plugin conflict or maybe a conflict between a plugin and wpml 2.3.4? I've got no issues disabling and re-enabling the plugins one by one, but if I cannot replicate the blank screen issue 100% of the time, disabling/enabling plugins will not be of any use.
I'm also running other websites on my server none of which are showing me this problem. The server I'm running is Ubuntu 10.04 with Apache and MySQL.
Any ideas on what might be causing this issue will be very much apppreciated.
Upvotes: 0
Views: 4132
Reputation: 388
Just in case anyone ever runs into this problem with W3 Total Cache, I found a fix for the random blank-page issue: just turn off ALL of the "Debug Options" under General Settings.
That fixed it for me after spending countless hours searching for the issue. Good luck!
Upvotes: 0
Reputation: 13
Thank you for all of your suggestions. I somehow managed to repeat the blank screen with no information, which then allowed me to slowly disable and enable the plugins. Found out it had to do with the updating of WPML CMS Nav, WPML String Translation and WMPL Multilingual CMS. Once I updated them, the site worked fine, without the blank screen with no code.
Upvotes: 0
Reputation: 1492
Add this to your wp-config.php file:
@ini_set('log_errors','On');
@ini_set('display_errors','Off');
@ini_set('error_log','/home/example.com/logs/php_error.log');
Right after the following line:
/* That's all, stop editing! Happy blogging. */
Then you can check on the log after the white screen appears, and know for sure what happened.
Upvotes: 1
Reputation: 1479
by FTP - temporarly rename your plugin folder to something else (like plugin_new) AND your theme folder and css file (like mytheme.css.old) . that will revert to to the default theme and will disable all plugins . if you do not have default theme - install it. If nothing terribly serious has happened (like some code hack) - It will give you access to the admin area to start troubleshooting.
Upvotes: 1