MyBB Community Forums

Full Version: expCounter
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I have installed the expCounter. But unfortunately I do not know how I can paste it into MyBB.

it probably involves involve the following code:

search:

// The following assigns all _common_ variables that may be used at any point in a template.
$template->assign_vars(array(
'SITENAME'                        => $config['sitename'], 

and paste

//
// chCounter
//
ob_start();
include('/absoluter_pfad_zum_counter_vereichnis/counter.php');
$expCounter = ob_get_contents();
ob_end_clean();
// The following assigns all _common_ variables that may be used at any point in a template.
$template->assign_vars(array(
'SITENAME' => $config['sitename'],
'COUNTER' => $expCounter, 

this code is for phpbb3 and mybb?


Where do I insert the determined in the global.php. Can someone help because the original forum (chCounter), where a manual was offline.

Thx for help.
No, it's not for MyBB. Variables, functions, classes, etc. differ in both scripts. So you need to rewrite the code.