vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Displaying some stats on another site ? (https://vborg.vbsupport.ru/showthread.php?t=208247)

TimberFloorAu 03-13-2009 10:31 PM

Displaying some stats on another site ?
 
Hi.

We are working on a new website, and would like to display.

Members ( number of )
Threads ( number of )
Posts ( number of )

We would like to display the above on another site, is this possible. If so , how so please.

Example:

forum.com

has:
100 members
65 threads
138 posts

we want to display on:

website.com

forum.coms above stats: In a block, like:

Forum.com Stats:
100 members
65 threads
138 posts

Mr-Moo 03-14-2009 04:09 PM

Are these on the same server?

TimberFloorAu 03-14-2009 09:44 PM

No.

Mr-Moo 03-15-2009 02:12 PM

Your best bet would be to create a custom Vbulletin page with all the functions included. Then echo out these statistics. Once these statistics are echoed out, you can include that PHP page onto your desired PHPpage/forum.

On a more complicated side-note, you can use the CURL function to pull data off of an external website source.

First of all, you need to enable curl support for php. To do this, remove the comment (to enable curl operation) from php.ini file

To get a remote file executed, we need to pass http request from a php file. CURL is used for this purpose. Here is a simple example that you can try.

PHP Code:

<?php
$ch 
curl_init();
// set URL and other appropriate options
curl_setopt($chCURLOPT_URL, &#8220;http://www.YOURFORUM.com/FILE.php”);
curl_setopt($chCURLOPT_HEADER0);
$file_contents curl_exec($ch);
curl_close($ch);
// display file
//echo $file_contents;
echo &#8220;<pre>”;
print_r($file_contents);
?>

Let me know if this helps!


All times are GMT. The time now is 07:00 AM.

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.01059 seconds
  • Memory Usage 1,716KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete