Unfortunately, Acyd Burn's Statistics MOD doesn't fully work with CyberAlien's eXtreme Styles MOD.
However, there's a simple fix.
Credit: partial credit goes to chadsmith from this post on phpBB.com.
1st, if you don't have a copy of the original includes/template.php, download a copy of phpBB and rename template.php to phpbb_template.php and upload it to your site.
2nd, follow these directions: (be sure to keep a backup all files just in case!)
- Code: Select all
#
#-----[ OPEN ]------------------------------------------
#
common.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'includes/template.'.$phpEx);
#
#-----[ REPLACE WITH ]------------------------------------------
#
if ($non_xs)
{
include($phpbb_root_path . 'includes/phpbb_template.'.$phpEx);
}
else
{
include($phpbb_root_path . 'includes/template.'.$phpEx);
}
#
#-----[ OPEN ]------------------------------------------
#
statistics.php
#
#-----[ FIND ]------------------------------------------
#
$phpbb_root_path = './';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$non_xs = 1;
#
#-----[ OPEN ]------------------------------------------
#
admin/admin_statistics.php
#
#-----[ FIND ]------------------------------------------
#
$phpbb_root_path = './';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$non_xs = 1;
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
#EoM
Now the Statistics MOD should be working.
Enjoy!



