vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=246)
-   -   Mini Mods - SteamProfile Integration (https://vborg.vbsupport.ru/showthread.php?t=231081)

Mycologist 12-23-2009 10:00 PM

SteamProfile Integration
 
1 Attachment(s)
Description
Integrates SteamProfile badges into your forum. Allows forum users to see the current status of other members, including, adding them as Steam firends, viewing their profile, joining their current game and viewing their Team Fortress 2 backpack. The script accepts Steam IDs (ex STEAM_X:X:XXXXXXXX), Steam Community IDs (17 digit number) or Steam Community Aliases. I have included my vB4 skin as the default for the widget.

Example Of The Badges (Demo Coming Shortly)

Installation
  1. Download attached "steamprofile_vb4_1.0.1.zip".
  2. Expand and upload the "steamprofile" folder into your forum's root directory.
  3. Go to AdminCP > Styles & Templates > Style Manager > Common Templates.
  4. Add the following to a new line at the bottom of your "headinclude":
    Code:

    <script type="text/javascript" src="steamprofile/jquery-1.3.2.min.js"></script>
    <script type="text/javascript" src="steamprofile/steamprofile.js"></script>

  5. Save.
  6. Go to AdminCP > User Profile Fields > Add New User Profile Field > Single-Line Text Box.
  7. Enter in what ever title and description you want.
  8. Optional To only accept Steam IDs add the following to "Regular Expression":
    Code:

    STEAM_[0-9]:[0-9]:[0-9]{4,}
  9. Change the "Display Page" option to "Options: Other".
  10. Save.
  11. Make note of the field number (ex field5).
  12. Go to AdminCP > Styles & Templates > Style Manager > Edit Templates > Postbit Templates > postbit_legacy.
  13. Find the following line:
    Code:

                                    <vb:if condition="$post['title'] OR $show['messageicon']">
  14. Replace fieldX, in both locations, in the following line of code with your noted field number from above. Then add the code to a new line after the previous line:
    Code:

                                    <vb:if condition="$post['fieldX']"><div class="steamprofile" title="{vb:raw post.fieldX}" style="float: right;"></div></vb:if>
  15. Save. Finished.

Additional Credits
Barracuda the author of SteamProfile.
drpepper of TF2Maps.net for his original vB 3.8.2 mod.

Upgrade Instructions (1.0.0 > 1.0.1)
  1. Download attached "steamprofile_vb4_1.0.1_upgrade.zip".
  2. Expand and upload the "steamprofile" folder into your forum's root directory. Replacing all files.
  3. Finished.

Version History
1.0.0 - Initial Release
1.0.1 - Fixed Quote Overlap Issue

SuperTaz 12-25-2009 03:09 AM

Installed, but I can't find the profile. Any thoughts?

slimshotty 12-25-2009 04:52 AM

How do you resolve this error?

Cache directory "cache" is not writable.


Thanks,

--Slim

slimshotty 12-25-2009 04:55 AM

Nevermind the cache error. I resolved it by chmod 777 /forum/steamprofile/cache.

I have a new error:

cURL extension not loaded

What am I missing now?

Thanks,

--Slim

Mycologist 12-25-2009 08:52 PM

Quote:

Originally Posted by Warden-B- (Post 1937761)
Installed, but I can't find the profile. Any thoughts?

Make sure you fill in your ID.

Go to Settings > Forum Settings > (The Input Box You Named Should Be Near The Bottom).

Mycologist 12-25-2009 08:54 PM

Quote:

Originally Posted by slimshotty (Post 1937800)
Nevermind the cache error. I resolved it by chmod 777 /forum/steamprofile/cache.

I have a new error:

cURL extension not loaded

What am I missing now?

Thanks,

--Slim

I am sorry, I cannot recreate this error. Is there any additional information you can provide?

Bouncer222 12-26-2009 02:20 AM

I have an issue, look at this link at post number 2 http://www.brotherhoodofgamers.com/s...full=1#post195

as you can see, the quoted text goes over the steam signature, how do I fix that?

Thanks.

niake 12-26-2009 08:51 AM

One user on my forum has only 4 digits number one he's Steam ID like STEAM_0:1:111

He get This user has not yet set up their Steam Community profile.

JamesGunner 12-26-2009 07:15 PM

If you display it there, then the quote will be hiding it. So if a player quotes at the start of his post it will be overlapping the steamprofile pic from what I tested.

Quote:

Originally Posted by slimshotty (Post 1937800)
Nevermind the cache error. I resolved it by chmod 777 /forum/steamprofile/cache.

I have a new error:

cURL extension not loaded

What am I missing now?

Thanks,

--Slim

Seems like that your Curl PHP module is not loaded. Ask your Hoster to enable this for you.

Bouncer222 12-26-2009 10:32 PM

So is there a way to fix it??

JamesGunner 12-27-2009 11:34 AM

Quote:

Originally Posted by Bouncer222 (Post 1938984)
So is there a way to fix it??

well, you cant stop the overlapping I guess. So a solution would be placing it somewhere else^^.

Mycologist 12-27-2009 01:50 PM

1 Attachment(s)
Quote:

Originally Posted by Bouncer222 (Post 1938375)
I have an issue, look at this link at post number 2 http://www.brotherhoodofgamers.com/s...full=1#post195

as you can see, the quoted text goes over the steam signature, how do I fix that?

Thanks.

Fixed. Updated to version 1.0.1. Upgrade instructions are in the original post.

Mycologist 12-27-2009 03:10 PM

Quote:

Originally Posted by niake (Post 1938485)
One user on my forum has only 4 digits number one he's Steam ID like STEAM_0:1:111

He get This user has not yet set up their Steam Community profile.

Well, if your users would like to take advantage of this mod, they will have to have a stream profile setup; there's no way around this. As for the short steam id, you could just delete or modify "regular expression". Example:
Code:

STEAM_[0-9]:[0-9]:[0-9]{3,}

stuky4ever 12-28-2009 05:16 AM

1 Attachment(s)
How can I add the Steam Profile thing below the Post Count. Example.

Skyrider 12-28-2009 11:31 AM

I've installed everything correctly, and even used my 2 ID's *SteamID and profile ID*, both doesn't work. It doesn't show anything new in posts. I even replaced the X with the new profile field number that is correctly with the new one. On top of that, all files are uploaded correctly, and it loads the script files correctly if I copy/paste them in the browser.

Mycologist 12-28-2009 02:06 PM

Quote:

Originally Posted by stuky4ever (Post 1940054)
How can I add the Steam Profile thing below the Post Count. Example.

You can add Step 14's code to pretty much anywhere in your postbit. Play around and see what you can come up with. Post a screen if you find a good place to use it.

Mycologist 12-28-2009 02:11 PM

Quote:

Originally Posted by FF|Skyrider (Post 1940276)
I've installed everything correctly, and even used my 2 ID's *SteamID and profile ID*, both doesn't work. It doesn't show anything new in posts. I even replaced the X with the new profile field number that is correctly with the new one. On top of that, all files are uploaded correctly, and it loads the script files correctly if I copy/paste them in the browser.

Are you possibly using another template other than postbit_legacy for you forum's postbit? Could you post the URL of the site you are trying to install this mod on?

Bouncer222 12-28-2009 05:13 PM

Can you tell me what you did to make it appear on top of the quote in the style.css, what did you add/edit? Because I would like to configure something a bit so I need to know this. Thanks.

Skyrider 12-28-2009 07:09 PM

Quote:

Originally Posted by Mycologist (Post 1940418)
Are you possibly using another template other than postbit_legacy for you forum's postbit? Could you post the URL of the site you are trying to install this mod on?

http://forum.esforces.com

If I've done something wrong, I'd love to know. As far as I know, legacy is the one having the mini-profile in posts in the left.

Mycologist 12-28-2009 08:44 PM

Quote:

Originally Posted by FF|Skyrider (Post 1940735)
http://forum.esforces.com

If I've done something wrong, I'd love to know. As far as I know, legacy is the one having the mini-profile in posts in the left.

It looks like you forgot, at least, the code from step 4. None of your forum pages have jquery or steam profile loaded.

Bouncer222 12-28-2009 09:28 PM

Quote:

Originally Posted by Bouncer222 (Post 1940621)
Can you tell me what you did to make it appear on top of the quote in the style.css, what did you add/edit? Because I would like to configure something a bit so I need to know this. Thanks.

Please let me know :)

Skyrider 12-28-2009 10:56 PM

Quote:

Originally Posted by Mycologist (Post 1940850)
It looks like you forgot, at least, the code from step 4. None of your forum pages have jquery or steam profile loaded.

If you check the source on any page, you'll see the code. I haven't changed anything.

Mycologist 12-28-2009 11:44 PM

Quote:

Originally Posted by FF|Skyrider (Post 1940961)
If you check the source on any page, you'll see the code. I haven't changed anything.

I just did; twice. The code from step 4 is absent from your header.

Code:

<head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta id="e_vb_meta_bburl" name="vb_meta_bburl" content="http://forum.esforces.com" />
<base href="http://forum.esforces.com/" /><!--[if IE]></base><![endif]-->
<meta name="generator" content="vBulletin 4.0.0" />


                <meta name="keywords" content="esf,esfforums,ecx,earth's special forces,esforces,earthspecialforces" />
                <meta name="description" content="The Earth's Special Forces Forums. New? Need help?  Or just want to drop by? Ask your questions here!" />


<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/yui/2.7.0/build/yuiloader-dom-event/yuiloader-dom-event.js?v=400"></script>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/yui/2.7.0/build/connection/connection-min.js?v=400"></script>
<script type="text/javascript">
<!--
        var SESSIONURL = "";
        var SECURITYTOKEN = "guest";
        var IMGDIR_MISC = "images/misc";
        var IMGDIR_BUTTON = "images/buttons";
        var vb_disable_ajax = parseInt("0", 10);
        var SIMPLEVERSION = "400";
        var BBURL = "http://forum.esforces.com";
// -->
</script>
<script type="text/javascript" src="http://forum.esforces.com/clientscript/vbulletin-core.js?v=400"></script>



<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/yui/2.7.0/build/reset-fonts/reset-fonts.css" />
<link rel="stylesheet" type="text/css" href="css.php?styleid=29&amp;langid=2&amp;d=1261938163&amp;td=ltr&amp;sheet=vbulletin.css,popupmenu.css,vbulletin-chrome.css,components.css,vbulletin-formcontrols.css" />

 
        <title>Earth's Special Forces - Forums</title>

        <link rel="stylesheet" type="text/css" href="css.php?styleid=29&amp;langid=2&amp;d=1261938163&amp;td=ltr&amp;sheet=forumbits.css" />

        <!--[if IE 6]><link rel="stylesheet" type="text/css" href="css.php?styleid=29&amp;langid=2&amp;d=1261938163&amp;td=ltr&amp;sheet=forumbits-ie.css" /><![endif]-->
        <link rel="stylesheet" type="text/css" href="css.php?styleid=29&amp;langid=2&amp;d=1261938163&amp;td=ltr&amp;sheet=forumhome.css" />
       
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-6345932-2']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
  })();
</script>
</head>


Now compare yours to my WIP site; jquery-1.3.2.min.js and steamprofile.js both are included in the header:

Code:

<head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta id="e_vb_meta_bburl" name="vb_meta_bburl" content="http://ducksoup-gaming.com" />
<base href="http://ducksoup-gaming.com/" /><!--[if IE]></base><![endif]-->
<meta name="generator" content="vBulletin 4.0.0" />


                <meta name="keywords" content="vbulletin,forum,bbs,discussion,bulletin board" />
                <meta name="description" content="This is a discussion forum powered by vBulletin. To find out about vBulletin, go to http://www.vbulletin.com/ ." />


<script type="text/javascript" src="clientscript/yui/yuiloader-dom-event/yuiloader-dom-event.js?v=400"></script>

<script type="text/javascript" src="clientscript/yui/connection/connection-min.js?v=400"></script>
<script type="text/javascript">
<!--
        var SESSIONURL = "";
        var SECURITYTOKEN = "1262050863-23da81a2d06e5423ddf9b6591b3a35a1271462f0";
        var IMGDIR_MISC = "images/misc";
        var IMGDIR_BUTTON = "images/buttons";
        var vb_disable_ajax = parseInt("0", 10);
        var SIMPLEVERSION = "400";
        var BBURL = "http://ducksoup-gaming.com";
// -->
</script>
<script type="text/javascript" src="http://ducksoup-gaming.com/clientscript/vbulletin-core.js?v=400"></script>



<link rel="stylesheet" type="text/css" href="clientscript/yui/reset-fonts/reset-fonts.css" />
<link rel="stylesheet" type="text/css" href="css.php?styleid=2&amp;langid=1&amp;d=1262049749&amp;td=ltr&amp;sheet=vbulletin.css,forumhome_sub_forum_manager.css,popupmenu.css,vbulletin-chrome.css,components.css,vbulletin-formcontrols.css" />

<script type="text/javascript" src="steamprofile/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="steamprofile/steamprofile.js"></script> <script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>    <script type="text/javascript">
    <!--
            $(function()
        {
            $('.subforumlist').removeClass('commalist');
            $('.subforumlist').addClass('column3');
            $('.forumdata').addClass('forumdata');
            $('.datacontainer').addClass('datacontainer');
            $('.subforums h4').css('display', 'none');
        })
    // -->
    </script>

        <title>DuckSoup-Gaming Forums</title>

        <link rel="stylesheet" type="text/css" href="css.php?styleid=2&amp;langid=1&amp;d=1262049749&amp;td=ltr&amp;sheet=forumbits.css" />
        <!--[if IE 6]><link rel="stylesheet" type="text/css" href="css.php?styleid=2&amp;langid=1&amp;d=1262049749&amp;td=ltr&amp;sheet=forumbits-ie.css" /><![endif]-->
        <link rel="stylesheet" type="text/css" href="css.php?styleid=2&amp;langid=1&amp;d=1262049749&amp;td=ltr&amp;sheet=forumhome.css" />
       
        <link rel="stylesheet" type="text/css" href="css.php?styleid=2&amp;langid=1&amp;d=1262049749&amp;td=ltr&amp;sheet=tagcloud.css" />
        <script type="text/javascript" src="clientscript/yui/animation/animation-min.js?v=400"></script>
        <script type="text/javascript">
                var sidebar_align = 'right';
                var content_container_margin = parseInt('290px');
                var sidebar_width = parseInt('270px');
        </script>

        <script type="text/javascript" src="http://ducksoup-gaming.com/clientscript/vbulletin-sidebar.js?v=400"></script>
       
</head>


Skyrider 12-29-2009 12:09 AM

Please switch to the default vb4 theme if you can. That's where I added it, not the xmas theme. You'll see this:

Code:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/yui/2.7.0/build/yuiloader-dom-event/yuiloader-dom-event.js?v=400"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/yui/2.7.0/build/connection/connection-min.js?v=400"></script>

<script type="text/javascript">
<!--
        var SESSIONURL = "";
        var SECURITYTOKEN = "1262049089-63f27b9cafaa9e6a845fe12c32baeba18dbff0e2";
        var IMGDIR_MISC = "images/misc";
        var IMGDIR_BUTTON = "images/buttons";
        var vb_disable_ajax = parseInt("0", 10);
        var SIMPLEVERSION = "400";
        var BBURL = "http://forum.esforces.com";
// -->
</script>
<script type="text/javascript" src="http://forum.esforces.com/clientscript/vbulletin-core.js?v=400"></script>



<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/yui/2.7.0/build/reset-fonts/reset-fonts.css" />
<link rel="stylesheet" type="text/css" href="css.php?styleid=26&amp;langid=2&amp;d=1262006075&amp;td=ltr&amp;sheet=vbulletin.css,popupmenu.css,vbulletin-chrome.css,components.css,vbulletin-formcontrols.css" />

<script src="http://forum.esforces.com/clientscript/gcbos.js" type="text/javascript"></script>

<script type="text/javascript" src="steamprofile/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="steamprofile/steamprofile.js"></script>

<script src="http://www.esforces.com/javascript/prettyPhoto/js/jquery-1.3.2.js" type="text/javascript" charset="utf-8"></script>
<script src="http://www.esforces.com/javascript/prettyPhoto/js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="http://www.esforces.com/javascript/prettyPhoto/css/prettyPhoto.css" type="text/css" media="screen" charset="utf-8" />

        <script type="text/javascript" charset="utf-8">
                $(document).ready(function(){
                        $("a[rel^='prettyPhoto']").prettyPhoto();
                });
        </script>

as you can see, the needed code is there :).

Mycologist 12-29-2009 12:39 AM

The only thing I can think of, without mucking around in your admincp, is that your "prettyphoto"'s jquery might be conflicting with the steamprofile's jquery. Try disabling prettyphoto and see if it solves the issue.

Skyrider 12-29-2009 12:46 AM

Quote:

Originally Posted by Mycologist (Post 1941052)
The only thing I can think of, without mucking around in your admincp, is that your "prettyphoto"'s jquery might be conflicting with the steamprofile's jquery. Try disabling prettyphoto and see if it solves the issue.

PrettyPhoto Disabled, still not working. Might be a possible plugin conflict with something else? Got these installed:

- AME 3
- BBR - Google Analytics Addon
- BBR - Resize Images with lytebox
- GCBOS
- Members who have Visited
- Separate Sticky and Normal Threads
- Site link for vbb4
- vBH - Add new tabs
- vbStopForumSpam
- Who Has Read a Thread.

Bouncer222 12-29-2009 12:47 AM

Originally Posted by Bouncer222 View Post

Can you tell me what you did to make it appear on top of the quote in the style.css, what did you add/edit? Because I would like to configure something a bit so I need to know this. Thanks.

Please let me know

Anyone please?

Mycologist 12-29-2009 01:02 AM

Quote:

Originally Posted by Bouncer222 (Post 1941062)
Originally Posted by Bouncer222 View Post

Can you tell me what you did to make it appear on top of the quote in the style.css, what did you add/edit? Because I would like to configure something a bit so I need to know this. Thanks.

Please let me know

Anyone please?

Code:

z-index: 100;

mcca 12-29-2009 01:17 PM

Installed and have this error message
Error file_put_contents(cache/dd2841607e3f8f63b9700a394eb61445.xml) [function.file-put-contents]: failed to open stream: Permission Denied

I also cant find my steam ID anywhere. Where would I find it?

Mycologist 12-29-2009 03:15 PM

Quote:

Originally Posted by mcca (Post 1941508)
Installed and have this error message
Error file_put_contents(cache/dd2841607e3f8f63b9700a394eb61445.xml) [function.file-put-contents]: failed to open stream: Permission Denied

I also cant find my steam ID anywhere. Where would I find it?

The error I'm not too sure about, can you post a link to the board you installed on? As for your ID, you can use two types:

Steam Community ID/Alias

Go to Steam's community site and search for yourself using the search box on the top right. Click on your name and have a look at the URL. It should be something like "http://steamcommunity.com/profiles/76561197965018417" or "http://steamcommunity.com/id/robinwalker". Whatever comes after the last slash is your community ID. For the examples above, it would be "76561197965018417" or "robinwalker".

Steam ID

This is your in-game Steam ID used by mostly Valve games. It's a little more complicated to find, but you can try using this website.

ShawnV 12-30-2009 03:51 AM

1) whats the overhead on running this on large forums?

VSLucky 12-30-2009 04:07 AM

Thanks for the terrific addon.

I am not sure if this is a question I can ask in this forum but is there any possibly way to use this add on on 3.8? Would it be the code that needs to be altered or both the code and the files uploaded? Thanks in advance.

Mycologist 12-30-2009 06:17 AM

Quote:

Originally Posted by ShawnV (Post 1942150)
1) whats the overhead on running this on large forums?

I wouldn't know the answer to this. I would assume the largest load comes from the two js files that are uploaded.

Quote:

Originally Posted by VSLucky (Post 1942166)
Thanks for the terrific addon.

I am not sure if this is a question I can ask in this forum but is there any possibly way to use this add on on 3.8? Would it be the code that needs to be altered or both the code and the files uploaded? Thanks in advance.

Substitute the code from Step 14 to this:

Code:

<if condition="$post['fieldx']"><div class="steamprofile" title="$post[fieldx]" style="float: right;"></div></if>
Hopefully that works for you, I cannot support v3.8 beyond this, I don't have it installed.

VSLucky 12-30-2009 07:46 AM

Many thanks Mycologist.

The code worked perfectly.

Bouncer222 12-30-2009 08:51 PM

Crap i dont konw what happened, but it stopped displaying the information for the steam signature . You can check out any post at www.brotherhoodofgamers.com it only shows the background now and nothing else, how do I fix this?

Mycologist 12-30-2009 11:03 PM

Quote:

Originally Posted by Bouncer222 (Post 1942878)
Crap i dont konw what happened, but it stopped displaying the information for the steam signature . You can check out any post at www.brotherhoodofgamers.com it only shows the background now and nothing else, how do I fix this?

If it was working, now it isn't then it must have been something you did/installed/modified on your forum. I would backtrack your steps. (unless you can share something more about what happened)

Bouncer222 12-30-2009 11:54 PM

I really have no idea, I didn't really modify much , I installed comichat i believe it's called at my site on the bottom its like facebook chat. but i checked postbit and header and all the codes are still there, so I have no idea why it wouldn't show up.

angedelamort 01-03-2010 02:34 AM

Everyting seems fine except when displaying the information, I've got this error:

Quote:

dl() [function.dl]: Unable to load dynamic library './bcmath.so' - ./bcmath.so: cannot open shared object
I Haven't checked the code, but do you need some php extension in order to run that plugin?

Olli2k 01-03-2010 12:37 PM

Quote:

Originally Posted by Bouncer222 (Post 1942878)
Crap i dont konw what happened, but it stopped displaying the information for the steam signature . You can check out any post at www.brotherhoodofgamers.com it only shows the background now and nothing else, how do I fix this?

Same Problem here, but after a fresh Install. example.html works fine, but in vB there is only the steam_id in the mouseover tooltip.

ShawnV 01-03-2010 05:07 PM

Quote:

Message: Object doesn't support this property or method
Line: 165
Char: 3
Code: 0
URI: http://www.xxxxx.com/steamprofile/steamprofile.js
Internet exploder 8 seems to get this error, works good on FF.


All times are GMT. The time now is 07:10 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.01669 seconds
  • Memory Usage 1,883KB
  • 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
  • (10)bbcode_code_printable
  • (22)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
  • (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