HTTP Server error 500 is usually caused by some issue in software on your site/server. There are plenty of reasons why this error could appear. To fix it we’ll need to know the error...
Open your /wp-config.php file and look for define(‘WP_DEBUG’, false); Change it to: define(‘WP_DEBUG’, true); Scroll down and add these lines, just before ‘stop editing here’: ini_set(‘log_errors’,TRUE); ini_set(‘error_reporting’, E_ALL); ini_set(‘error_log’, dirname(__FILE__) . ‘/error_log.txt’); This will create an...
The easiest way to check your server php info is to install the WordPress plugin. For example it could be WordPress phpinfo() plugin. Alternatively you can follow the instructions in the WordPress’ Knowledge Base – Finding Server...