Seems like something has gone wrong in version 0.9.15.
Try to temporarily add this to the bottom of /datas/config.php until it gets fixed.
PHP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$db_auth = $db_x . 'auth' ;
$db_cache = $db_x . 'cache' ;
$db_cache_bindings = $db_x . 'cache_bindings' ;
$db_core = $db_x . 'core' ;
$db_config = $db_x . 'config' ;
$db_groups = $db_x . 'groups' ;
$db_groups_users = $db_x . 'groups_users' ;
$db_logger = $db_x . 'logger' ;
$db_online = $db_x . 'online' ;
$db_extra_fields = $db_x . 'extra_fields' ;
$db_plugins = $db_x . 'plugins' ;
$db_structure = $db_x . 'structure' ;
$db_updates = $db_x . 'updates' ;
$db_users = $db_x . 'users' ;
|