Thank you for updates! However, ISSUE with mkportal still at game submission.
Quote:
$DB = new db_driver_ib;
Fatal error: Cannot instantiate non-existent class: db_driver_ib in /home/cpfools/public_html/forum/arcade.php on line 127
|
FYI, I received a different THIS db error at end of game submission
Quote:
Fatal error: Cannot redeclare class db_driver in /home/cpfools/public_html/mkportal/include/mk_mySQL.php on line 7
|
before making these changes:
Quote:
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 :
Code:
class db_driver {Replace:
Code:
class db_driver_ib {
|
I'll put the files back and wait for your suggestion Mr.Zeropage
https://vborg.vbsupport.ru/showpost....&postcount=546