• Rudixx

    (@rudixx)


    Hello!

    I will try to write this post as clear as I can.

    1. I’ve downloaded latest version of WordPress from: http://wordpress.org/download/

    2. I’ve created new mysql database and uploaded wordpress files on my ftp server (home.pl) using filezilla client.

    3. I’ve installed wordpress and everything was fine.

    4. I’ve tried to login to admin panel but while I was typing my password the screen went blank.

    5. I’ve refreshed the website and I’ve managed to login.

    6. White screen of death happens randomly but mostly when I am adding/editing pages/posts.

    This is clean wordpress installation on brand new database. I have tried to reinstall everything or to update it from older working version to the latest one but everytime white screen of death appears.

    What is the solution for this problem?

Viewing 1 replies (of 1 total)
  • Kye

    (@gmax21)

    Hey there.

    Can you check your servers error_log please, could be a memory issue even if it’s a new install.

    You could also try the WP_DEBUG constant. To output the WordPress debugging information you can open your wp-config.php file and change:

    define('WP_DEBUG', false);

    To:

    define('WP_DEBUG', true);

    You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:

    define('WP_DEBUG_LOG', true);

    Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:

    define('WP_DEBUG_DISPLAY', false);

    Let me know what you find.

Viewing 1 replies (of 1 total)

The topic ‘WordPress 3.9.1 fresh installation WSOD’ is closed to new replies.