Category: Getting information and Debugging

Home Knowledge Base Getting information and Debugging
500 Server error

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...

How to get error_log in case when you’re not familiar with webhosting/webserver management?

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...

Get your server php info ( phpinfo() )

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...