Debugging and Error Reporting
If your WordPress installation isn’t running correctly and you suspect there may be a coding or server configuration error, you can turn on error reporting by adding the following code to your wp-config.php file.
define('WP_DEBUG',true);
ini_set('display_errors','on');To prevent sensitive information from being displayed, be sure to comment out or remove the code once debugging is completed.

