XF 2.2 Cannot disable debug-mode in dev system

mcatze

Well-known member
Hi guys,

i have a copy of my Community as Testsystem. During styling i recognized that the debug footer row is shown, so i take a look at my config.php and don't find the debug enabled.

Also set
PHP:
$config['debug'] = false;
changed anything.

This is the actually config.php
PHP:
<?php

$config['db']['host'] = 'localhost';
$config['db']['port'] = '3306';
$config['db']['username'] = 'xxxxx';
$config['db']['password'] = 'xxxxx';
$config['db']['dbname'] = 'xxxxx';

$config['enableAddOnArchiveInstaller'] = true;
$config['fullUnicode'] = true;
$config['removeThemeHouseBranding'] = true;

$config['superAdmins'] = '1';
 
Top Bottom