MyBB Community Forums

Full Version: Statistics on remote website
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys,

I'm trying to move my forum from IPB to MyBB, but I have some problems. I use the IPB SDK to connect my website with IPB, and now I'm trying the MyBB Integrator. So far so good, but I can't find a way do display statistics on my webpage, like total replies/total topics/total members/newest member id and name/most online count and date. Can anyone help me with some tips?
Thanks
I've managed to get the statistics from the database , BUT i cant find the most online users ever . Can anyone point me to the right direction please?
That's in the mostonline cache.
HAIL MattRogowski!

A simple var_dump to $cache and now I have everything I needed! Thanks a lot

LE: Can you tell me please where can I find the function that translates the date (Ex: 1265112794) to something human readable ?
It's a UNIX timestamp, so you can do this:

date("D jS M Y, H:i", 1265112794);

Would look something like: Wed 3rd Feb 2009, 19:46