Topic: Statistics for the forum?

I wonder how i can get a page with statistics on my forum?
Like which users have done most topics, most active topics, the size of the database and so on...

Someone have made such a "mod"?

2

Re: Statistics for the forum?

why is this in mod releases?
anyway, check external.php, it doesnt have all the stuff you are requesting but atleast some smile

Re: Statistics for the forum?

Oh, I didnt know. But how do i add things for it? Collect things from the database and adds it? My skills are bad with MySQL wink

Re: Statistics for the forum?

roll

5

Re: Statistics for the forum?

sorry.. it was called exten.php, anyway it says howto in the file

Here are some examples using PHP include().

    Show the 15 most recently active topics from all forums:
    include('http://host.com/forums/extern.php?action=active');

    Show the 10 newest topics from forum with ID=5:
    include('http://host.com/forums/extern.php?action=new&show=10&fid=5');

    Show users online:
    include('http://host.com/forums/extern.php?action=online');

    Show board statistics:
    include('http://host.com/forums/extern.php?action=stats');