Beste phpBB'ers,
Ik heb de cash-MOD geïnstalleerd, maar nu zijn verschillende pagina's op mijn forum leeg: memberlist, profile, prvmsg... Wat doe ik verkeerd?
Probleem met Cash-mod
Forumregels
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.

Heb je alle files goed upgeload naar de ftp (geen corrupte files)
Heb ej de Modificatie installatie tekst bestand al bekeken, en gekeken of alles correct is gemod.?
Alle bestanden die je hebt geupload ook correct gedaan.
Wat is je link naar je forum!
Heb ej de Modificatie installatie tekst bestand al bekeken, en gekeken of alles correct is gemod.?
Alle bestanden die je hebt geupload ook correct gedaan.
Wat is je link naar je forum!
Raimon - phpBB.com Styles Team Leader
phpBBservice.nl - Nederlands phpBB Support Forum || Nederlandse phpBB3 Downloads
phpBBservice.nl - Nederlands phpBB Support Forum || Nederlandse phpBB3 Downloads
Ja dat heb ik allemaal goed gedaan al meerdere keren geprobeerd maar ik weet nu wel in welke file de fout zit als ik deze mod doe dan hangt die dus hier zit de fout maar waar?
includes/functions.php mod is de boos doender
#
#-----[ OPEN ]------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx);
#
#-----[ AFTER, ADD ]------------------------------------------
#
if ( defined('IN_CASHMOD') )
{
if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.'.$phpEx)) )
{
include($phpbb_root_path . 'language/lang_english/lang_cash.' . $phpEx);
}
else
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.' . $phpEx);
}
}
includes/functions.php mod is de boos doender
#
#-----[ OPEN ]------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx);
#
#-----[ AFTER, ADD ]------------------------------------------
#
if ( defined('IN_CASHMOD') )
{
if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.'.$phpEx)) )
{
include($phpbb_root_path . 'language/lang_english/lang_cash.' . $phpEx);
}
else
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.' . $phpEx);
}
}
Het werkt
Oke dan ik wou al zeggen hoe kan dat nou ik heb het gevonden!
if ( defined('IN_CASHMOD') )
{
if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.'.$phpEx)) )
{
include($phpbb_root_path . 'language/lang_dutch/lang_cash.' . $phpEx);
}
else
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.' . $phpEx);
}
}
De dik gedrukte regel even aanpassen naar dutch en uit je language/lang_english even daaruit de lang_cash.php file naar je Dutch directory kopieeren
Met vriendelijke groet, HETRIC (DID'IT AGAIN!)
if ( defined('IN_CASHMOD') )
{
if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.'.$phpEx)) )
{
include($phpbb_root_path . 'language/lang_dutch/lang_cash.' . $phpEx);
}
else
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.' . $phpEx);
}
}
De dik gedrukte regel even aanpassen naar dutch en uit je language/lang_english even daaruit de lang_cash.php file naar je Dutch directory kopieeren
Met vriendelijke groet, HETRIC (DID'IT AGAIN!)