Code: Alles auswählen
#
#-----[ 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);
}
das ist gleich der erste fehler den du hast
hast die letzte klammer ne zeile tiefer vergessen
Code: Alles auswählen
include($phpbb_root_path . 'includes/db.'.$phpEx);
if ( defined('IN_CASHMOD') )
{
include($phpbb_root_path . 'includes/functions_cash.'.$phpEx);
}//
// Obtain and encode users IP
so schauts bei dir aus
Code: Alles auswählen
include($phpbb_root_path . 'includes/db.'.$phpEx);
if ( defined('IN_CASHMOD') )
{
include($phpbb_root_path . 'includes/functions_cash.'.$phpEx);
}
//
// Obtain and encode users IP
so sollte das aussehen
----------------------------------
memberlist.php
Code: Alles auswählen
define('IN_PHPBB', true);
define('IN_CASHMOD', true);
define('CM_MEMBERLIST', true);$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
so schauts bei dir aus
Code: Alles auswählen
define('IN_PHPBB', true);
define('IN_CASHMOD', true);
define('CM_MEMBERLIST', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
so soll es aussehen
das waren erst 2 sachen die überprüft wurden und beide falsch eingebaut sprre mir das weitere prüffen
gehe einfach den install text nochmal durch
mfg