vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Showing posts/member count on non-forum HTML page (https://vborg.vbsupport.ru/showthread.php?t=100932)

Marco van Herwaarden 12-04-2005 09:24 AM

Try changing to:
PHP Code:

<?php
chdir
('../forum');
include_once(
'./global.php');
global 
$vbulletin// Should not be needed
 
// get total members 
$numbersmembers=$vbulletin->db->query_first('SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user'); 
 
...
etcreplacing $db by $vbulletin->db


wii 12-04-2005 05:11 PM

Still the same result using this code:

PHP Code:


<?php
chdir
('../forum');
include_once(
'http://www.myforum.com/forum/global.php');

// get total members 
$numbersmembers=$vbulletin->db->query_first('SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user'); 
$numbermembers number_format($numbersmembers['users']); 
// get total posts 
$countposts=$vbulletin->db->query_first('SELECT COUNT(*) AS " . TABLE_PREFIX . "posts FROM post'); 
$totalposts number_format($countposts['posts']); 
//$countthreads=$vbulletin->db->query_first('SELECT COUNT(*) AS " . TABLE_PREFIX . "threads FROM thread'); 
//$totalthreads = number_format($countthreads['threads']); 

echo $numbermembers " forum members - " $totalposts  " posts";

?>

I would still even pay for a working code, so I can include these stats in my website (not forum).

Thanks

Quote:

Originally Posted by wii
Anyone? I would even pay a little (using paypal) to get this done !

Thanks


Marco van Herwaarden 12-04-2005 06:05 PM

replace:
PHP Code:

include_once('http://www.myforum.com/forum/global.php'); 

With:
PHP Code:

require_once('./global.php'); 

And with the above code, error message is the same? Even the linenumber?

wii 12-05-2005 05:40 AM

Now I get an SQL error:

Invalid SQL:
SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user;

Marco van Herwaarden 12-05-2005 05:57 AM

Please post your current script and the full error message.

wii 12-05-2005 07:20 AM

Ok, the script:

PHP Code:


<?php 
chdir
('../forum'); 
 require_once(
'./global.php');  

// get total members  
$numbersmembers=$vbulletin->db->query_first('SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user');  
$numbermembers number_format($numbersmembers['users']);  
// get total posts  
$countposts=$vbulletin->db->query_first('SELECT COUNT(*) AS " . TABLE_PREFIX . "posts FROM post');  
$totalposts number_format($countposts['posts']);  
//$countthreads=$vbulletin->db->query_first('SELECT COUNT(*) AS " . TABLE_PREFIX . "threads FROM thread');  
//$totalthreads = number_format($countthreads['threads']);  

echo $numbermembers " forum members - " $totalposts  " posts"

?>

The error - removed link (private forum)

PHP Code:


Database error in vBulletin 3.5.1
:

Invalid SQL:
SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user;

MySQL Error  You have an error in your SQL syntaxcheck the manual that corresponds to your MySQL server version for the right syntax to use near '" . TABLE_PREFIX . "user' at line 1
Error Number 
1064
Date         
MondayDecember 5th 2005 10:19:57 AM
Script       
http://www.myforum.com/beta/stats.php
Referrer     
IP Address   XX.XX.XX.XX
Username     
wii
Classname    
vB_Database 


Marco van Herwaarden 12-05-2005 08:40 AM

PHP Code:

$numbersmembers=$vbulletin->db->query_first('SELECT COUNT(*) AS users FROM " . TABLE_PREFIX . "user'); 

replace by:
PHP Code:

$numbersmembers=$vbulletin->db->query_first("SELECT COUNT(*) AS users FROM " TABLE_PREFIX "user"); 

Do the same for the other query (SDon't use single quotes there).

wii 12-07-2005 11:11 AM

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:


 
// get total threads & posts from the forumcache 
$totalthreads 0
$totalposts 0
if (
is_array($vbulletin->forumcache)) 

    foreach (
$vbulletin->forumcache AS $forum
    { 
        
$totalthreads += $forum['threadcount']; 
        
$totalposts += $forum['replycount']; 
    } 

$totalthreads vb_number_format($totalthreads); 
$totalposts vb_number_format($totalposts); 

// get total members and newest member from template 
$numbermembers vb_number_format($vbulletin->userstats['numbermembers']); 


Marco van Herwaarden 12-07-2005 11:26 AM

require_once is mostly the correct way.

wii 12-07-2005 04:27 PM

Thanks


All times are GMT. The time now is 05:57 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
  • Page Generation 0.01045 seconds
  • Memory Usage 1,770KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (9)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete