vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Forum Home Enhancements - Shoutcast Status 3 (VB4) (https://vborg.vbsupport.ru/showthread.php?t=238209)

Gold Phan7om 07-17-2010 07:51 AM

Quote:

Originally Posted by Magz (Post 2070360)
working fine on 4.05 here.


On mine it installs fine just doesnt pick up shoutcast server.

Magz 07-17-2010 10:24 AM

I simply had to get my server host to open up tcp port that my shoutcast is using

Gold Phan7om 07-17-2010 11:49 AM

Quote:

Originally Posted by Magz (Post 2070561)
I simply had to get my server host to open up tcp port that my shoutcast is using

I found out the server has no firewall blocking it.

Gold Phan7om 07-23-2010 05:09 PM

I really need the developer to update it to 4.0.5

Blooded 07-24-2010 02:04 AM

Works fine in localhost but when i add it to my forum its doesnt work and i got internal server error :(

What should i do? :s

BTW is 4.0.5 forum version

RedDevil 07-24-2010 04:25 AM

Quote:

Originally Posted by Blooded (Post 2073673)
Works fine in localhost but when i add it to my forum its doesnt work and i got internal server error :(

What should i do? :s

BTW is 4.0.5 forum version


Did you chmod the scast_home.xml on server? to 777, im on 4.0.5 works 100%

Blooded 07-24-2010 05:45 PM

Yes i put the file chmod 777 but i think my host is blockin it

Gold Phan7om 07-28-2010 07:51 AM

Its annoying now. I have no firewall blocking the ports and the addon doesnt pick it up when streaming!

TeknoSounds 09-17-2010 07:00 AM

Quote:

Originally Posted by cyberlooser (Post 2046394)
there is no option for the VGA Block :(
can't find the option 2 select where i want 2 located this Modul.

so i modified your scast.php file a little bit.
in this way it is posible to install as a Modules.

here is the code:

this code should be cleaned up...i'll do this later. while some variables doesn't in use but i forgotten which one was it :D

PHP Code:


<?php
/* -----------------05/28/2010-----------------
This is a Nice hack to add Shoutcast  VBA block Modules on your VB4 Forum Home.
Hope it helps !!!

Original by Zachariah

modified by cyberlooser/h?r


HowTo Install

Install first the Shoutcast Status 3 (VB4) !

1. save this PHP file with this code  as radio.php in your ../forum / modules folder :

2.Create a new PHP module with the following values:
Module Title = "Radio" 
File To Include = radio.php
Identifier = radio


playlist link is implemented 
the playlist link for the players like QT / RP and MediaPlayer need to be reaktivated in this Module


=======================================================
Tested On:

vBulletin 4.0
SHOUTcast Server v1.9.5

=======================================================
*/




$scgroups explode(','$vbulletin->options['scgrp_full']);

//if (is_member_of($vbulletin->userinfo, $scgroups) OR $scgroups[0] == 0) {
//  #####   VBOPTION SETTINGS
  
$scdef $vbulletin->options['scname_full'];
  
$scip $vbulletin->options['scip_full'];
  
$scport $vbulletin->options['scport_full'];
  
$scpass $vbulletin->options['scpass_full'];
  
$file $vbulletin->options['scxml_full'];
  
$cache_tolerance $vbulletin->options['scupdate_full'];
  
$placecast $vbulletin->options['scplace_full'];
  
$scoff $vbulletin->options['scoff_full'];
//  #####   VBOPTION SETTINGS END

$pfad './images/misc/';

// Check if Cache File needs updated or not
  
if (!is_writable($file)) {
    @ 
chmod($folderstring0777);
  }
// Check if Cache needs an update
  
if (file_exists($file)) {
    
clearstatcache();
// filemtime info gets cached so we must ensure that the cache is empty
    
$time_difference time() - filemtime($file);
// echo "$file was last modified: " . date ("F d Y H:i:s.", filemtime($file)) . "( " . $time_difference . " seconds ago) <br>" . "The cache is set to update every " . $cache_tolerance . " seconds.<br>";
  
}
  else {
    
$time_difference $cache_tolerance;
// force update
  
}

// Parses shoutcasts xml to make an effective stats thing for any website
  
$scfp = @ fsockopen($scip$scport$errno$errstr2);


// If server is off line
  
if (!$scfp) {
    if (
$scoff == 1) {

    
echo
"
<html>

<head>
<title>
$scdef</title>
</head>

<body >
 
 <table width=100%>
        <tr>
        <td>
        <img border=0 src=
$pfad/shoutcast_off.gif alt=''> 
        <br><b>
$scdef ist derzeit leider</b></br>
        <img src= 
$pfad/offline.gif />
        </td>
<tr><td colspan=2>Sorry, but at moment the radio is offline. </td></tr>
  </tr>
</table>
</body>
</html>
 "
;
    }
  }
  else {
  
    
// ############ Shoutcast server is online #######################
    
    
if ($time_difference >= $cache_tolerance) {
// update the cache if need be
// Get XML feed from server
      
if ($scsuccs != 1) {
        if (
$scpass) {
          
fputs($scfp"GET /admin.cgi?pass=$scpass&mode=viewxml HTTP/1.0\r\nUser-Agent: SHOUTcast Song Status (Mozilla Compatible)\r\n\r\n");
        }
        else {
          
fputs($scfp"GET /7.html HTTP/1.0\r\nUser-Agent: XML Getter (Mozilla Compatible)\r\n\r\n");
        }
        while (!
feof($scfp)) {
          
$xmlfeed .= fgets($scfp8192);
        }
        
fclose($scfp);
      }
// Output to cache file
      
$tmpfile fopen($file"w+");
      
$fp fwrite($tmpfile$xmlfeed);
      
fclose($tmpfile);
      
flush();
// Outputs the cached file after new data
      
$xmlcache fopen($file"r");
      
$page '';
      if (
$xmlcache) {
        while (!
feof($xmlcache)) {
          
$page .= fread($xmlcache8192);
        }
        
fclose($xmlcache);
      }
    }
    else {
// outputs the cached file
      
$xmlcache fopen($file"r");
      
$page '';
      if (
$xmlcache) {
        while (!
feof($xmlcache)) {
          
$page .= fread($xmlcache8192);
        }
        
fclose($xmlcache);
      }
    }
  }
  if (
$scpass) {
    
// ######### There is a Admin password ###############
    
//define  xml elements
    
$loop = array("AVERAGETIME""CURRENTLISTENERS""PEAKLISTENERS""MAXLISTENERS""SERVERGENRE""SERVERURL""SERVERTITLE""SONGTITLE""SONGURL""WEBHITS""STREAMHITS""LISTEN""STREAMSTATUS""BITRATE""CONTENT");
    
$y 0;
    while (
$loop[$y] != '') {
      
$pageed ereg_replace(".*<$loop[$y]>"""$page);
      
$scphp strtolower($loop[$y]);
      $
$scphp ereg_replace("</$loop[$y]>.*"""$pageed);
      if (
$loop[$y] == SERVERGENRE || $loop[$y] == SERVERTITLE || $loop[$y] == SONGTITLE || $loop[$y] == SERVERTITLE)
        $
$scphp urldecode($$scphp);
      ;
      
$y++;
    }
//get song info and history
    
$pageed ereg_replace(".*<SONGHISTORY>"""$page);
    
$pageed ereg_replace("<SONGHISTORY>.*"""$pageed);
    
$songatime explode("<SONG>"$pageed);
    
$r 1;
    while (
$songatime[$r] != "") {
      
$t $r 1;
      
$playedat[$t] = ereg_replace(".*<PLAYEDAT>"""$songatime[$r]);
      
$playedat[$t] = ereg_replace("</PLAYEDAT>.*"""$playedat[$t]);
      
$song[$t] = ereg_replace(".*<TITLE>"""$songatime[$r]);
      
$song[$t] = ereg_replace("</TITLE>.*"""$song[$t]);
      
$song[$t] = urldecode($song[$t]);
      
$dj[$t] = ereg_replace(".*<SERVERTITLE>"""$page);
      
$dj[$t] = ereg_replace("</SERVERTITLE>.*"""$pageed);
      
$r++;
    }
    
$averagemin "";
    
$hours intval(intval($averagetime) / 3600);
    
$averagemin .= ($padHours) ? str_pad($hours2"0"STR_PAD_LEFT) : $hours 'h&nbsp;';
    
$minutes intval(($averagetime 60) % 60);
    
$averagemin .= str_pad($minutes2"0"STR_PAD_LEFT) . 'm&nbsp;';
    
$seconds intval($averagetime 60) . 's';
    
$averagemin .= str_pad($seconds2"0"STR_PAD_LEFT);
  }
  else {
    
// ######### There is no Admin password ###############
//define all the variables to get (delte any ones you don't want)
    
$page ereg_replace(".*<body>"""$page);
//extract data
    
$page ereg_replace("</body>.*"","$page);
//extract data
    
$numbers explode(","$page);
//extract data
    
$currentlisteners $numbers[0];
    
$streamstatus $numbers[1];
    
$peaklisteners $numbers[2];
    
$maxlisteners $numbers[3];
    
$currentlisteners $numbers[4];
    
$bitrate $numbers[5];
    
$song[0] = $numbers[6];
  }

  
// ######### Create links and media player pages ########
  // ######################################################
  
$listenamp 'http://' $scip ':' $scport '/listen.pls';
  
$listenlnk 'http://' $scip ':' $scport '/listen.pls';

// Player template requests

  
// Server is online display stats
  
if ($scfp) {
    if (
$streamstatus == "1") {
    
      echo 
"

<html>

<head>
<title>
$scdef</title>
</head>

<body>
  <table width=100%>
   <tr>    
    <td><img src=
$pfad/radio.gif align=middle></td>
   
   </tr>
   <tr>
     <td>
     <a href=
$listenamp><b>$scdef <br>
     Server is </b></a>
     <a href=
$listenamp></a>
     </td>
   </tr>
   
   <tr>
    <td colspan=2 ><marquee width=98% scrolldelay=100 scrollamount=5>
     <img src=
$pfad/radio.gif align=middle> <b>$song[0] @ $scdef</b> <img src=$pfad/im_genre.gif align=middle></marquee><br></td>
     </tr>
     <tr>
     <td><marquee width=98% scrolldelay=100 scrollamount=5><b>DJ: 
$servertitle </b> </marquee></td>
     </tr>
    <tr> 
    <td><marquee width=98% scrolldelay=100 scrollamount=5>
      <b>Current Listeners 
$currentlisteners / $maxlisteners </b>
    <b>Bitrate @ 
$bitrate kbps </b> </marquee> </td>
  </tr>
 
</table> 
<table width=100%>
  <tr>
    <td><center><a href=
$listenamp><img src=$pfad/im_qt.gif align=middle> </a></center></td>
    <td><center><a href=
$listenamp><img src=$pfad/im_real.gif align=middle> </a></center></td>
    <td><center><a href=
$listenamp><img src=$pfad/im_winamp.gif align=middle> </a> </center> </td>
    <td><center><a href=
$listenamp><img src=$pfad/im_winmp.gif align=middle> </a></center></td>
  </tr>
</table>
 
</body>
</html>"
;

  }
      
//if ($scoff == 1) 
      
else
      {        
         echo
"
<html>

<head>
<title>
$scdef</title>
</head>

<body >
 
 <table width=100%>
        <tr>
        <td>
        <img border=0 src=
$pfad/shoutcast_off.gif alt=''> 
        <br><b>
$scdef ist derzeit leider</b></br>
        <img src= 
$pfad/offline.gif />
        </td>
<tr><td colspan=2>Sorry, but at moment the radio is offline</td></tr>
  </tr>
</table>
</body>
</html>"
;
      }
    
  }
  
  
  
//}
?>



feel free in use and modify how u like...

Thanks! :D

So using a combination of yours and Zachariah's code I pieced together a vba module :) won't release the code tho since its both of ya'll's, as well as it needs to be cleaned up and properly setup. See site link in sig.

Waiting on an update for this mod tho and hoping an official vba module is released!

cavebox 10-12-2010 09:06 AM

Hi all,

Is there a possibility to place this in the navbar template?
I'd like to show up on every page under the navbar?

thanks in advance

RedDevil 10-21-2010 02:07 PM

seems there is an issue with VB4.0.8 not displaying correctly now, was fine before upgrade.

10 Gauge 10-27-2010 10:50 PM

Quote:

Originally Posted by Red-Devil (Post 2112380)
seems there is an issue with VB4.0.8 not displaying correctly now, was fine before upgrade.

+1 needs to be updated

TeknoSounds 10-28-2010 01:34 AM

Sadly Zachariah hasn't responded to this thread since like July :-/ really sucks too, love this mod.

Antonio Pereira 10-28-2010 07:13 AM

No one can do a fix for this?

I love this mod to.

Best Regards

daveb47 10-28-2010 07:43 PM

Works fine with 4.08..

http://bikesntrikes.com

TeknoSounds 10-29-2010 01:25 AM

Not really, the layout got all broken...used to look much nicer.

Even though my SC server is down right now, you can see the difference:
Old:
http://teknosounds.com/messageboard/forum.php

New:
http://dev.teknosounds.com/messageboard/forum.php

Antonio Pereira 10-29-2010 05:22 AM

Quote:

Originally Posted by Myster Dude (Post 2115382)
Works fine with 4.08..

http://bikesntrikes.com

look at design is broken, in your page to.
The table dont have head and right side.

Best Regards

RedDevil 10-30-2010 04:04 PM

Quote:

Originally Posted by TeknoSounds (Post 2115075)
Sadly Zachariah hasn't responded to this thread since like July :-/ really sucks too, love this mod.


He has been online a few days ago, hopefully he is working on the problem :)

voidmind 11-09-2010 11:01 PM

Is there any way we can get help from another developer? I really need to get the current shoutcast status in my navbar. I just need to figure out how to use the variable for the current song on the rest of the forum.

I really do appreciate all your work on this project Zach, I'm sure you've just been busy in real life.

BiZiMDiYaR 11-18-2010 11:31 PM

Layout is not good after upgrade.. hope he can have a look at this.
Should be not that big of a problem :).

Thanks.

elkomander 12-31-2010 04:22 AM

its not working for me on 4.1.0p2
i keep gettin "disconnect"

doctorsexy 05-07-2011 01:18 PM

Anyone got this working with 4.1.3 yet...

ellinofatsa 05-07-2011 02:00 PM

I have 4.1.3 i use free Listen2mymusic.com and i have ip and port bud only offline any help?

lolly01 05-08-2011 07:46 PM

Nice Plugin but why can i not use MediaPlayer or Quicktime?

They says i need a Plugin but what is this for an Plugin?

Only WinAmp works good

Edit: Ohhh OK. The MediaPlayer Plugin for Firefox :)

TeknoSounds 05-10-2011 04:01 AM

This mod is sorely out of date, still.

RedDevil 05-10-2011 11:58 AM

Quote:

Originally Posted by ellinofatsa (Post 2192999)
I have 4.1.3 i use free Listen2mymusic.com and i have ip and port bud only offline any help?


your host may be blocking the port you need.

sentono 05-11-2011 11:53 AM

is there a way to have this shoutcast mod shows in the cms ??

doctorsexy 05-23-2011 10:36 AM

Is there anyone thats got this to work with 4.1.3 ..

doctorsexy 05-27-2011 03:03 PM

Tryed it every way to get it to work...no go..real shame

anyone willing to give it a go

ellinofatsa 05-29-2011 06:31 AM

its working for forum bad after 10 minits i see again ofline....why that any help please?
http://www.ellinofatsa.info/ this is my forum take a look

doctorsexy 06-05-2011 12:39 PM

ive got Listen2mymusic.com if you pay for your server you get code to put on your website

ellinofatsa 06-05-2011 08:05 PM

i pay for my server bad wat code do you sey?

raagaswaram 06-06-2011 06:50 AM

please do fix the errors and make it work on 4.1.3 thanks.

ellinofatsa 06-06-2011 07:25 AM

I ts working for my in 4,3,1 bud only for 10 minites then its sow offline i have sent tiket in my host and open port 80 port8000 and the port 31238 bud the problem stay!please why its working only for litle time?? anybady have the same problem?hot to fix that?

i have donwload the scast_home and see inside this

HTTP/1.0 200 OK
Content-Type:text/xml

<?xml version="1.0" standalone="yes" ?><!DOCTYPE SHOUTCASTSERVER [<!ELEMENT SHOUTCASTSERVER (CURRENTLISTENERS,PEAKLISTENERS,MAXLISTENERS,REPOR TEDLISTENERS,AVERAGETIME,SERVE RGENRE,SERVERURL,SERVERTITLE,SONGTITLE,SONGURL,IRC ,ICQ,AIM,WEBHITS,STREAMHITS,ST REAMSTATUS,BITRATE,CONTENT,VERSION,WEBDATA,LISTENE RS,SONGHISTORY)><!ELEMENT CURRENTLISTENERS (#PCDATA)><!ELEMENT PEAKLISTENERS (#PCDATA)><!ELEMENT MAXLISTENERS (#PCDATA)><!ELEMENT REPORTEDLISTENERS (#PCDATA)><!ELEMENT AVERAGETIME (#PCDATA)><!ELEMENT SERVERGENRE (#PCDATA)><!ELEMENT SERVERURL (#PCDATA)><!ELEMENT SERVERTITLE (#PCDATA)><!ELEMENT SONGTITLE (#PCDATA)><!ELEMENT SONGURL (#PCDATA)><!ELEMENT IRC (#PCDATA)><!ELEMENT ICQ (#PCDATA)><!ELEMENT AIM (#PCDATA)><!ELEMENT WEBHITS (#PCDATA)><!ELEMENT STREAMHITS (#PCDATA)><!ELEMENT STREAMSTATUS (#PCDATA)><!ELEMENT BITRATE (#PCDATA)><!ELEMENT CONTENT (#PCDATA)><!ELEMENT VERSION (#PCDATA)><!ELEMENT WEBDATA (INDEX,LISTEN,PALM7,LOGIN,LOGINFAIL,PLAYED,COOKIE, ADMIN,UPDINFO,KICKSRC,KICKDST, UNBANDST,BANDST,VIEWBAN,UNRIPDST,RIPDST,VIEWRIP,VI EWXML,VIEWLOG,INVALID)><!ELEME NT INDEX (#PCDATA)><!ELEMENT LISTEN (#PCDATA)><!ELEMENT PALM7 (#PCDATA)><!ELEMENT LOGIN (#PCDATA)><!ELEMENT LOGINFAIL (#PCDATA)><!ELEMENT PLAYED (#PCDATA)><!ELEMENT COOKIE (#PCDATA)><!ELEMENT ADMIN (#PCDATA)><!ELEMENT UPDINFO (#PCDATA)><!ELEMENT KICKSRC (#PCDATA)><!ELEMENT KICKDST (#PCDATA)><!ELEMENT UNBANDST (#PCDATA)><!ELEMENT BANDST (#PCDATA)><!ELEMENT VIEWBAN (#PCDATA)><!ELEMENT UNRIPDST (#PCDATA)><!ELEMENT RIPDST (#PCDATA)><!ELEMENT VIEWRIP (#PCDATA)><!ELEMENT VIEWXML (#PCDATA)><!ELEMENT VIEWLOG (#PCDATA)><!ELEMENT INVALID (#PCDATA)><!ELEMENT LISTENERS (LISTENER*)><!ELEMENT LISTENER (HOSTNAME,USERAGENT,UNDERRUNS,CONNECTTIME, POINTER, UID)><!ELEMENT HOSTNAME (#PCDATA)><!ELEMENT USERAGENT (#PCDATA)><!ELEMENT UNDERRUNS (#PCDATA)><!ELEMENT CONNECTTIME (#PCDATA)><!ELEMENT POINTER (#PCDATA)><!ELEMENT UID (#PCDATA)><!ELEMENT SONGHISTORY (SONG*)><!ELEMENT SONG (PLAYEDAT, TITLE)><!ELEMENT PLAYEDAT (#PCDATA)><!ELEMENT TITLE (#PCDATA)>]><SHOUTCASTSERVER><CURRENTLISTENERS>1</CURRENTLISTENERS><PEAKLISTENERS>2</PEAKLISTENERS><MAXLISTENERS>5000</MAXLISTENERS><REPORTEDLISTENERS>1</REPORTEDLISTENERS><AVERAGETIME>1</AVERAGETIME><SERVERGENRE>ON AIR</SERVERGENRE><SERVERURL>http://www.ellinofatsa.info:8000</SERVERURL><SERVERTITLE>ellinofatsa</SERVERTITLE><SONGTITLE>05.Ben Dj - I Wanna Take U Away</SONGTITLE><SONGURL></SONGURL><IRC>#shoutcast</IRC><ICQ>0</ICQ><AIM>N/A</AIM><WEBHITS>18</WEBHITS><STREAMHITS>8</STREAMHITS><STREAMSTATUS>1</STREAMSTATUS><BITRATE>80</BITRATE><CONTENT>audio/mpeg</CONTENT><VERSION>1.9.8</VERSION><WEBDATA><INDEX>2</INDEX><LISTEN>0</LISTEN><PALM7>10</PALM7><LOGIN>0</LOGIN><LOGINFAIL>0</LOGINFAIL><PLAYED>0</PLAYED><COOKIE>0</COOKIE><ADMIN>0</ADMIN><UPDINFO>2</UPDINFO><KICKSRC>0</KICKSRC><KICKDST>0</KICKDST><UNBANDST>0</UNBANDST><BANDST>0</BANDST><VIEWBAN>0</VIEWBAN><UNRIPDST>0</UNRIPDST><RIPDST>0</RIPDST><VIEWRIP>0</VIEWRIP><VIEWXML>4</VIEWXML><VIEWLOG>0</VIEWLOG><INVALID>0</INVALID></WEBDATA><LISTENERS><LISTENER><HOSTNAME>178.128.203 .80</HOSTNAME><USERAGENT>NSPlayer/12.00.7600.16597 WMFSDK/12.00.7600.16597</USERAGENT><UNDERRUNS>0</UNDERRUNS><CONNECTTIME>278</CONNECTTIME><POINTER>0</POINTER><UID>5</UID></LISTENER></LISTENERS><SONGHISTORY><SONG><PLAYEDAT>1307354976</PLAYEDAT><TITLE>05.Ben Dj - I Wanna Take U Away</TITLE></SONG><SONG><PLAYEDAT>1307354877</PLAYEDAT><TITLE>03.Jason Born - Give Me Everything (Sunny Dee Remix)</TITLE></SONG></SONGHISTORY></SHOUTCASTSERVER>

Zachariah 06-06-2011 11:47 PM

I do not have VB4.1.3, but I am working on new revisions of the mod.

I have a php standalone version of the script I just updated with a few things. I'll see about some VB updates.

Added:
- jquery ajax refresh (no more hitting refresh !! )
- Added phrases in lang.php for translations
- Song history only shows when a song is played vs. 19 spaces
- Added source URL (DSP URL - $serverurl)
- Added error feedback for connection problems (debug)
- Added option to hide genre, aim, icq, irc, url if not in DSP source.

TeknoSounds 06-07-2011 10:01 AM

yay can't wait for the new version :D

ellinofatsa 06-07-2011 12:29 PM

o thats good will waiting for this

doctorsexy 06-08-2011 07:12 PM

Just tryed the standalone version works very well...

doctorsexy 06-08-2011 07:37 PM

Ive got it to work on 4.1.3....

the next version can you do a auto refresh please...thanks

doctorsexy 06-20-2011 05:53 PM

Working with 4.14.......smashin


All times are GMT. The time now is 05:50 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.01594 seconds
  • Memory Usage 1,939KB
  • 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
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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