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)
-   -   New Posting Features - Photo Popup - Insert pictures easily from vB Albums, Photopost, vBGallery, Photoplog (https://vborg.vbsupport.ru/showthread.php?t=202385)

WillUnderwater 05-03-2009 07:56 PM

Hi,

Using latest vbulletin and the default albums that comes with it. Uploaded the files in upload properly, installed the packaged, configured the settings. I manually did the template edits - tried the button, link, and quick reply - and can't get any of them to show - what am I missing?

Thanks!

cellarius 05-04-2009 04:31 AM

Then you're not using a heavily modded style or have other mods that change the editor templates. The template edits as they are do work.

Please read "A note on "conflicts" with other editor/quickreply/quickedit mods" in the second post of this thread. If that does not help you, you'll have to offer more information.

WillUnderwater 05-04-2009 05:01 AM

Quote:

Originally Posted by cellarius (Post 1804114)
Then you're not using a heavily modded style or have other mods that change the editor templates. The template edits as they are do work.

Please read "A note on "conflicts" with other editor/quickreply/quickedit mods" in the second post of this thread. If that does not help you, you'll have to offer more information.

Thanks for the response. I found the conflicting package "GTSMILEBOX". I searched in templates and found the application was overwriting the editorbox with the following: editor_smilebox_GTSMILEBOX_3700 and editor_toolar_on_GTSMILEBOX_3700. I edited these two and the icons promptly showed! However, I still can't get the quick reply button to show up - but these aren't as big of deal.

The problem I am having now - is once I click the button or link - the window shows with my images. When I click any of the images - nothing happens - nothing gets tranferred to the post window - no errors - just absolutely nothing. Any ideas?

Thanks!!

cellarius 05-04-2009 05:10 AM

Please try to search this thread for solutions at least. This answer is just one page back:
https://vborg.vbsupport.ru/showpost....&postcount=351

Does this apply?

WillUnderwater 05-04-2009 05:13 AM

Hi,
I forgot to mention I did read that and I do not think that is the case.

When I click the button in the main editor, the URL of the window that pops up is: photo_popup.php?e=vB_Editor_001

The images show up perfectly in the window, when I click any of the images, the URL adds a # on the end of the vB_Editor_001. I copied and pasted the template edits so I don't think I made a mistake there?

cellarius 05-04-2009 06:14 AM

Quote:

Originally Posted by WillUnderwater (Post 1804123)
Hi,
I forgot to mention I did read that and I do not think that is the case.

OK

Quote:

When I click the button in the main editor, the URL of the window that pops up is: photo_popup.php?e=vB_Editor_001
That's correct - so the template edits for the link are correct.

Quote:

The images show up perfectly in the window, when I click any of the images, the URL adds a # on the end of the vB_Editor_001.
That's normal. This is because of the underlying javascript.

Sorry, but then I don't have any hints at the moment. I can only suspect that this other mod does something to the editor that this mod does not like. If you want to, you can send me AdminCP-access to your forum (and tell me where I can run some tests), I'll have a quick lock. Perhaps I can work it out.

WillUnderwater 05-04-2009 03:24 PM

Quote:

Originally Posted by cellarius (Post 1804147)
OK


That's correct - so the template edits for the link are correct.


That's normal. This is because of the underlying javascript.

Sorry, but then I don't have any hints at the moment. I can only suspect that this other mod does something to the editor that this mod does not like. If you want to, you can send me AdminCP-access to your forum (and tell me where I can run some tests), I'll have a quick lock. Perhaps I can work it out.


Thanks! Sent you a login info via PM

WillUnderwater 05-04-2009 08:23 PM

Thanks for all your help! Mod is working great now and I have nominated it!

Excellent mod guys! Make sure that your domains completely match.

i.e. http://google.com is not the same as http://www.google.com - and can cause errors in this mod and others! Make sure you forward http://site to http://www.site !!

Thanks again! Will have a donation coming your way ASAP!

cellarius 05-04-2009 08:32 PM

Glad we were able to work it out - and thanks for nomination (and donation ;))

cellarius 05-05-2009 10:45 AM

Whats new in Version 3.3
  • Some serious bugfixing concerning the handling of sessions (popup was dysfunctional for users w/o cookies allowed).

    Please note: You have to patch your template edits for this to take effect:
    For all the template edits you did, find
    Code:

    photo_popup.php?e=$editorid
    and replace with
    Code:

    photo_popup.php?$session[sessionurl]e=$editorid
    for TMS-users this will be applied automatically.
  • Workaround for vbseo problem with Firefox in WYSIWYG editor
  • another bug fixed in vBG config file

WillUnderwater 05-05-2009 03:34 PM

Quote:

Originally Posted by cellarius (Post 1804631)
Glad we were able to work it out - and thanks for nomination (and donation ;))

Do I need to update this version or is it what you sent me and the edits I did?

cellarius 05-05-2009 05:49 PM

The template edits are already in place, but you should reupload the photo_popup.php and import the product file.

Subah 05-07-2009 03:17 AM

Everything work fine in VBG with 3.3 ;)
Thanks a lot :)

Wild Bronco 05-10-2009 10:33 PM

Just like to say thank you ;)

Nice work and it works for blog to ;) :up::up:

cellarius 05-11-2009 05:29 AM

Quote:

Originally Posted by Subah (Post 1806171)
Everything work fine in VBG with 3.3 ;)
Thanks a lot :)

Great!
Quote:

Originally Posted by Geiri (Post 1808284)
Just like to say thank you ;)

Nice work and it works for blog to ;) :up::up:

Added that info to firstpost.

Thanks to you both for confirming this :)

WildSoftCat 05-12-2009 04:08 AM

For photopost only :

Photopost Pro saves medium images only if size exceeds specified value. This addition prevents showing thumbs of images, which medium-size file does't exists.

find in photo_popup.php

PHP Code:

else
{
    
$where_add where_add();


and add below

PHP Code:

$med_query "";
if (
$which_product == "photopost")
{
$med_q "0";
switch (
$insert_what)
    {
            case 
"link_thumb_2_orig" :
                
$med_q "0";
                break;
            case 
"link_thumb_2_gallery" :
                
$med_q "0";
                break;
            case 
"link_med_2_orig" :
                
$med_q "1";
                break;
            case 
"link_med_2_gallery" :
                
$med_q "1";
                break;
            case 
"thumb" :
                
$med_q "0";
                break;
            case 
"med" :
                
$med_q "1";
                break;
            case 
"orig" :
                
$med_q "0";
                break;
            case 
"thumb_2_gallery_link_below" :
                
$med_q "0";
                break;
            case 
"med_2_gallery_link_below" :
                
$med_q "1";
                break;
            case 
"orig_2_gallery_link_below" :
                
$med_q "0";
                break;
    }
if  ( 
$med_q == "1" )
    {
    
$med_query " AND medsize != 0 ";
    
$where_add $where_add $med_query
    } 



user02934123123 05-12-2009 07:05 PM

1 Attachment(s)
I have just installed this much-anticipated hack, and it seems to work - except for the button that is to be inserted in the editor toolbar. To put it briefly, this isn't appearing. No button is added, but rather a textbox and link are being added at the bottom of the screen (screen shot attached).

Any ideas how to solve this?

I am using the latest hack release on vB 3.8.2, and I have the latest version of the Template editor hack running also.

Many thanks.

cellarius 05-12-2009 07:14 PM

This has been asked several times - please read this thread or use the thread search.

This is by choice and the default. Why? Because that's the setting I use in my forums.

To change it, just read the template_edits.txt file. It's there for a reason.

cellarius 05-12-2009 07:15 PM

Quote:

Originally Posted by WildSoftCat (Post 1809145)
For photopost only :

Photopost Pro saves medium images only if size exceeds specified value. This addition prevents showing thumbs of images, which medium-size file does't exists.

Thanks for this information. Will be included into the next version.

user02934123123 05-13-2009 04:04 PM

Hello Cellarius, you wrote:

Quote:

Originally Posted by cellarius (Post 1809564)
This has been asked several times - please read this thread or use the thread search.

This is by choice and the default. Why? Because that's the setting I use in my forums.

To change it, just read the template_edits.txt file. It's there for a reason.

Thank you for pointing me towards this: I was able to make the changes and get things appearing properly.

Might I suggest that in a future release you make this more obvious (since I didn't notice the details in that file until you pointed me toward them). From the screen shots and such, it looks to a new installer of your product as if this will be a default setting; and then when it isn't, one assumes something has not gone rightly. And with 375+ message in the thread, it's a little cumbersome to try to find the details! Perhaps some notation in the details for the product, or some other obvious notice, would be helpful to other users.

Many thanks for a fine modification.

WildSoftCat 05-14-2009 11:21 AM

Hi, Cellarius !

Maybe it will be useful for somebody with photopost :

includes/class_bbcode.php in function handle_bbcode_img_match($link) find

PHP Code:

return '<img src="' .  $link '" border="0" alt="" />'

and replace with

PHP Code:

$cat "";
$big "";
$search "photopost/data";
$i strpos $link$search );

if  ( 
$i != )
{
$cat substr $link$i strlen $search ) + );
$cat str_replace "medium/" ""$cat );
$i strpos ($cat"/" );
$big substr $cat$i );
$cat substr $cat0$i );

$query "SELECT * FROM `pp_photos` WHERE (cat = " $cat " AND bigimage = '" $big "') OR (storecat = " $cat " AND bigimage = '" $big "') ";

$results $this->registry->db->query_read("$query);

if (
$this->registry->db->num_rows($results) > 0)
   {
   while (
$result $this->registry->db->fetch_array($results))
    {
      
$corr $result['id'];
      
$tit $result['title'];
      }
   }
$gal 'http://www.art-in-exile.com/forums/photopost/showgallery.php?cat=' $cat;
$pic 'http://www.art-in-exile.com/forums/photopost/showphoto.php?photo=' $corr;

$linkg '<td align="left"><div class="smallfont"><a href="' $pic '" target="_blank">' $tit '</a></div></td><td align="right"><div class="smallfont"><a href="' $gal '" target="_blank">Gallery</a></div></td>'

        return 
'<table><tr><td colspan=2><img src="' .  $link '" border="0" alt="" /></td></tr><tr>' $linkg '</tr></table>';
}
else
{
        return 
'<img src="' .  $link '" border="0" alt="" />';


This adds links to gallery and photo below image ( [IМG] tag ), only if image is in photopost datastore. Links addition on-fly, during show (showthread e.g.), not during posting or editing.

Sorry, i've no time to do it well, so this code needs some replacement for user's config :

1. path to photopost (2 lines)
2. determine photopost in link to image : $search = "photopost/data";
3. photopost tables prefix : pp_

DEMO here

Maybe somebody can do it better :)

This code needs yet one replacement in another file, who is interested in it - PM, please

cellarius 05-14-2009 11:40 AM

I will not support this code or function in this form. Just one hint after a quick scan: To use * in a query where only very few fields are needed is not exactly good.

It would be far easier to pull that information in the mod directly than to hack vB files. The mod already offers one insert option that displays a link under the inserted image. To pull the image title would not even call for an additional query.

WildSoftCat 05-15-2009 04:21 AM

Thanks for reply. Idea was to provide cross-link between pictures in photopost and VB posts without any action from userside. My users can click link below picture in post and go to gallery, review pictures there and return to threads & posts just with selected picture inside. It's hard to server, but my forum isn't large.

RWerksman 05-17-2009 03:44 AM

The album filter doesn't work on PhotoPlog currently. I've been mucking around with it for the last two hours or so, and I just cant get it to work correctly. It just doesn't seem to populate the dropdown so that the filter can apply.

The select in the catagories.php seems correct:

Code:

/*
###### Select statement for useralbums or categories ######
*/
function albums_select ()
{
    global $db_prefix;
    global $userid;
   
    $albums_select = "
        SELECT catid, title
        FROM " . $db_prefix . "categories
        ORDER BY title
        ";
    return $albums_select;
}

I can't seem to figure out what photo_popup.php does with it from there:

Code:

/*
###### What album dropdown  ######
*/
if ($allow_albums AND $albums_possible)
{
    if (!$other_db)
    {
        $result = $db->query_read(albums_select());
    }
    else
    {
        $result = mysql_query(albums_select());
    }
    $album_options = "<div style=\"whitespace: nowrap; display: inline;\"><strong>" . $vbphrase[photo_popup_album_select] . ":</strong>
<select name=\"alb\" onchange=\"this.form.submit();\">";
    $album_options .= "<optgroup label=\"" . $vbphrase[photo_popup_which_albums] . "\">";
    $album_options .= "<option value=\"all\">" . $vbphrase[photo_popup_all_albums] . "</option>";
    echo $album_options;
    echo "a";
    while (list($catid, $catname) = @ mysql_fetch_row($result))
    {
        if ($which_album == $catid)
        {
            $selected = " selected=\"selected\"";
        }
        $album_options .= "<option value=\"" . $catid . "\"" . $selected . ">" . $catname . "</option>";
        $selected = FALSE;
    }
    $album_options .= "</optgroup></select></div>";
}

I *think* it's getting messed up here:

Code:

while (list($catid, $catname) = @ mysql_fetch_row($result))
because it's selecting catid and title. When I echo out $catid and $catname it doesnt return anything.

I'm stumped. :(

puppetmaster222 06-04-2009 03:09 AM

Great mod is working with the Garage module flawlessly!!

Thanks.

cory_booth 06-10-2009 12:51 AM

For the record... It has been posted here a few times...
The drop-down for album categories does not populate.
If I open photo-popup, everything works fine, but the only option I have is ALL IMAGES.
Thus I have to flip through 1000s of photos to find the ones I want.
I cannot drill down through my albums.

Yes...

I have seen and tried the filter override settings.

cellarius 06-10-2009 07:11 AM

Quote:

Originally Posted by cory_booth (Post 1826753)
For the record... It has been posted here a few times...

The drop-down for album categories does not populate.

What product do you use? If you mean the vB album: I'm not aware that this has been reported for albums, and it works just fine for me (and a lot of others ;))

Andyrew 06-10-2009 07:09 PM

This has stopped working for me, when a user posts a thumbnail that links to the bigger pic it goes to my album listing when clicked on. :confused:
I am using TMS but something is not working correct.

metalguy639 06-10-2009 09:17 PM

Tried to install this on a 3.8.2 board. I get this error:

Code:

Photo Popup Error #2: missing config file

The configuration file "photo_popup_config_photopost" for this product is missing in [forumroot]/includes directory. Please consult installation instructions for this mod.

The file I was looking for is:
/home/content/t/o/m/tommydamic68/html/includes/photo_popup_config_photopost.php

Erm I have those files uploaded to the includes directory I checked. We have the user albums & Photoplog Lite 2.0.7 installed on the site. It works for the user albums but not for Photoplog.

Any way to fix this?

cellarius 06-12-2009 10:31 PM

You have set it to use photopost in the options for this mod, not photoplog. Change that - it is looking for the photopost config file, just as the error states.

metalguy639 06-12-2009 10:53 PM

Quote:

Originally Posted by cellarius (Post 1828633)
You have set it to use photopost in the options for this mod, not photoplog. Change that - it is looking for the photopost config file, just as the error states.

Thanks. I've changed it I'll post back if I still have problems with it.

Mike-D 06-17-2009 07:45 AM

Just a side note: Protoplog Pro Users don't need it because this feature is already part of that ;)

By the way: This Addon is really great and successful. Excellent work :up: Hat off

wottech 06-17-2009 10:13 AM

I think the reason Photoplog pro was added, even though it has its own, is because people who used it and another image program didn't want to have 2 different ways to insert images. With Photoplog Pro incorporated, users could turn off the default one and use this one in its place.

bmckinley 06-23-2009 04:42 AM

Clicks INSTALL.

yeshoward 06-28-2009 09:55 AM

intalled and worked on 3.8.2

cellarius 06-29-2009 05:20 AM

Quote:

Originally Posted by yeshoward (Post 1838753)
intalled and worked on 3.8.2

Then please mark it as installed :)

stylez84 07-01-2009 06:08 PM

Can't get my Album List to populate. I just reinstalled Photo Popup 3.3, re-uploaded all files, and imported the XML and allowed overwrite. When I go to post images, I only have the "all my photos" option.

I'm using vBulletin 3.8.3 with the default vBulletin albums.

Here's the debug:
PHP Code:


Debug information

Version
3.3

Photo Popup Settings 
(from AdminCP)
num_of_cols3
num_of_rows
7
num_total
:21
widht
600
heigth
680
products
albums
insert_options_allowed
link_thumb_2_orig link_thumb_2_gallery link_med_2_orig link_med_2_gallery thumb med orig thumb_2_gallery_link_below med_2_gallery_link_below orig_2_gallery_link_below
allow_albums
1
code_usergroups
0

Code 
(this is what is inside the table cells)
<
a href="#" onclick="thumbpaste('<a href=\'/forums/picture.php?albumid=4&amp;pictureid=80\'><img src=\'/forums/picture.php?albumid=4&amp;pictureid=80&amp;thumb=1\' style=\'border: 0\' /></a> ','[url=\'http://www.brickjunkies.com/forums/picture.php?albumid=4&amp;pictureid=80\'][img]https://vborg.vbsupport.ru/[/img][/url] ')"><img src="http://www.brickjunkies.com/forums/picture.php?albumid=4&amp;pictureid=80&amp;thumb=1" style="border: 0" title=""/></a>

Database Query
SELECT pictureid
vb_albumpicture.albumid FROM vb_albumpicture INNER JOIN vb_album ON vb_albumpicture.albumid vb_album.albumid WHERE userid 1 ORDER BY pictureid DESC LIMIT 021

Link to Original
[url]http://www.brickjunkies.com/forums/picture.php?albumid=4&pictureid=80[/url]

Link to Thumb
[url]http://www.brickjunkies.com/forums/picture.php?albumid=4&pictureid=80&thumb=1[/url]

Used productalbums

Cookie
Read Cookie
albums,all,link_thumb_2_orig
Set Cookie
albums,all,link_thumb_2_orig

Table building 
(rows and columns)
[
td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3

I even disabled all of my add-ons and still can't get it to work. Everything else about the mod works, I can insert images, change rows and columns, etc.

cad2go 07-03-2009 02:15 PM

Quote:

Originally Posted by cory_booth (Post 1826753)
For the record... It has been posted here a few times...
The drop-down for album categories does not populate.
If I open photo-popup, everything works fine, but the only option I have is ALL IMAGES.
Thus I have to flip through 1000s of photos to find the ones I want.
I cannot drill down through my albums.

Yes...

I have seen and tried the filter override settings.

Quote:

Originally Posted by stylez84 (Post 1840902)
Can't get my Album List to populate. I just reinstalled Photo Popup 3.3, re-uploaded all files, and imported the XML and allowed overwrite. When I go to post images, I only have the "all my photos" option.

I'm using vBulletin 3.8.3 with the default vBulletin albums.

Here's the debug:
PHP Code:


Debug information

Version
3.3

Photo Popup Settings 
(from AdminCP)
num_of_cols3
num_of_rows
7
num_total
:21
widht
600
heigth
680
products
albums
insert_options_allowed
link_thumb_2_orig link_thumb_2_gallery link_med_2_orig link_med_2_gallery thumb med orig thumb_2_gallery_link_below med_2_gallery_link_below orig_2_gallery_link_below
allow_albums
1
code_usergroups
0

Code 
(this is what is inside the table cells)
<
a href="#" onclick="thumbpaste('<a href=\'/forums/picture.php?albumid=4&amp;pictureid=80\'><img src=\'/forums/picture.php?albumid=4&amp;pictureid=80&amp;thumb=1\' style=\'border: 0\' /></a> ','[url=\'http://www.brickjunkies.com/forums/picture.php?albumid=4&amp;pictureid=80\'][img]http://www.brickjunkies.com/forums/picture.php?albumid=4&amp;pictureid=80&amp;thumb=1[/img][/url] ')"><img src="http://www.brickjunkies.com/forums/picture.php?albumid=4&amp;pictureid=80&amp;thumb=1" style="border: 0" title=""/></a>

Database Query
SELECT pictureid
vb_albumpicture.albumid FROM vb_albumpicture INNER JOIN vb_album ON vb_albumpicture.albumid vb_album.albumid WHERE userid 1 ORDER BY pictureid DESC LIMIT 021

Link to Original
[url]http://www.brickjunkies.com/forums/picture.php?albumid=4&pictureid=80[/url]

Link to Thumb
[url]http://www.brickjunkies.com/forums/picture.php?albumid=4&pictureid=80&thumb=1[/url]

Used productalbums

Cookie
Read Cookie
albums,all,link_thumb_2_orig
Set Cookie
albums,all,link_thumb_2_orig

Table building 
(rows and columns)
[
td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3][tr][td 1][td 2][td 3

I even disabled all of my add-ons and still can't get it to work. Everything else about the mod works, I can insert images, change rows and columns, etc.

Same here, using standard vb albums. I get "From which album", Then only "all my photos". On 3.8.3. Will post debug shortly.

Working perfectly aside from that.

PHP Code:


Debug information

Version
3.3

Photo Popup Settings 
(from AdminCP)
num_of_cols4
num_of_rows
4
num_total
:16
widht
600
heigth
680
products
albums
insert_options_allowed
link_thumb_2_orig link_thumb_2_gallery link_med_2_orig link_med_2_gallery thumb med orig thumb_2_gallery_link_below med_2_gallery_link_below orig_2_gallery_link_below
allow_albums
1
code_usergroups
0

Code 
(this is what is inside the table cells)
<
a href="#" onclick="thumbpaste('<div align=\'center\'><img src=\'/forum/picture.php?albumid=2&amp;pictureid=80\' style=\'border: 0\' /><br /><a href=\'/forum/album.php?albumid=2&amp;pictureid=80\'>&lt;font size=&quot;1&quot;&gt;View image in gallery&lt;/font&gt;</a></div><br /> ','[center][img]http://www.rletc.com/forum/picture.php?albumid=2&amp;pictureid=80[/img]\n[url=\'http://www.rletc.com/forum/album.php?albumid=2&amp;pictureid=80\'][size=1]View image in gallery[/size][/url][/center]\n\n ')"><img src="http://www.rletc.com/forum/picture.php?albumid=2&amp;pictureid=80&amp;thumb=1" style="border: 0" title=""/></a>

Database Query
SELECT pictureid
vbalbumpicture.albumid FROM vbalbumpicture INNER JOIN vbalbum ON vbalbumpicture.albumid vbalbum.albumid WHERE userid 5 ORDER BY pictureid DESC LIMIT 016

Link to Original
[url]http://www.rletc.com/forum/picture.php?albumid=2&pictureid=80[/url]

Link to Thumb
[url]http://www.rletc.com/forum/picture.php?albumid=2&pictureid=80&thumb=1[/url]

Used productalbums

Cookie
Read Cookie
albums,all,orig_2_gallery_link_below
Set Cookie
albums,all,orig_2_gallery_link_below

Table building 
(rows and columns)
[
td 1][td 2][td 3][td 4][tr][td 1][td 2][td 3][td 4][tr][td 1][td 2][td 3][td 4][tr][td 1][td 2][td 3][td 4


cellarius 07-04-2009 11:04 AM

OK - I see there seems to be a problem with populating the albums dropdown (reported for the albums and once for photoplog). I myself can not reproduce this on any of my forums - this is what makes debugging kinda hard.

To get a hold on this, I added some extra information to debugging. If you have this problem, please upload the attachted photo-popup.php and post the results here. Hopefully this will help tracking this down, it will show whether the query is constructed correctly and there is a result at all.

// Attachment removed, bug fixed in 3.4.

cad2go 07-04-2009 12:00 PM

Quote:

Content Encoding Error

The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.

The page you are trying to view cannot be

shown because it uses an invalid or unsupported form of compression.

* Please contact the web site owners to inform them of this problem.
error in that new file somewhere

edit: only on ff!

I'll post the debug from ie in a sec - No. It won't load in ie either


All times are GMT. The time now is 12: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.02226 seconds
  • Memory Usage 1,965KB
  • 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
  • (6)bbcode_code_printable
  • (7)bbcode_php_printable
  • (16)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