Im not sure if it's been posted yet but a workaround to the db_driver errors in mkportal you will need to find an replace
db_driver with
db_driver_ib in all the arcade files.
There is 6 occurences in total Here's a list of changes
In
arcade.php
Find :
Code:
$DB = new db_driver;
Replace:
Code:
$DB = new db_driver_ib;
In
admincp/arcade.php
Find :
Code:
$DB = new db_driver;
Replace:
Code:
$DB = new db_driver_ib;
In
functions/dbclass.php
Find :
Replace:
Code:
class db_driver_ib {
Now if you have 3.0.x You will need to do these changes aswell
In
installer_xx.php either en or de depending on your language
Find :
Code:
$DB = new db_driver;
Replace:
Code:
$DB = new db_driver_ib;
]
In
uninstaller.php Probably not needed as there will be no need to remove this wonderful hack
Find :
Code:
$DB = new db_driver;
Replace:
Code:
$DB = new db_driver_ib;