user544079
user544079

Reputation: 16629

getting error messages in wordpress white screen of death

I am getting the wordpress white screen of death.

I want to display error messages. I tried define('WP_DEBUG', true) However it does not display any error messages.

Is there a work around?

Upvotes: 1

Views: 343

Answers (2)

Nikunj Kathrotiya
Nikunj Kathrotiya

Reputation: 963

put in ob_start(); in wp-config.php on top

Upvotes: 1

user544079
user544079

Reputation: 16629

The general approach that fixed it.

  1. Rename your wp-content
  2. Activate/ Decactivate your plugins
  3. Change your themes
  4. adding define('WP_DEBUG', true) in the wp-config.php
  5. Check the php files. In my case the php files were missing code!

Upvotes: 0

Related Questions