On two other forums, I just added this to the end of the config.php file:
and that would unlock debug mode.
I'm trying to do that on a third forum (new install) now but that isn't working.
Version is 2.0.12.
Here's the config.php file (with sensitive info blocked out of course):
Why isn't this working?
Code:
// need debug = true for editing some cron jobs and some other features
$config['debug'] = true;
and that would unlock debug mode.
I'm trying to do that on a third forum (new install) now but that isn't working.
Version is 2.0.12.
Here's the config.php file (with sensitive info blocked out of course):
Code:
<?php
$config['db']['host'] = 'localhost';
$config['db']['port'] = '3306';
$config['db']['username'] = 'xxxxxxxxxxx';
$config['db']['password'] = 'xxxxxxxxxxx';
$config['db']['dbname'] = 'xxxxxxxxxx';
$config['superAdmins'] = '1';
// need debug = true for editing some cron jobs and some other features
$config['debug'] = true;
Why isn't this working?