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)
-   -   Forum Display Enhancements - vB Enterprise Translator (https://vborg.vbsupport.ru/showthread.php?t=220886)

imported_silkroad 08-18-2009 02:58 PM

Quote:

Originally Posted by yahoooh (Post 1869818)
it should be not javascript popup because may affect the crawler of se
it should be just text under flags as notice this page translated by google and may not be fully understood
something like that
and also optionally

That is what I thought.

Good suggestion. Cheers.

woffie 08-18-2009 03:00 PM

I found the issue with mine. You have to set a default language in the mod before it will work. Guess I missed that step. Working great, thanks!

NLP-er 08-18-2009 03:02 PM

Quote:

Originally Posted by Aclikyano (Post 1869432)
// parse PHP include ##################
($hook = vBulletinHook::fetch_hook('global_complete')) ? eval($hook) : false;


AFTER # signs starts line 5737
did what you said still got the errors...

LOL I think I know what it is. Probably you uploaded new files, bud didn't importend new product file :D I just checked and in previous version this method has less parameters. So made full update - new files on FTP and import new product file. Good lock ;):up:

woffie 08-18-2009 03:09 PM

A great feature for this would be the ability for something that is posted into another language (other than the default) to be automatically translated into the default language.

NLP-er 08-18-2009 03:12 PM

Quote:

Originally Posted by TheLastSuperman (Post 1869536)
sorry off on a tangent as usual lol..

Hmm let's enable db caching and copy/paste the error hold tight...

Code:

Database error in vBulletin 3.8.4:

Invalid SQL:
SELECT cache.originaltext as originaltext, cache.translated as translated FROM vbenterprisetranslator_cache_medium help, vbenterprisetranslator_cache_medium cache WHERE help.originaltext='2142 Tournament C7: Aug 23rd, Battle #5 Map Downloads.' AND help.tl='sq' AND cache.serie=help.serie;

MySQL Error  : Table 'dbnamewashere.vbenterprisetranslator_cache_medium' doesn't exist
Error Number  : 1146
Request Date  : Monday, August 17th 2009 @ 09:15:19 PM
Error Date    : Monday, August 17th 2009 @ 09:15:20 PM
Script        : http://www.tournamentgamingworld.com/online/index.php?language=sq
Referrer      : http://www.tournamentgamingworld.com/online/index.php
IP Address    : hey hey now :p
Username      : [TGW]GA|TheLastSuperman
Classname    : vB_Database
MySQL Version : 4.1.22-max-log

Ok so I think it might be this conflicting w/ the cache:

https://vborg.vbsupport.ru/showthread.php?t=219874

As some of the originaltext in the error above is code I just added to that in the forumhome template to be one of the rotating content seen below the normal navbar location.

I'll try this in the morning, wife is home so time to get off computer :p

<!--START vBET NOT TRANSLATED AREA--> and <!--END vBET NOT TRANSLATED AREA-->
_____________________

The Tabs mod... I used images instead of the standard CSS but the tabs mod is here:

https://vborg.vbsupport.ru/showthread.php?t=175687

The forum I'm using this on is here:
http://www.tournamentgamingworld.com

Thanks for ANY help you can provide.

S-MAN

About error - you don't have medium cache table. Please set it manually (have no idea why it didn't create during installation - maybe some mysql version issues) - and in case of errors during creation please give me error measage.
Code:

CREATE TABLE " . TABLE_PREFIX . "vbenterprisetranslator_cache_medium (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
serie BIGINT(14) UNSIGNED,
dateline int(10) UNSIGNED default 0,
tl VARCHAR(5),
originaltext VARCHAR(328),
translated VARCHAR(1000),
UNIQUE (originaltext, tl),
INDEX(serie)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin

Change " . TABLE_PREFIX . " to your table prefix if use any.

About translaion of images... :D - just go back to styles :)

NLP-er 08-18-2009 03:27 PM

Quote:

Originally Posted by T2x (Post 1869543)
Can you tell me what version of apache you are running?

Edit: I have edited my above post with modified code for vbseo.php, this should fix any issues you have due to different server configuration :]

Still have:

/a/

Invalid Forum specified. If you followed a valid link, please notify the administrator

:/

About server - in admin CP maintenance tells me:
Server API UltraCGI/1.0 for IdeaWebServer

NLP-er 08-18-2009 03:37 PM

Quote:

Originally Posted by imported_silkroad (Post 1869639)
FYI, we installed both versions of the vBSEO updated code (not the 301 code), just for testing, and neither worked for us.

We are running:

Code:

# apache2 -v
Server version: Apache/2.2.8 (Ubuntu)

Edit: Logfiles show 301 redirects (but does not redirect to the translated pages correctly...)

Example from logs:

Code:

.... /es/index.php HTTP/1.1" 301 - "-" "Opera/9.64 (Macintosh; PPC Mac OS X; U; en) Presto/2.1.1"

Note: We are still running the old "hl" code, so I changed "language" to "hl" in the vBSEO code ( _GET['language'] to _GET['hl'] )

Please reply via PM, if you like, since we are running the old "hl" code..... but I am not sure "it matters" since the logfile show the 301 redirects as above.

You can skip from hl to language - in first post you have nice and working redirect which will automatically move all hl to language :)

bollie 08-18-2009 03:52 PM

Quote:

Originally Posted by NLP-er (Post 1867859)
My paypal account: michal.podbielski@wp.pl

Great thanks! :)

Done ;)

NLP-er 08-18-2009 04:07 PM

Quote:

Originally Posted by imported_silkroad (Post 1869750)
NLP-er,

Here is another TO-DO on the feature request list, regarding:



In the future, it might be good to have a simple JavaScript Popup (optional of course) that pops up when a user from a translated page referral arrives that says, in effect:

.

(or something like that)

Not sure how that would effect search engines.... maybe it would not be good in that case!

Added in TODO - will be configurable of course :)

NLP-er 08-18-2009 04:21 PM

Quote:

Originally Posted by woffie (Post 1869792)
Installed on my test forum and worked perfectly. Installed on my real forum and I get a blank page on the index. No links or text visible, just the graphics. It is conflicting with something, just not sure what. Had to uninstall.

In Admin CP. Give me link to your forum I will help :)

NLP-er 08-18-2009 04:26 PM

Quote:

Originally Posted by yahoooh (Post 1869818)
it should be not javascript popup because may affect the crawler of se
it should be just text under flags as notice this page translated by google and may not be fully understood
something like that
and also optionally

This you can do right now - by editing flags title :)

NLP-er 08-18-2009 04:33 PM

Quote:

Originally Posted by imported_silkroad (Post 1869835)
That is what I thought.

Good suggestion. Cheers.

Put off from TODO list :)

NLP-er 08-18-2009 04:34 PM

Quote:

Originally Posted by woffie (Post 1869837)
I found the issue with mine. You have to set a default language in the mod before it will work. Guess I missed that step. Working great, thanks!

I'm really glad :D Have a good fun :):up:

NLP-er 08-18-2009 04:37 PM

Quote:

Originally Posted by woffie (Post 1869845)
A great feature for this would be the ability for something that is posted into another language (other than the default) to be automatically translated into the default language.

WOW! It is really a great idea :D:D:D Put in TODO list. I will do wathever it takes to made it. Not sure when (can be problematic), but sure will!!!

You are great :D

THANKS!!!

NLP-er 08-18-2009 05:01 PM

Quote:

Originally Posted by bollie (Post 1869882)
Done ;)

And great thanks again :D:up:

Lynne 08-18-2009 05:02 PM

I'm gonna clean this thread right now, so you guys can stop it.

Personal issues should be discussed via PM, not in the middle of a thread. This is an official warning to you guys.

andie215 08-18-2009 05:16 PM

Well i think its great although some of the translations are a bit straange so some of my non english speaking members are saying.
Just one thing my Swedish member is saying that the swedish flag is wrong so ive replaced it with this one
https://vborg.vbsupport.ru/
feel free to copy it :)

NLP-er 08-18-2009 05:44 PM

Quote:

Originally Posted by andie215 (Post 1869955)
Well i think its great although some of the translations are a bit straange so some of my non english speaking members are saying.
Just one thing my Swedish member is saying that the swedish flag is wrong so ive replaced it with this one
http://www.ukmantisforums.co.uk/sv.gif
feel free to copy it :)

Thanks - it will be included in next release :)

T2x 08-18-2009 05:57 PM

I have updated the code in my old post for vbseo.php as well as the 301 redirects.

This should hopefully finally fix any issues people were having :D


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

imported_silkroad 08-18-2009 06:19 PM

Quote:

Originally Posted by T2x (Post 1869977)
I have updated the code in my old post for vbseo.php as well as the 301 redirects.

This should hopefully finally fix any issues people were having :D


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

Wow! Thanks!

I'll try it off-peak and report back :D

NLP-er 08-18-2009 06:31 PM

Quote:

Originally Posted by T2x (Post 1869977)
I have updated the code in my old post for vbseo.php as well as the 301 redirects.

This should hopefully finally fix any issues people were having :D


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

Still same problem on my side :/

.htaccess has possibility to made internal redirect, I was trying it but without success. Maybe you will find working solution in this area. Such internal redirect should work without any vbseo.php changes, because to vbseo will come link with language param. This is idea - as I wtore it don't works for me, but maybe I miss somesthing. This is this not working rule:
Code:

RewriteCond %{REQUEST_URI} ^/(..|zh-TW|zh-CN)/(.*)
RewriteRule ^(.*)$ /%2\?language=%1


TheLastSuperman 08-18-2009 06:35 PM

Quote:

Originally Posted by NLP-er (Post 1869847)
About error - you don't have medium cache table. Please set it manually (have no idea why it didn't create during installation - maybe some mysql version issues) - and in case of errors during creation please give me error measage.
Code:

CREATE TABLE " . TABLE_PREFIX . "vbenterprisetranslator_cache_medium (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
serie BIGINT(14) UNSIGNED,
dateline int(10) UNSIGNED default 0,
tl VARCHAR(5),
originaltext VARCHAR(328),
translated VARCHAR(1000),
UNIQUE (originaltext, tl),
INDEX(serie)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin

Change " . TABLE_PREFIX . " to your table prefix if use any.

About translaion of images... :D - just go back to styles :)

I had a similar error just like this: http://www.mydigitallife.info/2007/0...-a-key-length/

I used this and it worked, turned on cache yet when you navigate to another page after translation is does not stick? Long story short no DB error when cache is enabled like I used to have but it will not hold the translation.

Code:

CREATE TABLE vbenterprisetranslator_cache_medium (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
serie BIGINT(14) UNSIGNED,
dateline int(10) UNSIGNED default 0,
tl VARCHAR(5),
originaltext VARCHAR(255),
translated VARCHAR(255),
UNIQUE (originaltext, tl),
INDEX(serie)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin

And images? Not sure about that, it was that other mod I used err well code actually but I added in the do not translate tags and no effect.

NLP-er 08-18-2009 07:25 PM

Quote:

Originally Posted by TheLastSuperman (Post 1870006)
I had a similar error just like this: http://www.mydigitallife.info/2007/0...-a-key-length/

I used this and it worked, turned on cache yet when you navigate to another page after translation is does not stick? Long story short no DB error when cache is enabled like I used to have but it will not hold the translation.

Code:

CREATE TABLE vbenterprisetranslator_cache_medium (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
serie BIGINT(14) UNSIGNED,
dateline int(10) UNSIGNED default 0,
tl VARCHAR(5),
originaltext VARCHAR(255),
translated VARCHAR(255),
UNIQUE (originaltext, tl),
INDEX(serie)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin

And images? Not sure about that, it was that other mod I used err well code actually but I added in the do not translate tags and no effect.

About DB - the reason is differences in mySQL versions. On my version varchar(328) is not automatically changed to blob/text - on yours it is.

Please let me know which version do you have?

You made wrong changes in SQL, please drop your table and use this one (corection will be included in next release):
Code:

CREATE TABLE vbenterprisetranslator_cache_medium (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
serie BIGINT(14) UNSIGNED,
dateline int(10) UNSIGNED default 0,
tl VARCHAR(5),
originaltext VARCHAR(328),
translated VARCHAR(1000),
UNIQUE (originaltext(328), tl),
INDEX(serie)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin

About holding translation - turn on tracking in options.

Not understood about images.

T2x 08-18-2009 09:15 PM

Quote:

Originally Posted by NLP-er (Post 1870002)
Still same problem on my side :/

.htaccess has possibility to made internal redirect, I was trying it but without success. Maybe you will find working solution in this area. Such internal redirect should work without any vbseo.php changes, because to vbseo will come link with language param. This is idea - as I wtore it don't works for me, but maybe I miss somesthing. This is this not working rule:
Code:

RewriteCond %{REQUEST_URI} ^/(..|zh-TW|zh-CN)/(.*)
RewriteRule ^(.*)$ /%2\?language=%1



I have already tried doing it via rewrite rules in .htaccess but it will not work with vBSEO


Paste me your ENTIRE .htaccess so I can see if there is a problem with it maybe

Aclikyano 08-18-2009 10:33 PM

Quote:

Originally Posted by NLP-er (Post 1869839)
LOL I think I know what it is. Probably you uploaded new files, bud didn't importend new product file :D I just checked and in previous version this method has less parameters. So made full update - new files on FTP and import new product file. Good lock ;):up:

well i noticed i still had the old XML on DISABLED on admincp but i still uploaded the new xml and i thought i put allow overwrite but ill let u kno in a min thanks! :D

Aclikyano 08-18-2009 10:57 PM

lol it only was showing the Automatic Translation text and no flags
i have flags uploaded to /public html/ forums
im not newbie status i know what im doing most the time lol but something is just not working lmfaooo

merkaz 08-18-2009 11:01 PM

URL tracking trackink every link internal or exitrnal link even if it is not vb link such as gallery or adv and change the link to ?language= .

It should be tracking internal vb links only .

I hope you understand what i mean .

and thanks alot for sharing this amazing mod .

TheLastSuperman 08-18-2009 11:44 PM

Quote:

Originally Posted by NLP-er (Post 1870029)
About DB - the reason is differences in mySQL versions. On my version varchar(328) is not automatically changed to blob/text - on yours it is.

Please let me know which version do you have?

You made wrong changes in SQL, please drop your table and use this one (corection will be included in next release):
Code:

CREATE TABLE vbenterprisetranslator_cache_medium (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
serie BIGINT(14) UNSIGNED,
dateline int(10) UNSIGNED default 0,
tl VARCHAR(5),
originaltext VARCHAR(328),
translated VARCHAR(1000),
UNIQUE (originaltext(328), tl),
INDEX(serie)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin

About holding translation - turn on tracking in options.

Not understood about images.

I think we both lost each other on images as that was never an issue just that Webdeveloper Plus mod I provided a link to in a previous post, that would translate but the DB error resulted form text in that however we know now that the table was never created so that was not the cause of the error ;)

And MySQL version per the previously posted DB error:

Quote:

MySQL Version : 4.1.22-max-log
I'll drop that table ASAP and try the new, thanks for the revision and prompt replies :D.

S-MAN

NLP-er 08-19-2009 01:10 AM

Quote:

Originally Posted by Aclikyano (Post 1870134)
lol it only was showing the Automatic Translation text and no flags
i have flags uploaded to /public html/ forums
im not newbie status i know what im doing most the time lol but something is just not working lmfaooo

Please give me link to your forum I will look :)

NLP-er 08-19-2009 01:17 AM

Quote:

Originally Posted by merkaz (Post 1870137)
URL tracking trackink every link internal or exitrnal link even if it is not vb link such as gallery or adv and change the link to ?language= .

It should be tracking internal vb links only .

I hope you understand what i mean .

and thanks alot for sharing this amazing mod .

Thanks for note :) I already realized that there is problem with tracing without vbSEO, or with some specific configuration. I have already corrected solution, but want to implement also some new features before release - hope you will forgive me ;)

In this solution language param will be added to all links which not beginning from http (so are local)
or beginning from http ://your.forum.domain - so also local but not relative.

Mostly I'm waiting for solution to new URLs pattern working for everyone. When I got it then new release will come with some harmless bugs fixed and new features. Please be patience a while :)

NLP-er 08-19-2009 01:28 AM

Just a message to great users who set option to show flags only for guests.

Maybe you will be interested about hiding last post date for guests (less translations ;))

https://vborg.vbsupport.ru/showthread.php?t=218723

TheLastSuperman 08-19-2009 05:28 AM

Quote:

Originally Posted by TheLastSuperman (Post 1870159)
I think we both lost each other on images as that was never an issue just that Webdeveloper Plus mod I provided a link to in a previous post, that would translate but the DB error resulted form text in that however we know now that the table was never created so that was not the cause of the error ;)

And MySQL version per the previously posted DB error:



I'll drop that table ASAP and try the new, thanks for the revision and prompt replies :D.

S-MAN

Ok, table gone new one up and settings are correct:

URL tracking
If on then to URL's from your forum domain will be added language param. In other words with this option when you translate to some language, then going to other page will keep translation. = YES

It still won't carry over :(

Still nice they can simply click but it would be nice :erm: but if you think of anything else let me know & thanks regardless for the help.

S-MAN

T2x 08-19-2009 07:58 AM

Okay I have updated my vBSEO url formatting code ONE MORE TIME :D

And hopefully this is the final time that it will be necessary.

I had come to the realization that I was using an old version of the vBSEO htaccess and that although the code worked okay for some people, anybody with the latest version would have problems.

The code is updated now to take both situations into account so it will work with the latest version and be backwards compatible for a few versions back :D

You can find the post here:

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

Sweeks 08-19-2009 09:13 AM

Quote:

Originally Posted by T2x (Post 1870306)
Okay I have updated my vBSEO url formatting code ONE MORE TIME :D

And hopefully this is the final time that it will be necessary.

I had come to the realization that I was using an old version of the vBSEO htaccess and that although the code worked okay for some people, anybody with the latest version would have problems.

The code is updated now to take both situations into account so it will work with the latest version and be backwards compatible for a few versions back :D

You can find the post here:

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

It never worked this time unfortunately for me. I still get URLs in this format:

http://www.teenforumz.com/?language=sl

imported_silkroad 08-19-2009 09:29 AM

Quote:

Originally Posted by T2x (Post 1870306)
Okay I have updated my vBSEO url formatting code ONE MORE TIME :D

And hopefully this is the final time that it will be necessary.....

We quickly tried it and our board crashed... :D

I'll look into more this weekend.

Thanks for trying so hard, T2x ! :up:

imported_silkroad 08-19-2009 09:37 AM

For reference, we are running all our .htaccess code here on Ubuntu:

Code:

/etc/apache2/sites-enabled/000-default

Code:

<Directory /site/wwwroot/>

Options -Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all

RewriteEngine On

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

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_URI} !(lang/|competition/|admincp/|modcp/|cron|redir\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(competition|admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]

#              RewriteCond %{QUERY_STRING} !vbseourl=
#              RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron|vbtest)
#              RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1 [L,QSA]


#              RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
#              RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]

</Directory>


Lee G 08-19-2009 09:51 AM

Quote:

Originally Posted by Sweeks (Post 1870338)
It never worked this time unfortunately for me. I still get URLs in this format:

http://www.teenforumz.com/?language=sl

Same with my forum. Be one of those laws by a guy called sod that will no doubt be at fault :o

imported_silkroad 08-19-2009 10:31 AM

1 Attachment(s)
I noticed that many forums "before adding this new vBSEO code" if you try:

Code:

http://www.site.com/ar/
or

Code:

http://www.site.com/ar/link.html
(like our site)

Your get the attached error message: Invalid Forum specified. If you followed a valid link, please notify the administrator

FYI for T2x.

This error apparently happens in:

Code:

./includes/class_dm_forum.php
as

Code:

$this->error('invalid_forum_specified');
So, it seems that somewhere vB thinks that the first /en/ or /es/ or /aaa/ is a forum.

Perhaps this is not interesting or relevant... :confused: just FYI.

chick 08-19-2009 11:16 AM

Donated, thank you, MOTM vote. This is a great tool.

T2x 08-19-2009 04:08 PM

Quote:

Originally Posted by Sweeks (Post 1870338)
It never worked this time unfortunately for me. I still get URLs in this format:

http://www.teenforumz.com/?language=sl


The code I provided will not modify your flags, that is still to come.

Install just the vbseo.php code I provided and then try something like http://www.teenforumz.com/de/index.php


As far as imported_silkroad, I went over the code he sent me back and it turns out when he was modifying it he made a small typo that ended up causing the crash.

Also
Quote:

Originally Posted by imported_silkroad (Post 1870378)
I noticed that many forums "before adding this new vBSEO code" if you try:

FYI for T2x.

This error apparently happens in:

Code:

./includes/class_dm_forum.php
as

Code:

$this->error('invalid_forum_specified');
So, it seems that somewhere vB thinks that the first /en/ or /es/ or /aaa/ is a forum.

Perhaps this is not interesting or relevant... :confused: just FYI.


Yes this is to be expected, what my code does is entirely remove that first part that corresponds to the language from ever being seen by vBSEO or vB.

Effectively if you type in /de/index.php, vBSEO and vB will believe the page you are accessing is index.php?language=de


All times are GMT. The time now is 03:51 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.02586 seconds
  • Memory Usage 1,907KB
  • 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
  • (19)bbcode_code_printable
  • (30)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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