• Hi ,

    I shifted my wordpress blog site from one hosting provider to another one.

    Everything is working fine , but Blog section shows blank screen .

    By blogs i mean , any blogs , either I create new or use existing one.

    Bad thing is that I don’t see any error log generated by php , nor does any error shows up on screen ( it’s just famous blank screen ) .

    Is there a way to diagnose , what exactly is causing this ? How can this be removed ? Which template files are associated with blogs in particular , so that I can focus on those maybe ?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter virtology

    (@virtology)

    any one ?

    Hi,

    My problem was a blank white screen for both admin and the site. The solution was to remove and replace plugins one by one via FTP until I isolated the offending plugin, which turned out to be a twitter module (02tweet).

    I can’t say what happened to make the plugin corrupt (or whatever), but trashing the damn thing solved the problem.

    There can be one of the following reason behind blank screen:

    [1] Your blog exceeds allocated PHP memory limit. You can raise the limit using one of the following ways:

    [1.1] You can contact your host to raise limit for php_memory.
    [1.2] You can add following line in your .htaccess:

    php_value memory_limit 64M

    This will not work if suPHP is enabled on your server. If suPHP is enabled on your server then you will need to put php.ini in the root of your domain and modify the following line:

    memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
    [1.3] You can also raise PHP memory from wp-config.php file. Just add the following line after

    define(’WP_MEMORY_LIMIT’, ‘64M’);

    [2] The another cause for this issue is plugins. Take a backup of your plugin directory and then delete the plugin folders one by one via FTP.

    Kailash

    The same thing happened to me and I noticed that I had an index.php file and an index.html file. I renamed the index.html (to dindex.html)and the site was fixed. hope this helps someone.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Site shifting and blank screen issue’ is closed to new replies.