Ik heb gisteravond de cash_mod geinstalleerd. Ik heb alles gedaan wat de beschrijving aangaf maar toch ben ik op een probleempje gestuit.
Als ik in de ACP klik op de cash admin dan krijg ik de volgende melding:
Code: Selecteer alles
Fatal error: Cannot instantiate non-existent class: cash_menucat in /guests/g/gss/public_html/admin/admin_cash.php on line 31
Fatal error: Cannot instantiate non-existent class: cash_menucat
Problem: This class is defined in functions_cash.php, which should be included via common.php (which is included into admin panels via pagestart.php, which most likely means functions_cash.php isn't being included in common.php (or properly)
Fix: Check your install instructions, Find the instructions for common.php and apply the edits properly
Dit aanpassen van de commom.php is 1 simpele handeling waarvan ik 100% zeker weet dat ik het goed heb gedaan.
Code: Selecteer alles
#
#-----[ OPEN ]------------------------------------------
#
common.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'includes/db.'.$phpEx);
#
#-----[ AFTER, ADD ]------------------------------------------
#
if ( defined('IN_CASHMOD') )
{
include($phpbb_root_path . 'includes/functions_cash.'.$phpEx);
}
Alvast bedankt
Deaken