How do I activate debug mode on my wordpress website?
In order to place a Wordpress site in debug mode add the following 2 lines to the config file of your Wordpress site. The config file can be edited from both the Control HQ and the Hub using the file editor.
define('WP_DISABLE_FATAL_ERROR_HANDLER', true);
define('WP_DEBUG', true);
Updated on: 27/02/2024
Thank you!