im trying to use the IPBNUKE mod to set up nuke with Ipb instead of phpbb and the nuke part is working but when i try and use the IPb forum it gives me this message:
Fatal error: Cannot instantiate non-existent class: db_driver in /home/wintweak/public_html/test/forums/index.php on line 149
what am i doing wrong?
if i open index.php and find the part about db_driver :
$INFO['sql_driver'] = ! $INFO['sql_driver'] ? 'mysql' : strtolower($INFO['sql_driver']);
require ( KERNEL_PATH.'class_db_'.$INFO['sql_driver'].".php" );
$DB = new db_driver;
$DB->obj['sql_database'] = $INFO['sql_database'];
$DB->obj['sql_user'] = $INFO['sql_user'];
$DB->obj['sql_pass'] = $INFO['sql_pass'];
$DB->obj['sql_host'] = $INFO['sql_host'];
$DB->obj['sql_tbl_prefix'] = $INFO['sql_tbl_prefix'];
$DB->obj['query_cache_file'] = ROOT_PATH.'sources/sql/'.$INFO['sql_driver'].'_queries.php';
$DB->obj['use_shutdown'] = USE_SHUTDOWN;
what do i need to change in there?
thanks