• Hey Everyone,
    I just changed the theme on my blog and now the page is totally blank/white!!! I have tried to login to my dashboard to change it back, but, that page comes-up totally white/blank too!! I have tried to login to my dashboard from my host cPanel, but, the login page (when trying to login to WordPress) is white/blank too!!
    HELP!!
    THanks
    Lee

Viewing 10 replies - 1 through 10 (of 10 total)
  • can you provide the URL?

    Thread Starter leeberlemann

    (@leeberlemann)

    It seems PHP memory issue. Tell your host to raise a limit or you can try to raise it from wp-config.php. Add following line in the top of wp-config.php:

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

    Thread Starter leeberlemann

    (@leeberlemann)

    So, do I add it to the VERY top (before the <?php)? Below is how the file starts from the very top:

    <?php
    /**
    * The base configurations of the WordPress.
    *
    * This file has the following configurations: MySQL settings, Table Prefix,
    * Secret Keys, WordPress Language, and ABSPATH. You can find more information by
    * visiting {@link https://codex.www.ads-software.com/Editing_wp-config.php Editing
    * wp-config.php} Codex page. You can get the MySQL settings from your web host.
    *
    * This file is used by the wp-config.php creation script during the
    * installation. You don’t have to use the web site, you can just copy this file
    * to “wp-config.php” and fill in the values.
    *
    * @package WordPress
    */

    THanks
    Lee

    no, add it after php tag..

    also, there is one more way to do this. open your htaccess file and add this code at the very bottom,

    php_value memory_limit 64M

    Thread Starter leeberlemann

    (@leeberlemann)

    OK, here is how the wp-config.php file now looks:

    <?php
    define(‘WP_MEMORY_LIMIT’, ’64M’);

    /**
    * The base configurations of the WordPress.

    And here is how the htaccess file looks:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]
    </IfModule>
    php_value memory_limit 64M

    # END WordPress

    Is this correct? I still get a blank page…ugggg…
    Thanks
    Lee

    Yes, it is correct. It seems there is some problem with /blog folder because I tried to browse /blog/nothing.php as well as /blog/nothing.htm and both were displaying blank page instead of 404 page. Check the permissions of blog folder and in meantime also contact your host regarding this problem.

    Thread Starter leeberlemann

    (@leeberlemann)

    Thanks to everyone for all your help!! ??
    Lee

    i think it’s similar to my problem. i hv raised this issue also..:(
    still unresolved

    @wiku If you have already raised PHP memory but problem is not solved then it could be plugin problem. Disable plugins one by one via FTP and check if it resolves the issue. To disable plugins via FTP, download entire plugin directory in your local system and then delete plugin folders one by one.

    Kailash

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Changed Theme;now just have a blank page!! HELP!’ is closed to new replies.