When our support ask you to enable the debug mode on your website, you need to do the following:
- Edit/Open the file “wp-config.php” of your site. (The “wp-config.php” file is usually located in the root folder of your website with other folders like /wp-content/)
- Change the
WP_DEBUG
constant totrue
. See this this example:define('WP_DEBUG', true);
Note: The
true
andfalse
values in the example are not surrounded by apostrophes (‘) because they are boolean (true/false) values. If you set constants to'false'
, they will be interpreted as true because the quotes make it a string rather than a boolean. - Add the following code right after the
WP_DEBUG
constant:if ( WP_DEBUG ) { error_reporting( -1 ); @ini_set( 'log_errors', true ); @ini_set( 'log_errors_max_len', '0' ); @ini_set( 'display_errors', 1 ); define( 'WP_DEBUG_LOG', true ); define('WP_DEBUG_DISPLAY', true); define( 'CONCATENATE_SCRIPTS', false ); define( 'SAVEQUERIES', true ); define( 'SCRIPT_DEBUG', true ); }
- Enable the plugin debug mode #
- Install the plugin WP Log Viewer
In the same context
- Regenerate markers
- Enabling the plugin debug mode
- Disabling Stylesheets & Scripts
- Fix the issue of small featured images
- Fix the issue of infobox and carousel items content that is displayed as shortcodes
- Fix the issue where settings cannot be saved
- Issue: Setting 0 daily quota override disables Maps API on project