vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   vbArchive - Search Engine Indexer for vBulletin (https://vborg.vbsupport.ru/showthread.php?t=47667)

TECK 01-20-2003 08:35 PM

You did not read the readme file properly. Did you add to functions.php the needed code?

Floris 01-20-2003 08:44 PM

You removed the 'No' part
rofl :)

TECK 01-20-2003 08:47 PM

:)
Floris, did you updated the archive? So I can link it to the first post?

EDIT: I posted in the first post an useful info from Google, related to links crawling...
So patience if you don't see your links next day up. :)

TLucent 01-21-2003 01:59 AM

Thank you!

eva2000 01-21-2003 11:19 AM

so far 17,787 links in alltheweb http://www.alltheweb.com/search?cat=...on&_sb_lang=en

before indexing this vBarchive links :)

crocket 01-21-2003 01:56 PM

Quote:

Originally posted by crocket
PHP Code:

Fatal errorCall to undefined function: archive_navbar() in /home/lcdmod/public_html/forums/forumdisplay on line 23 

Im getting that error when i click on a link :(

whats the problem :)


http://lcdmod.com/forums/archive

Thank You
Crocket

Yes i have installed the Hack into the functions.php file

I have gone thru the install process.. And checked it and it seems fine. But i still get the error message! :(

TECK 01-21-2003 02:12 PM

You are getting this error message because you don't have that function present in functions.php file.
Check your installation.

crocket 01-21-2003 02:31 PM

Sorry but i dont get what you mean.

Your saying i dont have that function in function.php..

But what do you mean by this? Am i looking for something in particular that i need to change?

If your on about are the lines from add_to_functions.php in functions.php - Yes i have done that step!

Here is the ending of the functions.php file

PHP Code:

  // update user table from session table in bulk
  
mt_srand ((double) microtime() * 1000000);
  if (
mt_rand(1,100)=='50') {
    
$oldsessions=$DB_site->query("SELECT userid,lastactivity FROM session WHERE lastactivity<'".(time()-$cookietimeout)."'");
    while (
$oldsession=$DB_site->fetch_array($oldsessions)) {
      
$DB_site->query("UPDATE user SET lastactivity=$oldsession[lastactivity] WHERE userid=$oldsession[userid] AND lastactivity<$oldsession[lastactivity]");
    }
     
$DB_site->query('DELETE FROM session WHERE lastactivity<'.(time()-$cookietimeout));

        
//searches expire after a week:
        
$DB_site->query("DELETE FROM search WHERE dateline<".(time()-(7*24*60*60)));
  }

  
// bye bye!
}

if (!
$noshutdownfunc) {
  
register_shutdown_function("doshutdown");
}
// ###################### Start archive_nopermission ####################### function archive_nopermission() { global $headinclude,$headnewpm,$bburl,$bbtitle,$homeurl,$hometitle,$titleimage,$copyrighttext,$versionnumber; $metakeytags = ''; $headertitle = 'Message'; $pagetitle = '' . $bbtitle . ' Message'; $navbar = '' . $bbtitle . ' Archive'; $pagenav = ' '; $showforumbits = ''; $showthreadbits = ''; $showpostbits = 'You do not have permission to access this page.'; eval( 'dooutput( "' . gettemplate( 'archive' ) . '" );' ); exit; } // ###################### Start archivenavbar ####################### function archivenavbar( $id , $idtype='forum' , $highlightlast=1 ) { global $bbtitle,$bburl,$navbits,$navbar; $navbits = archivenav( $id , $idtype , $highlightlast ); $navbar = '' . $bbtitle . ' Archive > ' . $navbits; return $navbar; } // ###################### Start archivenav ####################### function archivenav( $id , $idtype='forum' , $highlightlast=1 ) { global $DB_site,$bburl,$threadcache; $code = ''; if ( $id != -1 ) { if ( $idtype == 'thread' ) { if ( !isset( $threadcache["$id"] ) ) { $getforumid = $DB_site->query_first(" SELECT forumid FROM thread WHERE threadid=$id "); } else { $getforumid['forumid'] = $threadcache["$id"]['forumid']; } $code = archivenav( $getforumid['forumid'] , 'forum' , 1 ); if ( $highlightlast ) { $code .= '' . $threadinfo['title'] . ''; } else { $code .= $foruminfo['title']; } } else { $foruminfo = getforuminfo( $id ); if ( $foruminfo['parentid'] != -1 ) { $code = archivenav( $foruminfo['parentid'] , $idtype , 1 ); } if ( strlen( $code ) > 0 ) { $code .= ' > '; } if ( $highlightlast ) { $code .= '' . $foruminfo['title'] . ''; } else { $code .= $foruminfo['title']; } } } return $code; } // ###################### Start archivepagenav ####################### function archivepagenav( $results , $address ) { global $perpage,$pagenumber; if ( $results <= $perpage ) { return; } $totalpages = ceil( $results / $perpage ); while ( $curpage++ < $totalpages ) { if ( $curpage == $pagenumber ) { $pagenav .= '[' . $curpage . ']'; } else { $pagenav .= ' ' . $curpage . ' '; } } $pagenav = 'Pages: ' . $pagenav; return $pagenav; }
?> 


TECK 01-21-2003 03:03 PM

Ya, I was right, you do not have the code in functions.php file.
In other words, you mixed an old installation with a new one.
You downloaded a previous version and install it, then update it, but you forgot to update the code in functions.php, because that's not the functions.php code available in the latest version.

Clear your browser temp files, redownload the package and follow the upgrade instructions listed in the first post.

EDIT: Use a decent editor, like TextPad or EditPlus2, look at the messed code you posted above...

crocket 01-21-2003 04:29 PM

OMG It works!

Thank You very much for your support / help!

Ive allways wanted a working archive and im pleased to say im extremely pleased!

Thank You once again!

Crocket

If you want to add it as a working archive.. http://www.lcdmod.com/forums/archive

TECK 01-21-2003 04:32 PM

Glad, you got it up and running. :)

Now, guys, make me favor... can you search and find out if it's recomended to have a link back to the actual forums home page (from the archive pages)?
I want to make sure if the crawlers need this...
My theory is that they don't need it, but you never know, better be safe then sorry.

Let me know please. Thanks.

TECK 01-21-2003 04:43 PM

Here it is another interesting mod I made to my forums, to link back to archives.
This will help because the crawlers will see the friendly URL's easier.
Basically the mod links every forum/thread to the archive.
To test it, mouse over each forum or thread icon, while viewing my forums.
Also, check the link I added under the thread title, while viewing the actual (not archived) thread.

TEMPLATE: forumhome_forumbit_level1_post
FIND:
Code:

    <td valign="top"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt=""></td>
REPLACE WITH:
Code:

    <td valign="top"><a href="forumdisplay/f-$forum[forumid].html"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt="$forum[title] Archive"></a></td>
TEMPLATE: forumhome_forumbit_level2_post
FIND:
Code:

    <td valign="top"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt=""></td>
REPLACE WITH:
Code:

    <td valign="top"><a href="forumdisplay/f-$forum[forumid].html"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt="$forum[title] Archive"></a></td>
TEMPLATE: forumdisplaybit
FIND:
Code:

  <td bgcolor="{firstaltcolor}"><img src="{imagesfolder}/$thread[newoldhot].gif" border="0" alt=""></td>
REPLACE WITH:
Code:

  <td bgcolor="{firstaltcolor}"><a href="showthread/t-$thread[threadid].html"><img src="{imagesfolder}/$thread[newoldhot].gif" border="0" alt="Archive: $thread[title]"></a></td>
TEMPLATE: forumdisplay_forumbit_level1_post
FIND:
Code:

    <td valign="top"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt=""></td>
REPLACE WITH:
Code:

    <td valign="top"><a href="forumdisplay/f-$forum[forumid].html"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt="$forum[title] Archive"></a></td>
TEMPLATE: forumdisplay_forumbit_level2_post
FIND:
Code:

    <td valign="top"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt=""></td>
REPLACE WITH:
Code:

    <td valign="top"><a href="forumdisplay/f-$forum[forumid].html"><img src="{imagesfolder}/$forum[onoff].gif" border="0" alt="$forum[title] Archive"></a></td>
TEMPLATE: showthread
FIND:
Code:

$navbar
REPLACE WITH:
Code:

$navbar<br>
<img border="0" src="{imagesfolder}/firstnew.gif" width="14" height="14" align="middle" alt=""> <a href="showthread/t-$thread[threadid].html">Friendly URL Link</a>


crocket 01-21-2003 05:28 PM

You know i had it all working! Well everything has gone down now!

The forums aswell as the archive are giving server 500 errors!

I looked at the error log and this is what it has been inputing

Code:

[Tue Jan 21 19:18:48 2003] [alert] [client 212.104.129.218] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 19:18:41 2003] [alert] [client 212.104.129.218] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 19:18:41 2003] [alert] [client 212.104.129.218] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 19:18:40 2003] [alert] [client 212.104.129.218] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 19:18:39 2003] [alert] [client 212.104.129.218] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 19:18:36 2003] [alert] [client 212.104.129.218] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 19:09:20 2003] [alert] [client 193.167.100.93] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:43:15 2003] [alert] [client 24.201.91.230] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:42:59 2003] [alert] [client 24.201.91.230] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:42:47 2003] [alert] [client 24.201.91.230] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:42:17 2003] [alert] [client 24.201.91.230] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:38:19 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:38:19 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:38:17 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:38:17 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:54 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:54 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:52 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:52 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:51 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:51 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:42 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:42 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:41 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:41 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:39 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:39 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:00 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:37:00 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:58 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:58 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:57 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:57 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:21 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:10 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:10 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:09 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:09 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:03 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:36:03 2003] [alert] [client 81.5.138.29] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration
[Tue Jan 21 18:35:47 2003] [alert] [client 212.104.129.218] /home/lcdmod/public_html/forums/.htaccess: Invalid command 'RedirectMatch', perhaps mis-spelled or defined by a module not included in the server configuration

I suspect its to do with this hack! Is there a way to fix this? delete the .htaccess file!?

TECK 01-21-2003 07:03 PM

No need to suspect nothing related to my hack because there is nothing wrong with it.
Since you had it working perfectly and all of the sudden it didn't work anymore, you should ask your host (or yourself) what it was changed onto your server settings between the laps of time you had it working and the one it did not.

The log show it clearly that is a host problem.

TECK 01-22-2003 07:15 PM

Looks like your host fixed their problem...
http://www.lcdmod.com/forums/archive/

crocket 01-22-2003 07:21 PM

what i did was.. delete the .htaccess file and reuploaded it.. and its working now..

I figured out that the problem happened 2 hours after everything was working.. ie hack installed..

The forums have been up for longer then 2 hrs with hack functional!

So hopefully it seems ok and stable with no errors!

Feel free to add the link to the "archives working" on the front page! to make people install :)

Once again thank you!

TECK 01-22-2003 07:57 PM

Is already there. :)
BTW, always upload a .htaccess file as htaccess.txt, then rename it on the server, as mentioned in the readme file.
I guarantee you it was related to your host, they probably fixed their error there...

EDIT: You forgot to upload your arrow.gif image in this folder:
/forums/blueimages

TECK 01-23-2003 08:31 AM

As I said, optimizing the forums with all the tips I posted in the first link, will make your site visible in any major search engine.
Google likes my site, take a look below...

TECK 01-23-2003 09:06 AM

There is a minor but very important bug that I noticed, while accesing the main archive file.
To fix it, add this line, at the bottom of your htaccess.txt file:
Code:

RedirectMatch 301 /archive$ http://[high]www.yoursite.com/forum[/high]/archive/
Replace the highlighted part with your web site URL.
I updated the .zip files.

Floris 01-23-2003 09:53 AM

Hi,

I have finally found the time to take 5 minutes to uninstall the previous version and install the 1.2 version.

http://www.creations.nl/forum/archive/

Looking great. Feel free to add me in your first post.

styleid=1 (open forum default style)
styleid=5 (open forum mozilla style)

TECK 01-23-2003 10:16 AM

Done Floris, I added your link. Did you updated your .htaccess file with the fix listed in the first post?
Is really important! Serious, even if I'm smiling. :)

No, the online.php is a different story, you have to hack your file.

Floris 01-23-2003 10:17 AM

Yeah I did,
it was step 1 in the new instructions html file included in the .zip too right?

The online.php stuff has been updated too, let me check how whois online looks like now.

Floris 01-23-2003 10:19 AM

floris Unknown Location: /forum/archive/images/mozilla/cat_09.gif?s={my sessionshash} 13:12
Guest Unknown Location: /forum/archive/images/catbgtitle.gif?s={guest's sessioshash}

TECK 01-23-2003 10:19 AM

Ya.
Let me know about the online.php file, it's working great for me, although I'm using a more complex version... :p

Wh00T?? What are you doing??? :)
Those are graphs, they should never show in the online file unless you are viewing an image only.

Floris 01-23-2003 10:23 AM

Well,
I dunno :D

I just goto archive/ and so will guests
and the whois online shows up like that.

*scratch head*

TECK 01-23-2003 10:31 AM

Floris, I'll help you later on with it, on MSN. Check your PM's.
I have to run with my wife for some early shopping, I'll be back in few hours. :)

Floris 01-23-2003 10:31 AM

I think I might know what could be causing this :D

TECK 01-23-2003 10:33 AM

Just edit the archive templates then. Add the actual html code instead of the replacement ones... :D

Floris 01-23-2003 10:35 AM

If I remove them from the styles part,
it will process the next one, like <body background..> etc etc etc, and I bet I won't be the only board who uses those kind of images :>

Floris 01-23-2003 10:35 AM

Quote:

Originally posted by TECK
Just edit the archive templates then. Add the actual html code instead of the replacement ones... :D
Guess so :/ hehe

Floris 01-23-2003 11:03 AM

Well, I have altered as much as I can,
and there are indeed crawlers on my site, from alexa.com
But all unknown locations.
The t-xxx?hash doesn't show up as t-xxx.html?hash either.

eva2000 01-23-2003 03:35 PM

Quote:

Originally posted by TECK
There is a minor but very important bug that I noticed, while accesing the main archive file.
To fix it, add this line, at the bottom of your htaccess.txt file:
Code:

RedirectMatch 301 ^/archive$ http://[high]www.yoursite.com/forum[/high]/archive/
Replace the highlighted part with your web site URL.
I updated the .zip files.

thanks updated the .htaccess

http://animeboards.com/archive/ :)

nuno 01-23-2003 09:53 PM

TECK, have you tried this under windows?

TECK 01-23-2003 09:54 PM

No, but it should work if you use Apache.

nuno 01-23-2003 09:55 PM

Oops, i mean IIS. :)

TECK 01-23-2003 09:55 PM

I explained in the first post how to get it work in IIS.

nuno 01-23-2003 09:58 PM

It's not working. :(

TECK 01-23-2003 09:58 PM

Did you used the ISAPI Rewrite? It works, at least the software says this.

nuno 01-23-2003 10:00 PM

Yes, it is installed and up.
Should i add something to httpd.ini?

TECK 01-23-2003 10:02 PM

I never try it... Try to post and ask for support on their site.
If you find a fix, I would apreciate to post it here so I can link it to the first post.
EDIT: I found this link at PHPBuilder:
http://www.phpbuilder.com/annotate/m...hp3?id=1014827

Let me know if you got it working...


All times are GMT. The time now is 12:31 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.02602 seconds
  • Memory Usage 1,895KB
  • 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
  • (15)bbcode_code_printable
  • (2)bbcode_php_printable
  • (3)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