What does this add-on do?
This add-on, when enabled, disables debug mode for all users.
This means that you can set up in your config.php file any rules you like for who can have debug mode enabled. For example:
PHP:
if ($_SERVER['REMOTE_ADDR'] == '192.168.0.1') {
$config['debug'] = true;
}
You can then have this add-on enabled to disable debug mode except for when you need it. This might be useful to make sure that you don't accidentally overwrite a master template, delete a code event listener, or otherwise completely destroy your site.
Optionally, this add-on can be set to disable debug mode on public front-end pages or Admin Control Panel pages only.
This add-on, when enabled, disables debug mode for all users.
This means that you can set up in your config.php file any rules you like for who can have debug mode enabled. For example:
PHP:
if ($_SERVER['REMOTE_ADDR'] == '192.168.0.1') {
$config['debug'] = true;
}
You can then have this add-on enabled to disable debug mode except for when you need it. This might be useful to make sure that you don't accidentally overwrite a master template, delete a code event listener, or otherwise completely destroy your site.
Optionally, this add-on can be set to disable debug mode on public front-end pages or Admin Control Panel pages only.