vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Integration with vBulletin - vB Nexus, Facebook & Google multiple login integration (https://vborg.vbsupport.ru/showthread.php?t=220820)

cory_booth 08-26-2009 12:34 PM

Quote:

Originally Posted by Calash (Post 1874684)
I think this is an error on Facebook side. You can go to the facebook developers page and see a list of all registered template bundles. Make sure the numbers match up to what you have in the vBnexus control area.

I have not played with this much yet but you may be able to deactivate the bundles, clear out the numbers from the control panel, and click the link to recreate them again if you are still having problems.

OK don't shoot me, but did you goto Nexus Admin setting, click on the Wall Templates (at the bottom), open the template display screen and click save regardless if you changed anything?

If so, your template IDs will reflect something other than 1 in the Nexus setup area.

Calash 08-26-2009 12:50 PM

Quote:

Originally Posted by cory_booth (Post 1874716)
OK don't shoot me, but did you goto Nexus Admin setting, click on the Wall Templates (at the bottom), open the template display screen and click save regardless if you changed anything?

If so, your template IDs will reflect something other than 1 in the Nexus setup area.

I am not sure I follow what you are saying, or why you quoted me however if you have followed the steps you outlined and then go to the link I posted you will see template bundles with numbers that match the bundles in the vBnexus admin area.

cory_booth 08-26-2009 01:35 PM

Ah my mistake... Disregard.

yahoooh 08-26-2009 01:37 PM

i test it with firefox 3.5.1
through your site
when i login through google and try to choose nick in your site
the submit will not work

Michael2 08-26-2009 02:06 PM

Quote:

Originally Posted by cory_booth (Post 1874716)
OK don't shoot me, but did you goto Nexus Admin setting, click on the Wall Templates (at the bottom), open the template display screen and click save regardless if you changed anything?

If so, your template IDs will reflect something other than 1 in the Nexus setup area.

Yes, I've done that and the template ID's are there, however they do not match and so far as I can tell there is no way to change them in vB or Facebook.

RvG2 08-26-2009 02:25 PM

Quote:

Originally Posted by cad2go (Post 1874357)
perfect! thanks.

btw wolfstream has shown those 'real coders' characteristics extensively on the fb connect mod. As have you above.

Thanks to both of you.:up:

thank you so much. this has solved my problem.

Installation works very well for me. :up:

wolfstream 08-26-2009 02:31 PM

If your templates don't match, deactivate the templates @ facebook, and try again. This time, make SURE the settings are correct in the vbnexus module. Obviously they weren't when you connected.

You can not recycle templates from the other facebook mod, you need to generate new ones, and make SURE you save the settings, as instructed. Even if you didn't change anything, save the settings anyways.

cory_booth 08-26-2009 09:20 PM

OK I got mine working however...

I had to disable Send PM Notice on Registration via vBulletin General "out of the box" Functions.

I also had to apply the FaceBook Connect plugin disable for vbGallery.

Will continue to test.

I also noticed that once registered, the user's email address is not captured?

I registered as Yahoo, but when I went to my UserCP, it said no email address...
Normal?

Veer 08-27-2009 01:07 AM

What about the following error, I'm getting on top of the header:
Code:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/init.php(298) : eval()'d code on line 654

cory_booth 08-27-2009 01:13 AM

Quote:

Originally Posted by Veer (Post 1875109)
What about the following error, I'm getting on top of the header:
Code:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/init.php(298) : eval()'d code on line 654

A few pages back...

Did you do this?

Quote:

FOr those getting the array_merge warning, simply do this.

Open the *** Initialize app *** plugin and find this:


PHP Code:
$phrasegroups = array_merge($phrasegroups, array('vbnexus'));
And above put this:


PHP Code:
if ( !is_array ( $phrasegroups ) )
{
$phrasegroups = array ( );
}

Veer 08-27-2009 01:56 AM

Thank you cory_booth, Error fixed now, Appreciated :)

cory_booth 08-27-2009 01:19 PM

Problem...

Using vb Gallery...

If I add this...
if ( !is_array ( $phrasegroups ) )
{
$phrasegroups = array ( );
}

I can not display images anymore as the vbGallery image page will not show array error.
Pictures show as X but if access directly, first line of image code shows error.

Ryan Ashbrook 08-27-2009 04:15 PM

Quote:

Originally Posted by cory_booth (Post 1875261)
Problem...

Using vb Gallery...

If I add this...
if ( !is_array ( $phrasegroups ) )
{
$phrasegroups = array ( );
}

I can not display images anymore as the vbGallery image page will not show array error.
Pictures show as X but if access directly, first line of image code shows error.

Then you need something specific to assign to the $phrasegroups array, I can't help you. Sorry.

For those who are having issues regarding Facebook Wall Feeds (Sign Up, New Thread, New Reply, and Album) I have found a fix.

Because most of our servers are 32-bit, anything that is assigned as an Integer will be limited to 2147483647. Facebook Template ID's are way above this.

Therefor, to fix, close your board and place it into Debug Mode, by adding this line to your config.php, after <?php

PHP Code:

$config['Misc']['debug'] = 1

Go to your Admin CP -> vBulletin Options -> vB Nexus Configuration.

For all of the Template Bundle ID configs (there are four of them), click [Edit] and change it's Data Validation Type to Numeric, and save.

Once your done changing all four turn off debug mode by removing the line I noted before and re-open your board.

This isn't really a bug in vBulletin Nexus, it's a limitation in our servers. They way they had it set up is the correct way to do things.

RvG2 08-27-2009 04:38 PM

15 pages...

this deserved an update :)

Ohiosweetheart 08-27-2009 05:01 PM

It does.

Where is Anders? Is this not being supported now?

Ohiosweetheart 08-27-2009 05:02 PM

Quote:

Originally Posted by Ryan Ashbrook (Post 1875350)
Then you need something specific to assign to the $phrasegroups array, I can't help you. Sorry.

For those who are having issues regarding Facebook Wall Feeds (Sign Up, New Thread, New Reply, and Album) I have found a fix.

Because most of our servers are 32-bit, anything that is assigned as an Integer will be limited to 2147483647. Facebook Template ID's are way above this.

Therefor, to fix, close your board and place it into Debug Mode, by adding this line to your config.php, after <?php

PHP Code:

$config['Misc']['debug'] = 1

Go to your Admin CP -> vBulletin Options -> vB Nexus Configuration.

For all of the Template Bundle ID configs (there are four of them), click [Edit] and change it's Data Validation Type to Numeric, and save.

Once your done changing all four turn off debug mode by removing the line I noted before and re-open your board.

This isn't really a bug in vBulletin Nexus, it's a limitation in our servers. They way they had it set up is the correct way to do things.

Excellent fix Ryan. It didn't work for me, but I'm hoping it does for most. :rolleyes:

Ohiosweetheart 08-27-2009 05:07 PM

is ANYONE having an issue with the settings for this in your User CP not staying on Yes?

http://i17.photobucket.com/albums/b9...b/ucpnexus.png

They are set on yes in the acp, but everytime I set them to yes in my ucp and save, they revert back to no.

Any ideas??

ibautocommunity 08-27-2009 05:14 PM

Quote:

Originally Posted by Ohiosweetheart (Post 1875380)
It does.

Where is Anders? Is this not being supported now?

This is supported; my team is actively unrolling this new product / feature onto our own sites and as we discover problems we will fix them and provide an update to the community, as well as support for future vB versions.

Ohiosweetheart 08-27-2009 05:18 PM

That's good to know. But what about the issues being reported on this thread? There are alot of things that people are requesting help with here, and getting no feedback. :)

Can you think of any reason why my settings won't stay on Yes in my User CP?

NeverBored 08-27-2009 06:42 PM

I installed this and none of the logins did anything on the VB side. The logins seemed to work fine externally (no errors), but at the end when it takes me back to my site it doesn't create a VB account. Why would that be?

zishan876 08-27-2009 08:14 PM

I did everything.. I see the images appear on my site with the exception of facebook for some reason but when I click on google it does not do anything?
http://mmaxtra.com/forum/index.php

Please help ...
I did place this code in my navbar for my template
<table cellpadding="3" cellspacing="0" border="0" width="100%">
<tr align="right">
<td align="right" valign="middle"><span class="smallfont">New! Use your <strong>Facebook, Google, AIM & Yahoo</strong> accounts to securely log into this site, <strong>click logo to login</strong></span></td>

<td width="380px" align="right"><!-- fbconnect --><fb:login-button onlogin="window.location='http://mmaxtra.com/forum/index.php?product=vbnexus&product-mod=facebook&do=login&loc=L2ZvcnVtLw==';"></fb:login-button><!-- / fbconnect --> &nbsp<a href='#' onclick='isgooglesignin = true; google.friendconnect.requestSignIn()'><img src="./vbnexus/images/nexus.gif" border="0"></a>
</td>
</tr>
</table>
Thanks

wolfstream 08-27-2009 11:49 PM

Quote:

Originally Posted by Ohiosweetheart (Post 1875386)
is ANYONE having an issue with the settings for this in your User CP not staying on Yes?

Nope, works fine for me.

Quote:

Originally Posted by ibautocommunity (Post 1875393)
This is supported; my team is actively unrolling this new product / feature onto our own sites and as we discover problems we will fix them and provide an update to the community, as well as support for future vB versions.

What about the stuff that has been reported here, the most important place for this mod? Stuff such as
  1. Grey screen (caused by facebook timeout issues)
  2. Quick Reply broken
  3. New threads no longer being allowed to create polls (despite being told to do so)
  4. Header not showing up
  5. login box shown twice (in some sites)
You need to fix these issues and assure people you're working on them, not just blow them off like you've done the past few weeks.
The best way to fix the last two is to template those instead of using str_replace garbage in plugins!

Calash 08-28-2009 12:48 AM

Quote:

Originally Posted by wolfstream (Post 1875542)
Nope, works fine for me.


What about the stuff that has been reported here, the most important place for this mod? Stuff such as
  1. Grey screen (caused by facebook timeout issues)
  2. Quick Reply broken
  3. New threads no longer being allowed to create threads (despite being told to do so)
  4. Header not showing up
  5. login box shown twice (in some sites)
You need to fix these issues and assure people you're working on them, not just blow them off like you've done the past few weeks.
The best way to fix the last two is to template those instead of using str_replace garbage in plugins!

Agree 100%.

wolfstream 08-28-2009 12:55 AM

Yeah, that new threads creating threads point should have been
New threads not creating polls, not threads, my bad!

Ohiosweetheart 08-28-2009 01:09 AM

Quote:

Originally Posted by wolfstream (Post 1875542)
Nope, works fine for me.

SO odd. It worked fine til I connected my FB account with my forum account. NOW I can't publish anything to FB, no prompts, no nothing, but my members are able to.

I take this back - I AM getting new reply and new thread notifications at FB. But can't publish any of my new threads or posts.

And not getting any help here from the coder. :rolleyes:


Quote:

Originally Posted by wolfstream (Post 1875542)
What about the stuff that has been reported here, the most important place for this mod?
.... You need to fix these issues and assure people you're working on them, not just blow them off like you've done the past few weeks.

Sorry Anders, but I have to agree. You asked me to PM you a list of my issues 2 weeks ago, then you had to go out of town for a week which I understand. But then you said you'd work on them Monday or Tuesday. It's Thursday night and I haven't heard a thing. I think it might be best for me to uninstall this mod.

You really shouldn't have released it til you were ready to offer support here. ;)

wolfstream 08-28-2009 05:11 AM

What's almost funny is that I can create a vBookie event with a new thread, if I choose, but not a poll. Anyone else noticing they can't create new polls except using the "thread tools" dropdown?

I realize that this is a beta product, and fully understand the implications of that. I'm a beta tester by nature, but, as a developer, you can't just go off and provide support to a limited cluster of individuals (ie: your own forums). That's a closed beta event, and it's not that fair to the rest of the individuals you advertise this to.

Edit:
Confirmed, polls not being created.

Calash 08-28-2009 10:24 AM

Confirmed here as well. Trying to create a poll just creates a new thread.

I was able to correct this by editing the Include js for FB Feed for new thread (non ajax) plugin to check if the newthread is a poll before running. Here is my current code.

Code:

if (!$newpost['postpoll'])

            if( $vbulletin->userinfo['isfbuser'] AND $vbulletin->options['vbnexusconfig_facebook_newthreadfeed'] AND $vbulletin->vbnexus->userinfo['newthreadfeed'])
{
// TODO: Need to take care of different types of thread/moderation etc
$vbulletin->url = 'showthread.php?' . $vbulletin->session->vars['sessionurl'] . "p=$newpost[postid]#post$newpost[postid]";
$vbnexusjs = "

var threadtitle = '" . $newpost[title] . "';
var threadurl = bburl + '/". html_entity_decode($vbulletin->url) ."';
var templateid = ". $vbulletin->options[vbnexusconfig_facebook_newthreadfeedtemplateid] . ";
FB.ensureInit(function()
                        {                               
                                FB.Connect.showFeedDialog(templateid, {'bbtitle': bbtitle, 'bburl': bburl, 'threadtitle': threadtitle, 'threadurl': threadurl}, null, null, null, FB.RequireConnect.doNotRequire, function()
                                {
                                        window.location = threadurl;
                                }, '', {value: '" . $vbulletin->db->escape_string($vbphrase[vbnexus_facebook_user_posted_a_new_thread]) . "'});
                               
                        });
";       
vBNexus::mergeJSinFeedTemplate($vbnexusjs);
die;


}

}

This allows me to post polls, but they do not post to Facebook.

Veer 08-28-2009 12:27 PM

I changed Default USERGROUP ID for non-vBulletin Users other than "2" but change does not effect.

Any solution?

cad2go 08-28-2009 04:17 PM

It's like facebook mods are cursed on vb.org

or else this is a ploy by vb's owners to make everyone upgrade to 4.

uninstalled

RidinHighSpeeds 08-28-2009 04:21 PM

At this point it appears the only way for existing users to tie their existing facebook account to their VB profile is to log-out, select the facebook logo, then make the connection. It would be great if VB users could access this page when logged in to add their existing facebook profile: http://carblog.com/vbnexus/user-guide/step2.gif

The a dismissable notice would be great for the option listed above for existing users.. I tried this but after adding the code nothing happens (after clicking any of the logos) since the user is already logged in..

webrats 08-28-2009 09:26 PM

everytime i chaneg the template ids it goes back to 2147483647

Ohiosweetheart 08-28-2009 10:17 PM

Quote:

Originally Posted by RidinHighSpeeds (Post 1875892)
At this point it appears the only way for existing users to tie their existing facebook account to their VB profile is to log-out, select the facebook logo, then make the connection. It would be great if VB users could access this page when logged in to add their existing facebook profile:

The a dismissable notice would be great for the option listed above for existing users.. I tried this but after adding the code nothing happens (after clicking any of the logos) since the user is already logged in..

I did tie my forum account to my fb account. But I still can't publish my posts/threads to FB, because my settings in the user cp won't stay on YES. After saving they keep reverting back to no.

Something to note about this - I'm the admin on the site. I'm the only one this is happening to. All other members can publish their posts.

It's also NOT a conflict with any other mod, because I disabled every one of them, and still no go. :rolleyes:

ibautocommunity 08-28-2009 10:23 PM

Quote:

Originally Posted by Ohiosweetheart (Post 1876051)
I did tie my forum account to my fb account. But I still can't publish my posts/threads to FB, because my settings in the user cp won't stay on YES. After saving they keep reverting back to no.

Something to note about this - I'm the admin on the site. I'm the only one this is happening to. All other members can publish their posts.

It's also NOT a conflict with any other mod, because I disabled every one of them, and still no go. :rolleyes:

Try a default vBulletin template please, just to test.

Ohiosweetheart 08-28-2009 10:30 PM

On the same forum? Yes I've tested this on the default vB style. Same result. :(

ibautocommunity 08-28-2009 10:37 PM

internet Explorer 6 Issue Fix
Bug Status: ie6 only, very site specific, NOT a mandatory product update

This is a BUG in IE6 only, we are not going to be including this into the product as it is a very site / server specific issue. If users report "Operation aborted" issue in IE6 you will need to edit plugins and replace their code with the following:

//=== New plugin code for "Include facebook js after <body>" ===
PHP Code:

$headinclude .= "
<script type=\"text/javascript\" src=\"vbnexus/js/jquery.js\"></script>"
;

if(!
$vbulletin->userinfo['userid'] AND !is_browser('ie'6))
{

// Add google related stuff

$headinclude .= "
<!-- Load the Google AJAX API Loader -->
    <script type=\"text/javascript\" src=\"http://www.google.com/jsapi\"></script>

    <!-- Load the Google Friend Connect javascript library. -->
    <script type=\"text/javascript\">
      google.load('friendconnect', '0.8');
    </script>

    <!-- Initialize the Google Friend Connect OpenSocial API. -->
    <script type=\"text/javascript\">
    google.friendconnect.container.setParentUrl('vbnexus/google/' /* location of rpc_relay.html and canvas.html */);
    google.friendconnect.container.initOpenSocialApi({
      site: '" 
$vbulletin->options['vbnexusconfig_google_apikey'] ."',
      onload: function(securityToken) { loadData(); }
    });
    var isgooglesignin = false;
    </script>
    "
;

$headinclude .= "
<script type=\"text/javascript\">
    //google.friendconnect.requestSignOut();
 // load the data using open social 
    function loadData() {
    var req = opensocial.newDataRequest();
      req.add(req.newFetchPersonRequest('VIEWER'), 'viewer');
      req.send(onLoadCallback);
    }


    // called after data is loaded
     function onLoadCallback(data) {
     var ongoogle = "
.
 ((
$_REQUEST['product-mod'] == 'gfconnect') ?"true""false")."             
      if(data.get('viewer').getData()) {
        var viewer = data.get('viewer').getData();
        var name = viewer.getDisplayName();
        //alert('Viewer is ' + name + viewer.getId());
        if(isgooglesignin)
        {
            window.location = 'index.php?product=vbnexus&product-mod=gfconnect&do=login&loc="
.$vbnexus_request_uri."';
        }
        else if(ongoogle)
        {
            //document.getElementById('login_username').value = viewer.getDisplayName();
        }
        if(!ongoogle && !isgooglesignin)
        {
            google.friendconnect.requestSignOut();
        }
      } else {
        //alert('Viewer is anonymous');
        //google.friendconnect.renderSignInButton({ 'id': 'google-login-button', 'style': 'long' })
      }
    }
 </script>   
    "
;
}
$header '<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>' $header

//=== New plugin code for "Modify navbar template" ===
PHP Code:

global $vbulletin;
            if(!
$vbulletin->userinfo['userid'])
{
global 
$vbnexus_request_uri;
$fb_login_button =
'<!-- fbconnect --><fb:login-button onlogin="window.location=\''.$vbulletin->options[bburl].'/index.php?product=vbnexus&product-mod=facebook&do=login&loc='.$vbnexus_request_uri.'\';"></fb:login-button><!-- / fbconnect -->';


$output str_replace("<!-- / breadcrumb, login, pm info -->""<!-- / breadcrumb, login, pm info -->
<div class=\"tborder\" style=\"padding:
$stylevar[cellspacing]px; border-top-width:0px\">
<table cellpadding=\"3\" cellspacing=\"0\" border=\"0\" width=\"100%\">
  <tr align=\"right\">
    <td align=\"right\" valign=\"middle\"><span class=\"smallfont\">New! Use your <strong>Facebook, Google, AIM & Yahoo</strong> accounts to securely log into this site, <strong>click logo to login</strong></span></td>
    <td width=\"380px\" align=\"right\">
$fb_login_button &nbsp<a href='#' onclick='isgooglesignin = true; google.friendconnect.requestSignIn()'><img src=\"vbnexus/images/nexus.gif\" border=\"0\"></a>
    </td>
  </tr>
</table></div>"
$output);


if(!
$vbulletin->userinfo['userid'] AND is_browser('ie'6))
{

// Add google related stuff

$ie6_end_of_body "
<!-- Load the Google AJAX API Loader -->
    <script type=\"text/javascript\" src=\"http://www.google.com/jsapi\"></script>

    <!-- Load the Google Friend Connect javascript library. -->
    <script type=\"text/javascript\">
      google.load('friendconnect', '0.8');
    </script>

    <!-- Initialize the Google Friend Connect OpenSocial API. -->
    <script type=\"text/javascript\">
    google.friendconnect.container.setParentUrl('vbnexus/google/' /* location of rpc_relay.html and canvas.html */);
    google.friendconnect.container.initOpenSocialApi({
      site: '" 
$vbulletin->options['vbnexusconfig_google_apikey'] ."',
      onload: function(securityToken) { loadData(); }
    });
    var isgooglesignin = false;
    </script>
    "
;

$ie6_end_of_body .= "
<script type=\"text/javascript\">
    //google.friendconnect.requestSignOut();
 // load the data using open social 
    function loadData() {
    var req = opensocial.newDataRequest();
      req.add(req.newFetchPersonRequest('VIEWER'), 'viewer');
      req.send(onLoadCallback);
    }


    // called after data is loaded
     function onLoadCallback(data) {
     var ongoogle = "
.
 ((
$_REQUEST['product-mod'] == 'gfconnect') ?"true""false")."             
      if(data.get('viewer').getData()) {
        var viewer = data.get('viewer').getData();
        var name = viewer.getDisplayName();
        //alert('Viewer is ' + name + viewer.getId());
        if(isgooglesignin)
        {
            window.location = 'index.php?product=vbnexus&product-mod=gfconnect&do=login&loc="
.$vbnexus_request_uri."';
        }
        else if(ongoogle)
        {
            //document.getElementById('login_username').value = viewer.getDisplayName();
        }
        if(!ongoogle && !isgooglesignin)
        {
            google.friendconnect.requestSignOut();
        }
      } else {
        //alert('Viewer is anonymous');
        //google.friendconnect.renderSignInButton({ 'id': 'google-login-button', 'style': 'long' })
      }
    }
 </script>   
    "
;
}

$output str_replace("</body>"$ie6_end_of_body."</body>"$output);





webrats 08-28-2009 11:09 PM

i think the my problem is that facebooks template numbers are to large now

wolfstream 08-29-2009 12:10 AM

Quote:

Originally Posted by Ohiosweetheart (Post 1876051)
Something to note about this - I'm the admin on the site. I'm the only one this is happening to. All other members can publish their posts.

Try this:
using phpmyadmin, delete your user from the vbnexus table:

Code:

delete from vbnexus_nonvbuser WHERE userid='insertuseridhere'
Then associate the account again. That might solve the problem?

Ohiosweetheart 08-29-2009 11:57 AM

Quote:

Originally Posted by wolfstream (Post 1876104)
Try this:
using phpmyadmin, delete your user from the vbnexus table:

Code:

delete from vbnexus_nonvbuser WHERE userid='insertuseridhere'
Then associate the account again. That might solve the problem?

bbbrrrrr, I hate messing with the db. I'm so liable to mess it up big time. :o

I'm about ready to uninstall this mod, due to lack of support from the coder.

Veer 08-29-2009 02:33 PM

I changed the Default USERGROUP ID for non-vBulletin Users to other than 2, but it does not effect.

Any solution?

glorify 08-29-2009 02:51 PM

Damn, such a great idea. Wish it worked correctly.


All times are GMT. The time now is 02:52 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.01756 seconds
  • Memory Usage 1,922KB
  • 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
  • (5)bbcode_code_printable
  • (4)bbcode_php_printable
  • (18)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