There are a few hosts that do not give you an easy ability to see php errors that might happen. The first step is to edit your wp-config.php in your installation root directory. Add these lines: ini_set( ‘display_errors’, 0 ); ini_set( ‘log_errors’, 1 ); ini_set( ‘error_log’, WP_CONTENT_DIR . ‘/debug.log’ ); Although the use of WP_CONTENT_DIR [...]