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)
-   -   Miscellaneous Hacks - Custom SEO urls (mod_rewrite only) (https://vborg.vbsupport.ru/showthread.php?t=231568)

Skyrider 01-19-2010 12:29 PM

This is a really nice plugin, that's for sure.. But I have a small issue. As soon as I alter the links, the previous SEO URL will give a 404 / dead link. Anyway possible that the old SEO (For example, the RewriteRule ^forums/ can be "forward" to the new url without touching the whole link? So the whole link from:

www.xxx.com/forums/34-test to www.xxx.com/sections/34-test will merely forward forums to sections without touching the whole link together.

Second, is it also possible to get rid of the whole "forums"? so instead of:

www.xxx.com/forums/34-test

It will show:

www.xxx.com/34-test

Carnage 01-19-2010 01:34 PM

Quote:

if you change your url format, you may want to leave the old rewrite rules in making a copy of them instead of editing them.
From the notes, i mentioned this. Essentially if you do that (and your old rules are compatible with the new ones) vb will redirect to the correct url.

For your second question; i've not tried every possible combination of rewrites; but that one should work.

BBF 01-19-2010 02:22 PM

Quote:

Originally Posted by Carnage- (Post 1960117)
That one isn't easilly possible, the id needs to be avaliable somewhere for vb to use to query the db with.

so just leave the id and add the name
domain.com/forums/10-off-topic

or something like this.

Brandon Sheley 01-19-2010 03:05 PM

will this work with a sitemap?
if not, than I don't find it useful ?

Carnage 01-19-2010 04:51 PM

Quote:

so just leave the id and add the name
domain.com/forums/10-off-topic
Thats the default setting without installing this mod. If you have your forums installed in forums however, setting the forums prefix to be blank will probably do this. (If you get a // in the url set it to http://www.domain.com/forums instead)

Quote:

will this work with a sitemap?
if not, than I don't find it useful ?
Ive not tested it with the site map; I assume that the sitemap uses the get_friendly_url() function thou, provided it does, then this will work with the sitemap.

WxP 01-23-2010 05:14 PM

i get this error:

No thread specified. If you followed a valid link, please notify the administrator

but link is in this mode:
/showthread.php?Prshndetje-dhe-Urime/KiSs-8111

Carnage 01-23-2010 06:09 PM

@WxP

1. It seems you are using the experimental code to create links. You need to create your own rewrite rules for this to work. It's also experimental if you can't get it working on your own, you will have to wait untill I've got the code more stable and included it in the main product.

2. You don't have the friendly urls set to mod_rewrite. This mod only works if you use that setting.

3. I'm guessing here but if you put the id right at the front of the url (eg before even the forum) it /might/ work as you've got it setup. eg:
/showthread.php?8111-Prshndetje-dhe-Urime/KiSs

Carnage 01-26-2010 10:25 AM

Added a screenshot of the options provided by this mod.

WxP 01-26-2010 10:54 PM

i do all this you can check!

i put this code in .htaccess

Code:


#Credits: Christopher Riley, Vbulletin, http://www.vbulletin.com/forum/showthread.php?325798
#File was made with the best bits from all the above.

#turn on and setup rewrite engine
RewriteEngine On
Options +FollowSymLinks

### THIS IS A LITTLE EXTRA SECURITY AND CAN BE REMOVED
#Has to be at the top else it wouldn't get past the accident prevention rules

RewriteRule ^includes/(.*) index.php
RewriteRule ^vb/(.*) index.php
RewriteRule ^packages/(.*) index.php

#Prevent rewriting files; this will/should stop accidentilly hiding images/js etc from the browser
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

#these rules can't be edited by my mod, so leave them as are.
RewriteRule ^content/(.*) content.php?r=$1&%{QUERY_STRING}
RewriteRule ^widget/config/([0-9]+) widget.php?r=config/$1&%{QUERY_STRING}
RewriteRule ^list/([^/]*/)([0-9]+) list.php?r=$1$2&%{QUERY_STRING}
RewriteRule ^/threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) showthread.php?t=$1&page=$2&%{QUERY_STRING}
RewriteRule ^members/([0-9]+) member.php?t=$1&%{QUERY_STRING}
RewriteRule ^blogs/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) blog.php?u=$1&page=$2&%{QUERY_STRING}
RewriteRule ^forums/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) forumdisplay.php?f=$1&page=$2&%{QUERY_STRING}
RewriteRule ^entries/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) entry.php?b=$1&page=$2&%{QUERY_STRING}
#You can remove the # in front of one of these rules to rewrite blogs/ or blogs/index.php to blogs.php
#(sorry i've no way to automatically detect If you are likely to need this or not)
#RewriteRule ^blogs/(index.php)$ forum.php?%{QUERY_STRING}
#RewriteRule ^blogs/index.php$ forum.php?%{QUERY_STRING}


Carnage 01-27-2010 09:32 AM

RewriteRule ^/threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) showthread.php?t=$1&page=$2&%{QUERY_STRING}

should be

RewriteRule ^threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) showthread.php?t=$1&page=$2&%{QUERY_STRING}

Thats either a bug in my script, or you put a / at the beggining of your threads setting

WxP 01-27-2010 10:43 AM

1 Attachment(s)
I have trying /threads/ /threads threads/ Not working :(

Carnage 01-27-2010 03:01 PM

Code:

#Credits: Christopher Riley, Vbulletin, http://www.vbulletin.com/forum/showthread.php?325798
#File was made with the best bits from all the above.

#turn on and setup rewrite engine
RewriteEngine On
Options +FollowSymLinks

### THIS IS A LITTLE EXTRA SECURITY AND CAN BE REMOVED
#Has to be at the top else it wouldn't get past the accident prevention rules

RewriteRule ^includes/(.*) index.php
RewriteRule ^vb/(.*) index.php
RewriteRule ^packages/(.*) index.php

#Prevent rewriting files; this will/should stop accidentilly hiding images/js etc from the browser
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

#these rules can't be edited by my mod, so leave them as are.
RewriteRule ^content/(.*) content.php?r=$1&%{QUERY_STRING}
RewriteRule ^widget/config/([0-9]+) widget.php?r=config/$1&%{QUERY_STRING}
RewriteRule ^list/([^/]*/)([0-9]+) list.php?r=$1$2&%{QUERY_STRING}
RewriteRule ^threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) showthread.php?t=$1&page=$2&%{QUERY_STRING}
RewriteRule ^forums/index.php$ forum.php?%{QUERY_STRING}
#Place a # in front of the above rule and remove the # from the below rule if you want to make index.php optional in the url
#RewriteRule ^forums/(index.php)$ forum.php?%{QUERY_STRING}
RewriteRule ^members/([0-9]+) member.php?t=$1&%{QUERY_STRING}
RewriteRule ^blogs/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) blog.php?u=$1&page=$2&%{QUERY_STRING}
RewriteRule ^forums/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) forumdisplay.php?f=$1&page=$2&%{QUERY_STRING}
RewriteRule ^entries/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) entry.php?b=$1&page=$2&%{QUERY_STRING}
#You can remove the # in front of one of these rules to rewrite blogs/ or blogs/index.php to blogs.php
#(sorry i've no way to automatically detect If you are likely to need this or not)
#RewriteRule ^blogs/(index.php)$ forum.php?%{QUERY_STRING}
#RewriteRule ^blogs/index.php$ forum.php?%{QUERY_STRING}

Thats what I get out of the rewrites script when using the same settings as you have.

Bear in mind, you need to SAVE the settings before the rewrite script will give you upto date results.

WxP 01-27-2010 05:29 PM

Thank you, All installet but addons dont have chans with my script!

Plugin is on you can check www.forumivirtual.com if it work!

Carnage 01-27-2010 07:13 PM

You need to have mod_rewrite urls switched on.

Hammertime 03-03-2010 10:38 AM

If I try to view forums as guest I get a 404 Not found error with the url being www.mydomain.com/forum/forumtitle. When I log in, I can get to forum as the url changes to www.mydomain.com/forum/forum/forumtitle

Any idea what is wrong?

Carnage 03-03-2010 11:37 AM

I think this is a known bug in vbulletin; thou I thought it had been fixed...

Edit: was correct see http://www.vbulletin.com/forum/proje...?issueid=35139

If you change the forums prefix to something other than forum eg f or forums, it should work correctly.

Hammertime 03-03-2010 11:56 AM

Quote:

Originally Posted by Carnage- (Post 1995976)
I think this is a known bug in vbulletin; thou I thought it had been fixed...

Edit: was correct see http://www.vbulletin.com/forum/proje...?issueid=35139

If you change the forums prefix to something other than forum eg f or forums, it should work correctly.

Thanks for quick reply mate. Yeah I changed the prefix to f and it's working.

Is there any way to have it domain.com/forum/title rather than domain.com/forum/f/2-title? Or even a way to just remove the forum id?

Carnage 03-03-2010 03:22 PM

You can't remove the forumid - vb needs that to know which forum to show :p As for removing the 'f/' Its doable, however the more you mess around with the internals of the rewriting the more issues arise from it.

I have a really nice bit of code that rewrites threads to be /forums/forum-title/subforum-title/thread-title-threadid as elegant as it was, it required lots of little adjustments here and there to have it work properly.

3bir.com 03-04-2010 01:24 PM

can i customize it like That

::thread::
http://v.3bir.com/1/
page 2
http://v.3bir.com/1-2/

::Forums::
http://v.3bir.com/f14/
page 2
http://v.3bir.com/f14-2/

::Members::
http://v.3bir.com/m1/

Carnage 03-04-2010 08:59 PM

This mod allows for simple customisations only; as it relies on vbulletins own rewriting classes. The more you try to customise, the more likely it is that you will have knock on effects else where.

Once vbulletin is a bit more stable and its unlikely that the url classes will change too much between versions, at that point i'll look into other things that can be achieved.

3bir.com 03-04-2010 09:07 PM

Thank you Carnage

kristinprimal 03-30-2010 05:03 PM

This is working great for me up to a point, but what I'd really like now is a way to remove the forum number in the friendly URL.

i.e., right now it is showing:
http://mydomain.com/forums/forum/1234-the-forum-title

and I'd like it to just say:
http://mydomain.com/forums/forum/the-forum-title

Anyone know a way to do this? It doesn't have to be part of the product, if someone can tell me what .php file to change and where, and what to put in .htaccess, that would work for me too.

thanks very much~

Carnage 03-31-2010 02:56 PM

can't do that unfortunatly. Vb needs the number in order to identify which forum/thread is being accessed.

yellowpinky 04-03-2010 02:59 PM

Quote:

Originally Posted by Carnage- (Post 2013504)
can't do that unfortunatly. Vb needs the number in order to identify which forum/thread is being accessed.

There is a product vbSEO which changes the vb member url
from:
http://mydomain.com/members/1234-UserName

to:
http://mydomain.com/members/UserName

Getting rid of the user number.
There is underlying code already there to work without the number.
http://mydomain.com/member.php?username=UserName

What would be needed is a similar change to forum.php to process parameter
forumname=ForumName
Then comes the corner case that ForumName is not a unique key.

vbSEO handles this by moving the forumid to the other side of the slash.
from:
http://mydomain.com/forum/1234-the-forum-title

to:
http://mydomain.com/f1234/the-forum-title

yellowpinky 04-03-2010 03:19 PM

This is excellent stuff!

What/Where is necessary to change to enable..

from:
http://mydomain.com/album.php?u=1234

to:
http://mydomain.com/members/UserName/albums

Then from:
http://mydomain.com/album.php?albumid=345

to:
http://mydomain.com/members/UserName/albums/AlbumName

Finally from:
http://mydomain.com/album.php?albumi...tachmentid=456

to:
http://mydomain.com/members/UserName...56-PictureName

?

Carnage 04-04-2010 01:42 AM

The member one might be doable then, however you already identified the issue with doing the same for forum names and thread titles -> the titles are not unique.

As for moving the forumid to the other side of the slash, take a look at the code in the experimental zip i uploaded; there is at lease one example in there that shows how to do things like that. (your url would probably end up as forums/1234/forum-title thou; this can be changed but requires substantially more work)

album rewriting is not supported at all by vbulletin atm, I'm personally hoping that this is because they plan to give albums a major overhaul in 4.1 so didn't bother changing anything in 4.0

Fr4n-FX 05-03-2010 09:19 PM

i have a problem, when i write blog.xxxx.net this is the main forum, no blog.php

this is my htaccess:

Code:

RewriteRule ^threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) showthread.php?t=$1&page=$2&%{QUERY_STRING}
RewriteRule ^members/([0-9]+) member.php?u=$1&%{QUERY_STRING}
RewriteRule ^forums/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) forumdisplay.php?f=$1&page=$2&%{QUERY_STRING}
RewriteRule ^blogs/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) blog.php?u=$1&page=$2&%{QUERY_STRING}
RewriteRule ^entries/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) entry.php?b=$1&page=$2&%{QUERY_STRING}
RewriteRule ^list/([^/]*/)([0-9]+) list.php?r=$1$2&%{QUERY_STRING}
RewriteRule ^content/(.*) content.php?r=$1&%{QUERY_STRING}
RewriteRule ^widget/config/([0-9]+) widget.php?r=config/$1&%{QUERY_STRING}

RewriteCond %{HTTP_HOST} ^(www.)?forum.xxxx.net$ [NC]
RewriteCond %{HTTP_HOST} ^(www.)?blog.xxxx.net$ [NC]
RewriteRule ^/(index.php)?$ blog.php?%{QUERY_STRING}
RewriteRule ^/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) blog.php?u=$1&page=$2&%{QUERY_STRING}
RewriteRule ^forums/(index.php)?$ forum.php?%{QUERY_STRING}
RewriteRule ^blogs/(index.php)?$ blog.php?%{QUERY_STRING}

any idea?


also i need to edit this:
http://www.vbulletin.com/forum/proje...?issueid=37477

in my template, for relative path url changes :/

Carnage 05-04-2010 12:11 PM

Just a brief look at your htaccess, i think its somewhat wrong. Try this instead:

Code:


RewriteCond %{HTTP_HOST} ^(www.)?forum.xxxx.net$ [NC]
RewriteRule ^threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) showthread.php?t=$1&page=$2&%{QUERY_STRING}
RewriteRule ^members/([0-9]+) member.php?u=$1&%{QUERY_STRING}
RewriteRule ^forums/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) forumdisplay.php?f=$1&page=$2&%{QUERY_STRING}
RewriteRule ^list/([^/]*/)([0-9]+) list.php?r=$1$2&%{QUERY_STRING}
RewriteRule ^content/(.*) content.php?r=$1&%{QUERY_STRING}
RewriteRule ^widget/config/([0-9]+) widget.php?r=config/$1&%{QUERY_STRING}


RewriteCond %{HTTP_HOST} ^(www.)?blog.xxxx.net$ [NC]
RewriteRule ^/(index.php)?$ blog.php?%{QUERY_STRING}
RewriteRule ^/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?)) blog.php?u=$1&page=$2&%{QUERY_STRING}
RewriteRule ^forums/(index.php)?$ forum.php?%{QUERY_STRING}
RewriteRule ^blogs/(index.php)?$ blog.php?%{QUERY_STRING}


frmessages 05-15-2010 11:09 AM

Hi there, thanks for this add-on which seems to solve some of the mess i had with the default URLs.

I keep getting one problem and maybe it could be solved by editing rewrites or something else along this mod ?

My Unregistered user is being redirected from http://www.example.com to http://www.example.com/content/

In fact the "Home section" leads to this /content/ whereas i would like it to be clean (root).

Which basically means i have no canonical URL to share.

The only place i can see i could edit is here but it says "leave them as are":

Code:

#these rules can't be edited by my mod, so leave them as are.
RewriteRule ^content/(.*) content.php?r=$1&%{QUERY_STRING}
RewriteRule ^widget/config/([0-9]+) widget.php?r=config/$1&%{QUERY_STRING}
RewriteRule ^list/([^/]*/)([0-9]+) list.php?r=$1$2&%{QUERY_STRING}

Or maybe there is something i should add to .htaccess at root ?

Any idea ? Thanks for your attention and keep up the good work :up:

Carnage 05-15-2010 01:29 PM

Unfortunatly, I've not yet figured out a clean way of editing the urls generated by the CMS; it seems to require a huge amount of editing of php files to get anywhere.

As for your other problem; I've got that set to work on my development board, but I don't remember how :s What are the values for the settings CMS url and default page under content management?

frmessages 05-15-2010 02:06 PM

Thanks for your answer.

I have these settings :

CMS url :
/
Default page :
1-Index

CMS url in tabs :
/

And my htaccess in root looks like that (the rules for showthread, member, blog etc. work)
Code:

RewriteEngine on

# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
# RewriteBase /forum/

RewriteCond %{HTTP_HOST} !^www.example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

# Forum
RewriteRule ^voyage/.* showthread.php [QSA]
RewriteRule ^forums/.* forumdisplay.php [QSA]
RewriteRule ^membres/.* member.php [QSA]
RewriteRule ^blogs/.* blog.php [QSA]
ReWriteRule ^billet/.* entry.php [QSA]

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

# MVC
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]


frmessages 05-15-2010 02:10 PM

Thanks for your answer.

I have these settings :

CMS url :
/
Default page :
1-Index

CMS url in tabs :
/

And my htaccess in root looks like that (the rules for showthread, member, blog etc. work)
Code:

RewriteEngine on

# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
# RewriteBase /forum/

RewriteCond %{HTTP_HOST} !^www.example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

# Forum
RewriteRule ^thread/.* showthread.php [QSA]
RewriteRule ^forums/.* forumdisplay.php [QSA]
RewriteRule ^membres/.* member.php [QSA]
RewriteRule ^blogs/.* blog.php [QSA]
ReWriteRule ^billet/.* entry.php [QSA]

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

# MVC
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]


Carnage 05-16-2010 09:52 AM

My settings differ from yours in that my cms url and cms url in tabs is set blank not to /; thats the only differance I can see that might make a change.

frmessages 05-17-2010 01:40 PM

Thanks for your time... It doesn't work this way but i think i will reinstall from scratch and see what happens.

kho91 06-03-2010 12:05 PM

i changes threads to /sujet it's work, but all of old url on threads/... are don't word i have error

Carnage 06-04-2010 09:18 AM

The best way around that is to leave the old rewrite rule for threads in place.

Also, don't forget to hit installed :)

sunkapoor22 07-30-2010 11:17 PM

I am looking to accomplish this, is this possible?

Currently I'm using "Basic Friendly URLs" which show a forum at:
http://www.domain.com/forums/forumdi...44-televisions
http://www.domain.com/forums/forumdisplay.php?96-cars

I would like the above two forum categories to display as:
http://www.domain.com/forum/televisions
http://www.domain.com/forum/cars

--

And then the threads inside forum categories currently display as:
http://www.domain.com/forums/showthread.php?24-sony-tv
http://www.domain.com/forums/showthr...7-honda-accord

I would like the above two forum threads to display as:
http://www.domain.com/forums/televisions/sony-tv
http://www.domain.com/forums/cars/honda-accord

Thank you!

Carnage 08-01-2010 10:42 AM

1, you need to have the number in the url so www.d.com/forums/1-cars

2, out of the box this mod doesn't do what you want for forum threads, however if you look at the experimental code there are some examples that may do what you want.

suiyuan 09-04-2010 03:53 AM

Hi,Carnage-
Great MOD, Thank you very much.
Actually, I don't care any long tail of rewrite mod.

I hope change the
Code:

www.a.com/threads/2277- title
to
Code:

www.a.com/threads/2277/
or even better
Code:

www.a.com/threads/2277-p1.html
Code:

www.a.com/threads/2277-p2.html
Code:

www.a.com/threads/2277-p3.html
......

Same as threads, I don't care long tail of forums.
I hope change the
Code:

www.a.com/forums/2-forumname
to
Code:

www.a.com/fourms/2/
or even better
Code:

www.a.com/fourms/2-p1.html
Code:

www.a.com/fourms/2-p2.html
Code:

www.a.com/fourms/2-p3.html
........

hope get your help.

Thanks again!

mofeu 11-05-2010 11:27 PM

I have a greek site and for example I have the following link
http://www.mofeu.eu/forum/showthread.php?5911-Εμείς-πάντως-δεν-φεύγουμε-από-εδώ/page2

and I don't want to appear the text between the link . Can I use this mode?

Thanks in advance


All times are GMT. The time now is 03:57 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.01460 seconds
  • Memory Usage 1,864KB
  • 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
  • (17)bbcode_code_printable
  • (6)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