![]() |
Showing posts/member count on non-forum HTML page
Showing posts and member count on non-forum HTML page.
Like this: 12116 forum members - 1104618 posts |
Anyone? I would even pay a little (using paypal) to get this done !
Thanks |
PHP Code:
|
Thanks a lot, which file do I need to include in my non-forum page to get this data ?
|
include your forums' global.php
|
Thanks a lot...
I canĀ“t seem to get it right - in my HTML page I added a little include, like this: <?php include("stats.php"); ?> In the stats.php file I have this: <?php include_once('../forum/global.php'); // get total members $numbersmembers=$db->query_first('SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user'); $numbermembers = number_format($numbersmembers['users']); // get total posts $countposts=$db->query_first('SELECT COUNT(*) AS " . TABLE_PREFIX . "posts FROM post'); $totalposts = number_format($countposts['posts']); //$countthreads=$db->query_first('SELECT COUNT(*) AS " . TABLE_PREFIX . "threads FROM thread'); //$totalthreads = number_format($countthreads['threads']); echo $numbermembers . " forum members - " . $totalposts . " posts"; ?> What is wrong? Thanks |
what happens when you run the stats.php?
|
Fatal error: Call to a member function query_first() on a non-object in D:\home\mysite\stats.php on line 5
|
Use $vbulletin->db->query_first instead of $db->query_first
|
Same result:
Fatal error: Call to a member function query_first() on a non-object in D:\home\mysite\stats.php on line 5 |
Try changing to:
PHP Code:
|
Still the same result using this code:
PHP Code:
Thanks Quote:
|
replace:
PHP Code:
PHP Code:
|
Now I get an SQL error:
Invalid SQL: SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user; |
Please post your current script and the full error message.
|
Ok, the script:
PHP Code:
PHP Code:
|
PHP Code:
PHP Code:
|
Ok, I got the include to work on the page, but which include is best to use for this?
include() require() include_once() require_once() I?m using require currently. But the post count is between 10-13 more than on the forum (seems to change once in a while), anyway to fix this? Is it possible to modify the script, so it uses the same as index.php to count the posts? PHP Code:
|
require_once is mostly the correct way.
|
Thanks
|
Thanks for this, i converted like 10 hacks i had from older versions. =)
|
All times are GMT. The time now is 05:51 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|