vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Integration with vBulletin - MediaWiki/vBulletin Single Sign-On (https://vborg.vbsupport.ru/showthread.php?t=191186)

Jaxel 12-23-2008 04:14 PM

User mangling token has been fixed in a previous post... in fact, you dont need to make thos edits to class_core.php.

https://vborg.vbsupport.ru/showpost....&postcount=143

BRotondi 12-23-2008 08:42 PM

Quote:

Originally Posted by Lionel (Post 1688309)
For those who can't logout from the wiki, make sure you add that line LocalSettings.php as instructed

$wgGroupPermissions['*']['createaccount'] = false;

no effect... Still not working. Bruno

Digital Jedi 12-24-2008 12:09 AM

Hrm, I must have missed that. That seems to work.

Digital Jedi 12-24-2008 12:25 AM

I have to logout two times, either twice from the wiki or once from the forum and again from the wiki to be truly logged out from the wiki. Not a big deal for my forum, but good to know in any case.

Quote:

Originally Posted by Lionel (Post 1688309)
For those who can't logout from the wiki, make sure you add that line LocalSettings.php as instructed

$wgGroupPermissions['*']['createaccount'] = false;

The instructions say that's to prevent users from registering on the wiki instead of the forum.

kapoor22 12-25-2008 05:13 AM

Quote:

Originally Posted by Dexter_kcd (Post 1690874)
The specs above say it was tested on 3.6.9, and I don't think there was anything significantly changed in the user authorization between 3.6.8 and 3.6.9. I would speculate that it would work for you.

Dexter...

Thanks for your input Dexter. I gathered the courage to install the wiki with this SSO hack.

NoeJeko,

Thank for the excellent plug-in. Here is my story -

I was able to install and make it to work on vb v3.6.8 with MediaWiki v1.12.0, however, the following 4 lines of errror message continues to show up on all th pages of MediaWiki -

__________________________________________
Notice: Use of undefined constant VB_SYSTEM_PATH - assumed 'VB_SYSTEM_PATH' in $wikihome/LocalSettings.php on line 26
Notice: Constant CWD already defined in $forumhome/global.php on line 16
Notice: Undefined index: HTTPS in $forumhome/includes/class_core.php on line 1594
Notice: Undefined index: HTTPS in $forumhome/includes/class_core.php on line 1594
Notice: Undefined index: HTTP_REFERER in $forumhome/includes/class_core.php on line 1621
__________________________________________
For the sake of privacy I have modified the absolute paths with the env varibales $forumhome and $wikihome
__________________________________________


The cookie appear to be recognized after the forum user has logged in the forum. But the user is not able to directly login from MediaWiki. If you would like, I could PM you the link to the wiki on the site. You help is very much appreciated.

Thanks again!

kapoor22 12-25-2008 02:20 PM

Quote:

Originally Posted by kapoor22 (Post 1693294)
Thanks for your input Dexter. I gathered the courage to install the wiki with this SSO hack.

NoeJeko,

Thank for the excellent plug-in. Here is my story -

I was able to install and make it to work on vb v3.6.8 with MediaWiki v1.12.0, however, the following 4 lines of errror message continues to show up on all th pages of MediaWiki -

__________________________________________
Notice: Use of undefined constant VB_SYSTEM_PATH - assumed 'VB_SYSTEM_PATH' in $wikihome/LocalSettings.php on line 26
Notice: Constant CWD already defined in $forumhome/global.php on line 16
Notice: Undefined index: HTTPS in $forumhome/includes/class_core.php on line 1594
Notice: Undefined index: HTTPS in $forumhome/includes/class_core.php on line 1594
Notice: Undefined index: HTTP_REFERER in $forumhome/includes/class_core.php on line 1621
__________________________________________
For the sake of privacy I have modified the absolute paths with the env varibales $forumhome and $wikihome
__________________________________________


The cookie appear to be recognized after the forum user has logged in the forum. But the user is not able to directly login from MediaWiki. If you would like, I could PM you the link to the wiki on the site. You help is very much appreciated.

Thanks again!

I modified error_reporting in php.ini file to get ride of the error notifications showing up on the wiki page -

error_reporting = E_ALL & ~E_NOTICE

But the wiki login redirection back to wiki page is still not working. I could not find 'create account' link which will take the new user to vBulletin forum registration page.

Your input is very much appreciated.

Thanks!

kapoor22 12-25-2008 02:21 PM

BTW, I initially tried this plug-in with MediaWiki v1.13.3 but that attempt was not successful. The I tried with Mediawiki v1.12.0 and it works like a charm, other than the 'log-in redirection' issue and 'create account' redirection to forum registration page. Still trying to resolve these issues in test environment.

.

kapoor22 12-25-2008 05:26 PM

Here is one possible solution which seem to work for me to fix the two issues I reported earlier-

Open $wikihome/includes/templates/Userlogin.php and hard code the complete URL of the website as shown below for the SSO logon and for lost password page. Somehow [$bburl] is not providing the complete URL, not sure why.

__________________________________________________ ________________
<form name="userlogin" method="post" action="http://$COMPLETE_WEBSITE_URL/forum/login.php?url=/wiki/index.php/Main_Page">

<input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="<?php $this->msg('login') ?>" />
<br /><a href="http://$COMPLETE_WEBSITE_URL/forum/login.php?do=lostpw">Forgot password?</a>
__________________________________________________ ________________

That's it. Thanks NoeJeko, for an excellent plug-in. This will make my 35000 users happy.

.

NoeJeko 12-25-2008 09:43 PM

Hey guys - sorry for not replying sooner - I've been in Germany and for some reason I was not receiving notifications from this thread. I'll do my best to research these issues and provide a fix.

SARA75 12-25-2008 09:58 PM

Quote:

Originally Posted by obsidian (Post 1673833)
- Install media Wiki
- Edit the Localsettings file with

define( VB_SYSTEM_PATH, '/var/www/html/forum' );
require_once( "$IP/includes/AuthPlugin_vBSSO.php" );
[S]$wgGroupPermissions['*']['createaccount'] = false;[/S]

- Set the VB path in the localsettings file and then uploaded it.
- Edited the AuthPlugin_vBSSO.php file from:
$wgHooks[AutoAuthenticate ][] = 'vBSSOAutoAuth';
to
$wgHooks['UserLoadFromSession'][] = 'vBSSOAutoAuth';
- uploaded the files in the upload directory

Quote:

Originally Posted by Jaxel (Post 1673281)
In wiki/includes/User.php find:
PHP Code:

define'EDIT_TOKEN_SUFFIX''+\\' ); 

Replace with:
PHP Code:

define'EDIT_TOKEN_SUFFIX''+#+' ); 


Following these steps but changing
$wgGroupPermissions['*']['createaccount'] = true;
to
$wgGroupPermissions['*']['createaccount'] = false;
in wiki/includes/DefaultSettings.php (I don't know why, but on LocalSettings doesn't works for me)

I get it finally works correctly :D
MediaWiki 1.13.3
VB 3.7.4PL1

Thanks :up:

kapoor22 12-26-2008 09:15 PM

Quote:

Originally Posted by NoeJeko (Post 1693646)
Hey guys - sorry for not replying sooner - I've been in Germany and for some reason I was not receiving notifications from this thread. I'll do my best to research these issues and provide a fix.

Thanks NoeJeko, everything is now working fine with vBulletin v3.6.8. With the help of your plug-in we were able to promote Wiki into production environment today. Thanks for the excellent work. I have nominated this plug-in for MOTM.

Also, BuddyPress released their latest version on 15th December. Apparently, that's the next big thing for social-networking software. Any chance you'd be interested to develop similar single sign on plug-in for vBulletin-BuddyPress?

Thanks again!


.

nwingate 12-28-2008 03:08 AM

Oops, wrong thread. Sorry.

CompiledMonkey 12-29-2008 07:01 PM

Has anyone gotten this to wrap inside of vBadvanced?

tylneyt 12-30-2008 09:51 AM

Failed to install / work

vBulletin 3.7.3
MediaWiki 1.13.3

array errors in the vba_cmps_include_template.php

seems to be a major drama with the line
require_once( "$IP/includes/AuthPlugin_vBSSO.php" );
as when this is commented out the wiki shows up just can't log in... (but at least ya can see the wiki!)

but yeah I'm no coder so I dunno why re following all the docs (and making sure the edits were correct etc) it's not working

Digital Jedi 12-30-2008 04:16 PM

That error is a vBAdvanced error. Are you using vBa for anything to do with the Wiki?

tylneyt 12-30-2008 09:32 PM

hmm had it as an iframe in an ajax tab that was setup as a vba page.
I can remove that and try again today some time.

Q: Even though I tried hitting the /wiki url direct was still throwing an error would it do that regardless of trying to view it via a vba setup or not?
(What I mean is that if I view via vba through the forums I'd expect an error, but hitting the wiki url directly should bipass any vba and show the wiki directly how ever that is still throwing an error)

Digital Jedi 12-30-2008 10:17 PM

I would think you shouldn't be getting that error if your not looking at it through vBa. Sounds like vBa is conflicting another way. Your wiki is not in your forum root, right? It's outside? I have vBa, but I chose to put the Wiki in the forum root and I haven't had any conflicts like that. I think your problem might be the directory.

tylneyt 12-31-2008 08:37 AM

vBulletin 3.7.3
MediaWiki 1.13.3
- I upgraded vba to 3.1.0
- Then moved directory into /forums/ (so it's now accessible via /forums/wiki ) and edited the LocalSettings.php to reflect this change.

I'm still getting the following error
Code:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /home/.scorn/PRIVATEDIRS/forums/includes/vba_cmps_include_template.php on line 19
same error for lines 42, 50 , 621 (and Argument #2 on 621)
and
Code:

Warning: Invalid argument supplied for foreach() in    /includes/init.php(293) : eval()'d code on line 122
the .scorn is a hidden folder I assume as it's never been needed anywhere re linking back to the hosting. the PRIVATEDIRS I've typed for security reasons here.

I have also tried the following suggestions re the version of mediawiki
Quote:

Originally Posted by obsidian View Post

- Install media Wiki
- Edit the Localsettings file with

define( VB_SYSTEM_PATH, '/var/www/html/forum' );
require_once( "$IP/includes/AuthPlugin_vBSSO.php" );
$wgGroupPermissions['*']['createaccount'] = false;

- Set the VB path in the localsettings file and then uploaded it.
- Edited the AuthPlugin_vBSSO.php file from:
$wgHooks[AutoAuthenticate ][] = 'vBSSOAutoAuth';
to
$wgHooks['UserLoadFromSession'][] = 'vBSSOAutoAuth';
- uploaded the files in the upload directory

Originally Posted by Jaxel View Post

In wiki/includes/User.php find:
PHP Code:
define( 'EDIT_TOKEN_SUFFIX', '+\\' );
Replace with:
PHP Code:
define( 'EDIT_TOKEN_SUFFIX', '+#+' );

Following these steps but changing
$wgGroupPermissions['*']['createaccount'] = true;
to
$wgGroupPermissions['*']['createaccount'] = false;
in wiki/includes/DefaultSettings.php (I don't know why, but on LocalSettings doesn't works for me)

I get it finally works correctly
MediaWiki 1.13.3
VB 3.7.4PL1
If I disable the product for vba all works well and the logins are shared fine, but turn it back on and it won't even display the wiki.

pete_brady 12-31-2008 12:13 PM

is there a (simple) migration path from nuhit's vbWiki Pro to this?

currently running vB 3.8RC2 with mediawiki 1.3

Dexter_kcd 01-04-2009 05:28 AM

One more thing to throw onto your plate....

I was speaking with the server administrator at my webhost, and he mentioned that this mod seems to be generating a PHP error every time a user access a page on the wiki:

Quote:

Constant CWD already defined in /home/httpd/vhosts/**sitename**.com/httpdocs/forum/global.php on line 16

PHP Notice: Use of undefined constant VB_SYSTEM_PATH - assumed 'VB_SYSTEM_PATH' in home/httpd/vhosts/**sitename**.com/httpdocs/forum/wiki/LocalSettings.php on line 28

Apparently the server PHP log is filled with thousands of those. He believes it has something to do with how the VB_SYSTEM_PATH constant is defined.

Dexter...

GriZzm0 01-08-2009 02:59 PM

Has anyone tried it with vB 3.8?

Edit: Looks like it's working the same under 3.8 (the same as in minor errors ;)).

Varsh 01-08-2009 05:44 PM

It works perfectly with vB3.8:
Quote:

Originally Posted by Varsh (Post 1680303)
Well I tried installing this and looked throughout the thread. I'm bemused on how you guys have managed to get it to work. I've installed it exactly as the instructions asked and yet, despite changing the forum path in localsettings.php, it seems that it's trying to find the file from the wiki path. This is what's happening.
  1. Files uploaded
  2. localsettings.php set to:
    define( VB_SYSTEM_PATH, '/home/varsh/public_html/forums' );
    require_once( "$IP/includes/AuthPlugin_vBSSO.php" );
  3. Wiki's user.php set to '+#+'
  4. plugin installed and URL set to above link
So what exactly have I done wrong? I must've missed something.

vBulletin 3.8 RC1 and the latest MediaWiki 1.13.2.

edit: I changed require_once( "$IP/includes/AuthPlugin_vBSSO.php" ); to require_once( "/home/varsh/public_html/forums/includes/AuthPlugin_vBSSO.php" ); and it worked fine, hope this doesn't mess anything up though.


NoeJeko 01-09-2009 04:32 PM

All,

I'll be updating my site to MW 1.13 and vB 3.8 near the end of January. At this time I'll have this plugin updated to work with vB 3.6.9-3.8.0 and MW 1.12-1.13. Thanks for all your patience and thanks to the users that have posted workarounds. I'll be sure to credit where it's due if I use your suggestions.

Also, to the vBa users - this is not designed to be wrapped within vB Advanced in any form. If you get it to work that's great, but I cannot support vB Advanced issues because it's not designed to work that way. Thanks for understanding.

tylneyt 01-09-2009 10:42 PM

Hey Noe
That's kewl re VBA but I'm not trying to wrap it per say, I just want to share the logins, the wiki it self I can store / display where ever via a link to a fully fresh page nps.
The problem I was having is that due to VBA being installed as a product shut the hack down completely regardless of if it was being used as a vba page etc

So long as the hack `ignores' vba and runs so we can put the wiki up `outside' the vb forums (ie as a full page of content not embedded in the forums) that'd be great.

As it stands just having vba installed stops the hack from working period.

Varsh 01-09-2009 11:01 PM

That's not true at all, my site has always been using vBA. Yes I have the wiki set to a different URL to the website, but having vBA installed does not stop this hack from working, if it's working for me but doing what I showed in my previous post, then it'll work for anyone. It's very easy to do and requires only 2 MediaWiki files to be edited, that's it.

You shouldn't need to embed the Wiki within vBA, although I can see the need, it would mean that queries would go through the roof.

Shawn385 01-10-2009 04:48 AM

Hey everyone ! So I had a small question...I installed everything as mentioned. All paths are correct, all files edited etc. When I go to the wiki and click login, I input my VB user name and password, it takes me to the vBulletin "Login Successfull" page and then returns me to the WIKI main page...but on that page it tells me I am NOT logged in.

Any ideas ? Thanks so much !

Digital Jedi 01-10-2009 08:38 AM

Quote:

Originally Posted by Shawn385 (Post 1706992)
Hey everyone ! So I had a small question...I installed everything as mentioned. All paths are correct, all files edited etc. When I go to the wiki and click login, I input my VB user name and password, it takes me to the vBulletin "Login Successfull" page and then returns me to the WIKI main page...but on that page it tells me I am NOT logged in.

Any ideas ? Thanks so much !

This seemed to have done the trick for me.

https://vborg.vbsupport.ru/showthread.php?p=1673281

oninuva 01-10-2009 10:10 PM

Quote:

I changed require_once( "$IP/includes/AuthPlugin_vBSSO.php" ); to require_once( "/home/varsh/public_html/forums/includes/AuthPlugin_vBSSO.php" ); and it worked fine, hope this doesn't mess anything up though.

Fatal error: Call to a member function getID() on a non-object in /home/sitename/public_html/wiki/includes/AuthPlugin_vBSSO.php on line 315

One of my users are getting this error. It works for myself but it does not work for them, any help?

metalguy639 01-11-2009 12:41 AM

Quote:

Originally Posted by Varsh (Post 1706843)
That's not true at all, my site has always been using vBA. Yes I have the wiki set to a different URL to the website, but having vBA installed does not stop this hack from working, if it's working for me but doing what I showed in my previous post, then it'll work for anyone. It's very easy to do and requires only 2 MediaWiki files to be edited, that's it.

You shouldn't need to embed the Wiki within vBA, although I can see the need, it would mean that queries would go through the roof.

Great! then maybe you can enlighten me on why I have the same errors as the other guy? I'm using vBa CMPS 3.10 & vB 3.8. I've done all that this thread has said to do and I get these errors...

Code:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/vba_cmps_include_template.php on line 42

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/vba_cmps_include_template.php on line 50

Warning: Invalid argument supplied for foreach() in [path]/includes/init.php(298) : eval()'d code on line 96

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/vba_cmps_include_top.php on line 621

Warning: array_merge() [function.array-merge]: Argument #2 is not an array in [path]/includes/vba_cmps_include_top.php on line 621

Warning: include(./includes/config.php) [function.include]: failed to open stream: No such file or directory in [path]/global.php(609) : eval()'d code on line 1196

Warning: include() [function.include]: Failed opening './includes/config.php' for inclusion (include_path='[path]/metalwiki:[path]/metalwiki/includes:[path]/metalwiki/languages:.:/usr/local/php5/lib/php') in [path]/global.php(609) : eval()'d code on line 1196

Warning: require_once(./donationsystem/functions/donation.php) [function.require-once]: failed to open stream: No such file or directory in [path]/global.php(609) : eval()'d code on line 1197

Fatal error: require_once() [function.require]: Failed opening required './donationsystem/functions/donation.php' (include_path='/home/content/M/e/t/MetalPrincetmlss6/h/metalwiki:/home/content/M/e/t/MetalPrincess6/html/metalwiki/includes:/home/content/M/e/t/MetalPrincess6/html/metalwiki/languages:.:/usr/local/php5/lib/php') in /home/content/M/e/t/MetalPrincess6/html/global.php(609) : eval()'d code on line 1197

Seems like I most likely will need another answer to having articles on my site. I need something that works for one adn something that members can put their own articles up on.

metalguy639 01-11-2009 01:28 AM

nvm Varsh fixed it myself. My problem was a two part problem. I'm using php5 on my server which made everything kinda act up a bit. I was also using the Donation hack called AWCoding- Donation System LITE which was causing a problem with this hack in some way.

I will put here how I fixed it.

Step One:

If you are using php5 you will need to do the following in your vba_cmps_include_template.php & vba_cmps_include_top.php files. You need to change some code to make vBAdvanced CMPS work with php5. I found a how-to here: https://vborg.vbsupport.ru/showthread.php?t=125302

Step Two:

Disabled the AWCoding- Donation System LITE hack in my admincp.

Now all works.

Shawn385 01-11-2009 08:22 AM

Strange, I made the neccessary adjustments as mentioned in that post eg :

//$wgHooks['UserLogoutComplete'][] = 'QISSingleSignOnUserLogout';
$wgHooks['UserLoadFromSession'][] = 'vBSSOAutoAuth';
$wgHooks['UserLoginForm'][] = 'vBLoginForm';
$wgHooks['PersonalUrls'][] = 'set_personal_urls';

The strangest thing is...I did login and Wiki did show my name as being logged in, and then today when I opened it back up I couldn't log back in again, neiother can anyone else.

Above is the snipppet from the AuthPlugin_vBSSO.php

EDIT :

So I downgraded to MW 1.12.3 reinstalled this plugin...still getting the same thing, I login just fine, but WIKI doesn't show me as logged in. And I changed UserLoadFromSession back to AutoAuthenticate...

oninuva 01-11-2009 10:05 PM

So how do I fix this?

Fatal error: Call to a member function getID() on a non-object in /home/sitename/public_html/wiki/includes/AuthPlugin_vBSSO.php on line 315

Varsh 01-11-2009 10:51 PM

Did you take a look at how I did it all? If I recall I got that till I changed a few settings suggested before. My fix is a few posts back.

Digital Jedi 01-11-2009 11:57 PM

Quote:

Originally Posted by Shawn385 (Post 1708348)
Strange, I made the neccessary adjustments as mentioned in that post eg :

//$wgHooks['UserLogoutComplete'][] = 'QISSingleSignOnUserLogout';
$wgHooks['UserLoadFromSession'][] = 'vBSSOAutoAuth';
$wgHooks['UserLoginForm'][] = 'vBLoginForm';
$wgHooks['PersonalUrls'][] = 'set_personal_urls';

The strangest thing is...I did login and Wiki did show my name as being logged in, and then today when I opened it back up I couldn't log back in again, neiother can anyone else.

Above is the snipppet from the AuthPlugin_vBSSO.php

EDIT :

So I downgraded to MW 1.12.3 reinstalled this plugin...still getting the same thing, I login just fine, but WIKI doesn't show me as logged in. And I changed UserLoadFromSession back to AutoAuthenticate...

I'll post this again, but this is what fixed this in my case. Note that I did not "downgrade" as you did.

https://vborg.vbsupport.ru/showthrea...81#post1673281

tylneyt 01-12-2009 07:52 AM

metalguy639 you are my hero
Thank you

oninuva 01-12-2009 05:45 PM

Quote:

Originally Posted by Varsh (Post 1709082)
Did you take a look at how I did it all? If I recall I got that till I changed a few settings suggested before. My fix is a few posts back.

Yes I did try doing those changes, still have error, I tried replacing a file with the file the posted on page 8 saying that it fixed it giving him a new AuthPlugin file.

After I replaced the file with the fix on post 8, he received this error;

Quote:

Database error

A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:
(SQL query hidden)
from within function "User::addToDatabase". MySQL returned error "1062: Duplicate entry 'Sourc[e]x' for key 2 (localhost)".
I would look at the databases but I dunno which one it is referring to. He only gets this error when he tries to login, so he can browse the wiki if he logs out.

petchat 01-12-2009 06:53 PM

Quote:

Originally Posted by Digital Jedi (Post 1709142)

Working great on 3.8 using this method!

Cheers DJ :)

metalguy639 01-13-2009 12:40 AM

Quote:

Originally Posted by tylneyt (Post 1709444)
metalguy639 you are my hero
Thank you

no prob man.

raisun 01-13-2009 09:51 PM

I've got this mostly working on VB 3.7.3 / MW 13.3 as long as I disable another pluggin that I use. When I turn the other plugin on (GARS), I cannot get to the wiki and get this error:

Code:

Warning: require_once(./geek/gars/includes/gars_ignition.php) [function.require-once]: failed to open stream: No such file or directory in [path]/global.php(360) : eval()'d code on line 41

Fatal error: require_once() [function.require]: Failed opening required './geek/gars/includes/gars_ignition.php' (include_path='/home/mouseinf/public_html/info/wiki:/home/mouseinf/public_html/info/wiki/includes:/home/mouseinf/public_html/info/wiki/languages:.:/usr/lib/php:/usr/local/lib/php') in /home/mouseinf/public_html/forums/global.php(360) : eval()'d code on line 41

From what I can tell, it looks like its looking in the wiki's include path for this file. So, I tried adding $VB_SYSTEM_PATH to the path in LocalSettings.php, but that doesn't seem to fix it. Any thoughts?

Thanks a lot!!

Varsh 01-14-2009 01:26 AM

Change require_once( "$IP/includes/AuthPlugin_vBSSO.php" ); to require_once( "/home/mouseinf/public_html/forums/includes/AuthPlugin_vBSSO.php" ); in your LocalSettings.php file.


All times are GMT. The time now is 10:05 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.01814 seconds
  • Memory Usage 1,893KB
  • 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
  • (4)bbcode_code_printable
  • (2)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