vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Ventrilo Status v1.0 (https://vborg.vbsupport.ru/showthread.php?t=113432)

Oreo 09-29-2009 11:15 AM

Found the issues this morning. Needed more COFFEE!

krazr 02-25-2010 03:38 AM

Guys can this and does this work on version 4??? I've got the newest 4.0.2 patch 1 running on my site and I'd love to get this going. Any confirmations or projects to make ventrilo intregrate into version 4.x like this mod does with version 3.x???

JaromL 03-19-2010 03:26 PM

Im also running 4.02. Im wondering if this would work as is. If not is there any chance for a 4.x version in the future?

Silver Tiger 05-04-2010 06:54 PM

Is there anyone that can help me install this?

I have tried to do this in numerous ways, still nothing works for 2 hours.

My Ventrilo host is powervs

Enter the absolute location of the ventrilo_status file.
(ie. /home/bob/www/forum/ventrilo_status)

for me would it be

/home/freedmga/www/forum/ventrilo_status

(what is the "www" for? and and I assume I subsitute "www" with my login name for ftp???

Also I have downloaded the ventrilo_status.php its in the index of my forum, yet still wont work (after manually adding the I.P to the server + port)

Any step by step instructions anyone/:erm:

EndResult 06-13-2010 01:40 AM

Add me to the list of people who would like to see this on version 4...

KozmoK 07-18-2010 01:26 AM

I wanted a simple forum block for version 4.04 so I hacked one together from this authors work.. This is simple, shows users and admins in bold.

for example look at my site: http://www.rentacheat.com/forums

Go into Forums and Moderator, Forum Blocks Manager -> add lock, Custom HTML/PHP

upload the authors 2 classes, I didnt use his product import, and hard coded my settings directly in the php.

Code:


include "/home/rent/public_html/forums/includes/functions_ventrilostatus.php";
include "/home/rent/public_html/forums/includes/class_ventrilostatus.php";

$stat = new CVentriloStatus;
$stat->m_cmdprog = "/home/kozmok/ventsrv/ventrilo_status";
$stat->m_cmdcode = "2";
$stat->m_cmdhost = "72.167.147.104";
$stat->m_cmdport = "3784";
$stat->m_cmdpass = "";

$rc = $stat->Request();

if ( $rc )
{
        $my_output =  "CVentriloStatus->Request() failed. <strong>$stat->m_error</strong><br><br>\n";
} else

{

$my_output = "<br>Server: www.kozmok.com port 3784<br>";
$my_output .= "Users on Vent: " . count( $stat->m_clientlist ) . "<br><br>";

 for ( $i = 0; $i < count( $stat->m_clientlist ); $i++ )
{
        $client = $stat->m_clientlist[ $i ];
        if($client->m_admin == 1)
        {
              $my_output .=  "<b>" . htmlspecialchars($client->m_name) . "</b>";
        }
        else
        {
              $my_output .=  htmlspecialchars($client->m_name);
        }

        if (count( $stat->m_clientlist ) > 1)
        {
            $my_output .= ", ";
        }
 
 }
}

return $my_output;



All times are GMT. The time now is 08:08 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.01081 seconds
  • Memory Usage 1,729KB
  • 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_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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