Top Stats
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Top Stats Recent Active Topics Scroller not working
Same here it's now scrolling 3 rows.RMcGirr83 wrote:Seems to be working fine on my end.
Top Stats Recent Active Topics Scroller not working
Yep got it working finally.
This is what I did.
I uninstalled Top Stats, then reinstalled it. As I found out from you guys, when Top Stats is installed, it only adds the full file edits to prosilver but not prosilver se.
So, I then went to ACP/Top Stats/Details
and applied the prosilver edits to prosilver se. I then refreshed Templates and Themes, cleaned the cache (just in case) and it was then working.
So very happy with the breakthrough.
Thank you guys for your help and assistance.
I got to say that this forum is a gold mine of information and the mods on offer here are all that is needed for any forum.
This is what I did.
I uninstalled Top Stats, then reinstalled it. As I found out from you guys, when Top Stats is installed, it only adds the full file edits to prosilver but not prosilver se.
So, I then went to ACP/Top Stats/Details
and applied the prosilver edits to prosilver se. I then refreshed Templates and Themes, cleaned the cache (just in case) and it was then working.
So very happy with the breakthrough.
Thank you guys for your help and assistance.
I got to say that this forum is a gold mine of information and the mods on offer here are all that is needed for any forum.
Top Stats Recent Active Topics Scroller not working
Now remember this the next time you install a mod chances are it will install another jquery and that WILL break the top stats so what ever jquery is added by your new mod just remove it. 
There is more if your a donator
and on that note if you want more there is another site to join and become a donator click the name in the shoutbox 

There is more if your a donator


Top Stats Recent Active Topics Scroller not working
Oh great!martin123456 wrote:Now remember this the next time you install a mod chances are it will install another jquery and that WILL break the top stats so what ever jquery is added by your new mod just remove it.

I intend on installing a few more mods but only mods mods from this site.
Just want to sec the forum up and fix my portal up before my launch.
What are the best mods here in your opinion.

Top Stats
Hi,
I implement TopStats in my forum poljoforum.rs/statistika.php, i want to use it in separate page out of forum.
Code for file Statistika.php
and code for statistika_body.html
I can see 5 most recent active, but cant's see other boxes. They are turned on in ACP.
Thank's for help in any case.
I implement TopStats in my forum poljoforum.rs/statistika.php, i want to use it in separate page out of forum.
Code for file Statistika.php
Code: Select all
<?php
/**
*
* @package phpBB3
* @version $Id: page.php ~ Stilithius $
* @copyright (c) 2005 phpBB Group
*
*/
/**
* @ignore
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
page_header('Statistika foruma');
$template->set_filenames(array(
'body' => 'statistika_body.html')
);
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
Code: Select all
<!-- INCLUDE overall_header.html -->
<h2>Statistika foruma</h2>
<!-- IF S_TSRAT_ENABLE -->
<!-- INCLUDE recent_active_body.html -->
<!-- ENDIF -->
<!-- IF S_TSMVT_ENABLE or S_TSMRT_ENABLE or S_TSMAU_ENABLE or S_TSMAF_ENABLE or S_TSLVB_ENABLE or S_TSLRU_ENABLE -->
<!-- INCLUDE top_stats_body.html -->
<!-- ENDIF -->
<!-- INCLUDE jumpbox.html -->
<!-- INCLUDE overall_footer.html -->
Thank's for help in any case.
Top Stats
Have you tried this ? viewtopic.php?f=49&t=2209&start=10#p14238 place it in your files out of the forum and see what goes.
TopStats on external page
Hi,
I implement TopStats in my forum poljoforum.rs/statistika.php, i want to use it in separate page out of forum.
Code for file Statistika.php
and code for statistika_body.html
I can see 5 most recent active, but cant's see other boxes. They are turned on in ACP.
Also tried to copy (can't post URL) from other topic sugested by martin123456 in statistika.php before page footer, only change is i get 10 recenet posts and again no other boxes.
I implement TopStats in my forum poljoforum.rs/statistika.php, i want to use it in separate page out of forum.
Code for file Statistika.php
Code: Select all
<?php
/**
*
* @package phpBB3
* @version $Id: page.php ~ Stilithius $
* @copyright (c) 2005 phpBB Group
*
*/
/**
* @ignore
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
page_header('Statistika foruma');
$template->set_filenames(array(
'body' => 'statistika_body.html')
);
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
Code: Select all
<!-- INCLUDE overall_header.html -->
<h2>Statistika foruma</h2>
<!-- IF S_TSRAT_ENABLE -->
<!-- INCLUDE recent_active_body.html -->
<!-- ENDIF -->
<!-- IF S_TSMVT_ENABLE or S_TSMRT_ENABLE or S_TSMAU_ENABLE or S_TSMAF_ENABLE or S_TSLVB_ENABLE or S_TSLRU_ENABLE -->
<!-- INCLUDE top_stats_body.html -->
<!-- ENDIF -->
<!-- INCLUDE jumpbox.html -->
<!-- INCLUDE overall_footer.html -->
Also tried to copy (can't post URL) from other topic sugested by martin123456 in statistika.php before page footer, only change is i get 10 recenet posts and again no other boxes.