vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Major Additions - Links and Downloads Manager (https://vborg.vbsupport.ru/showthread.php?t=166094)

obmob 09-24-2008 05:24 PM

So... we've been busy lately? :D

Thanks for the bug fixes :)

AndrewD 09-24-2008 07:08 PM

Quote:

Originally Posted by josiespencer (Post 1629387)
I got this PM from a user today:



OK, how do we fix it?

Noted = please delete this post.

Please send me a PM with full admin access to your site. There is an allowance check in place to stop what is being reported.

AndrewD 09-24-2008 07:11 PM

Quote:

Originally Posted by ShawnV (Post 1629398)
Andrew,

First let me say that LDM is very complex, well written, documented and infinitely useful, thank you for all your time developing this MOD.

I am using vBulletin 3.7.3 Patch Level 1)and LDM 2.3.0 alpha, and seem to have a few minor errors.

On the home category page I am getting an error in (EI 7 32bit (Vista 64)

line 12
Char 1604
Error: unexpected call to method or property access
Code: 0
ULR: http://www.koww.net/forum/local_links.php

This error does not reproduce once you navigate into a category or sub category, any suggestions?

It's a javascript error message, but it does not show up on a clean installation of LDM. There must be some interaction between the different pieces on your site. I will try to debug.

Quote:

Originally Posted by ShawnV (Post 1629398)
Also, I noticed a lightbox plugin in the extras folder, is it possible and why not just use vBulletin lightbox function that is built into VB for quick display of attached image thumbnails so they look and funtion the same as the ones in the forum and the rest of the site?

It's on my list to do. LDM had the lightbox extra quite a long time before vbulletin incorporated it. I haven't got round to replacing it with the now-standard vb code.

AndrewD 09-24-2008 07:13 PM

Quote:

Originally Posted by abdelghani68 (Post 1629281)
If i have got for exemple 100 audio in LDM. Has I necessarily edite and validate every entry one to one for that the attibuts of idtag are displays ?

How to do for the idtag are display in every audio without having to edit and validate all of entries please ?

thanks

I will try to give you a complete answer to this and your previous question, but it will probably be the weekend before I can do so.

AndrewD 09-24-2008 07:37 PM

Quote:

Originally Posted by ShawnV (Post 1629398)
Andrew,
I am using vBulletin 3.7.3 Patch Level 1)and LDM 2.3.0 alpha, and seem to have a few minor errors.

On the home category page I am getting an error in (EI 7 32bit (Vista 64)

line 12
Char 1604
Error: unexpected call to method or property access
Code: 0
ULR: http://www.koww.net/forum/local_links.php

This error does not reproduce once you navigate into a category or sub category, any suggestions?

Ignore my previous message - I think this is related to the use of the cat_desc_popup option on the LDM/admin/settings page. Will investigate.

ShawnV 09-24-2008 08:26 PM

Quote:

Originally Posted by AndrewD (Post 1629469)
It's a javascript error message, but it does not show up on a clean installation of LDM. There must be some interaction between the different pieces on your site. I will try to debug.



It's on my list to do. LDM had the lightbox extra quite a long time before vbulletin incorporated it. I haven't got round to replacing it with the now-standard vb code.

Awesome, that will be so nice, thanks.

Quote:

Originally Posted by AndrewD (Post 1629494)
Ignore my previous message - I think this is related to the use of the cat_desc_popup option on the LDM/admin/settings page. Will investigate.

Yes, it was, turned it off and error is gone. :)

_V

vbboarder 09-25-2008 02:00 AM

Quote:

Originally Posted by AndrewD (Post 1629470)
I will try to give you a complete answer to this and your previous question, but it will probably be the weekend before I can do so.

Quote:

If i have got for exemple 100 audio in LDM. Has I necessarily edite and validate every entry one to one for that the attibuts of idtag are displays ?

How to do for the idtag are display in every audio without having to edit and validate all of entries please ?
.
I will try to save you some time, Andrew. Feel free to correct me if I'm wrong. It's a 2 steps process - you do not need to do the 2nd step IF you have not added any media entries after installing the ID3 tags extra plugin.

Step 1: Find LDM - Interpret ID3 tags (ldm_addlink_preinsert) in the Plugin Manager. Click that link and and find variables looking like "$entitytags['title']" and change the word inside the bracket to whatever you want. Make sure that your new word is enclosed with single quotes, like so $entitytags['myTitle']. DO NOT change the words of any other variable, otherwise the plugin code will not work and you'll get errors!

Step 2 (if you added entries after installing the ID3 tags plugin): You must manually edit the local_linksentities table and change the names in the entityname column. Make sure to backup the table first in case you'll do something wrong and need to restore your original table.

Hope that helps ;)

vbboarder 09-25-2008 02:03 AM

Andrew, is there a LDM function I can call from a plugin to determine the filetype of an entry? If so, can you tell me what's the function and in what file? Thanks.

AndrewD 09-25-2008 05:04 AM

Quote:

Originally Posted by vbboarder (Post 1629696)
Andrew, is there a LDM function I can call from a plugin to determine the filetype of an entry? If so, can you tell me what's the function and in what file? Thanks.

I tend to use the vbulletin function file_extension($filename), which is in functions.php. If you want to check if a filetype is defiend in the attachments table, i.e. a recognised ldm upload/download, then use ldm_known_filetype($type) in includes/local_links_includes.php.

Your info on id3 entities is accurate. I'm irritated at myself for ignoring one of the golden rules of database design - don't drop information about field names into multiple database records. I will sort this out.

vbboarder 09-25-2008 04:59 PM

Quote:

Originally Posted by vbboarder (Post 1627913)
In LDM Settings > Jukebox, when setting the musicbox_default_sort_order to hits 30 days, hits 7 days, or hits 24 hours, LDM reports an SQL error:
Note: setting it to "hits overall" works fine though.

Sorry, I wasn't detailed about exactly where the SQL error occurred. After saving the setting (ie: to "Hits 30 days"), go and view a single entry that is played in an embedded player. (ie: local_links.php?action=play....). On that page, instead of listing the Hits, it shows the SQL error:
Quote:

MySQL Error : Unknown column 'linkrecenthits' in 'order clause'
Andrew, are you able to reproduce that error?

AndrewD 09-25-2008 06:45 PM

Quote:

Originally Posted by vbboarder (Post 1630200)
Sorry, I wasn't detailed about exactly where the SQL error occurred. After saving the setting (ie: to "Hits 30 days"), go and view a single entry that is played in an embedded player. (ie: local_links.php?action=play....). On that page, instead of listing the Hits, it shows the SQL error:

Andrew, are you able to reproduce that error?

yes, and I've fixed it in in the upcoming code. I'm working on your other suggestions :)

AndrewD 09-25-2008 06:56 PM

I've just been debugging a problem for a site which has set up multiple usergroups and given people membership of these as their primary and secondary usergroups. Depending on how this is set up, there can be unexpected consequences within LDM.

LDM
- gives users the most liberal permission based on *any* of their usergroups.
- gives users download allowances based on their *primary* usergroup.

Suppose usergroup 'FullyRegistered' has an allowance of 10 files a day and usergroup 'Registered' an allowance of 5 files a day.
- Someone who is a member of both usergroups with primary member of Registered will be allowed 5 files/day
- Someone who is a member of both with primary member of FullyRegistered will be allowed 10 files/day

However, suppose 'FullyRegistered' is also given *can_bypass_hit_recording* permission.
- All users who have FullyRegistered as their primary or secondary usergroup will gain this permission
- Consequently, their accesses will not be recorded
- Consequently, they will never exceed their allowances.

Questions:
- Is this what you would expect to happen?
- Should users be given allowances based on their primary group or the most liberal of their primary and secondary groups?

DF08Said 09-25-2008 07:08 PM

m8 what Exactly does this do... u can uplaod and Download Stuff like Piratebay etc..?

vbboarder 09-25-2008 07:54 PM

Re: multiple usergroups & can_bypass permissions

I think your 3 can_bypass permissions (hit_recording, bandwidth_limits, forumperms) are like a tertiary level of access control. To prevent the permissions dilemma that you're debugging, I think you should remove those permissions from usergroups and make them specific to listed users (ie: userids, usernames). These liberal permissions should then override the usergroup permissions for any listed users who have those permissions.
Users can configure their desired access control for usergroups without using these 3 can_bypass permissions by editing Forum Permissions, LDM Permissions, and LDM Allowances. The only possible loss functionality that I see is the can_bypass_hit_recording for the Guest group. To compensate, you can provide an option to activate that setting for the Guest group, but guests will then have either no or unlimited download/ upload limits (depending on the settings in LDM Allowances).

7lanet 09-26-2008 01:26 AM

Quote:

Possible inconsistencies between LDM and its environment
- Parameter upload_enabled is enabled but parameter upload_dir is not set
- allow_url_fopen is off and cURL is not available in php.ini file - Remote downloads not available

- upload_max_filesize 2M >= post_max_size 2048k in php.ini file - Large uploads may fail without warning
:(:(:(

abdelghani68 09-26-2008 03:18 AM

Quote:

Originally Posted by vbboarder (Post 1629694)
.
I will try to save you some time, Andrew. Feel free to correct me if I'm wrong. It's a 2 steps process - you do not need to do the 2nd step IF you have not added any media entries after installing the ID3 tags extra plugin.

Step 1: Find LDM - Interpret ID3 tags (ldm_addlink_preinsert) in the Plugin Manager. Click that link and and find variables looking like "$entitytags['title']" and change the word inside the bracket to whatever you want. Make sure that your new word is enclosed with single quotes, like so $entitytags['myTitle']. DO NOT change the words of any other variable, otherwise the plugin code will not work and you'll get errors!

Step 2 (if you added entries after installing the ID3 tags plugin): You must manually edit the local_linksentities table and change the names in the entityname column. Make sure to backup the table first in case you'll do something wrong and need to restore your original table.

Hope that helps ;)

thanks very mush

AndrewD 09-26-2008 03:48 AM

Quote:

Originally Posted by DF08Said (Post 1630301)
m8 what Exactly does this do... u can uplaod and Download Stuff like Piratebay etc..?

It's explained in the wiki. Yes, it's a general purpose tool for managing files, links, uploads and downloads.

abdelghani68 09-26-2008 03:56 AM

I have do the modification, added an audio, but the title don't change. I have do this modification :

Code:

if (array_key_exists('id3v2', $ThisFileInfo['tags'])) {
                                        $entitytags['Piste'] = $ThisFileInfo['tags']['id3v2']['title'][0];
                                        $entitytags[Auteur'] = $ThisFileInfo['tags']['id3v2']['artist'][0];
                                        $entitytags['Th?me'] = $ThisFileInfo['tags']['id3v2']['album'][0];
                                        $entitytags['Genre'] = $ThisFileInfo['tags']['id3v2']['genre'][0];
                                        $entitytags['Year'] = $ThisFileInfo['tags']['id3v2']['year'][0];
                                }
                                elseif (array_key_exists('id3v1', $ThisFileInfo['tags'])) {
                                        $entitytags['Piste'] = $ThisFileInfo['tags']['id3v1']['title'][0];
                                        $entitytags['Auteur'] = $ThisFileInfo['tags']['id3v1']['artist'][0];
                                        $entitytags['Th?me'] = $ThisFileInfo['tags']['id3v1']['album'][0];
                                        $entitytags['Genre'] = $ThisFileInfo['tags']['id3v1']['genre'][0];
                                        $entitytags['Year'] = $ThisFileInfo['tags']['id3v1']['year'][0];
                                }
                                if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                        $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                                }
                        }
                        break;

                case 'wma':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                        }
                        break;

                case 'jpg':
                case 'jpeg':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('jpg', $ThisFileInfo)) {
                                $entitytags['DateTime'] = $ThisFileInfo['jpg']['exif']['IFD0']['DateTime'];
                                $entitytags['Height'] = $ThisFileInfo['jpg']['exif']['COMPUTED']['Height'];
                                $entitytags['Width'] = $ThisFileInfo['jpg']['exif']['COMPUTED']['Width'];
                        }
                        break;

                case 'avi':
                case 'flv':
                case 'mpg':
                case 'mpeg':
                case 'mov':
                case 'rm':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                        }
                        if (isset($ThisFileInfo["video"]["resolution_x"])) {
                                $entitytags['Height'] = $ThisFileInfo['video']['resolution_y'];
                                $entitytags['Width'] = $ThisFileInfo['video']['resolution_x'];
                        }
                        break;

                case 'asf':
                case 'wmv':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                        }
                        if (isset($ThisFileInfo["video"]["streams"])) {
                                foreach ($ThisFileInfo["video"]["streams"] as $thisstream) {
                                        if (isset($thisstream['resolution_x'])) {
                                                $entitytags['Height'] = $thisstream['resolution_y'];
                                                $entitytags['Width'] = $thisstream['resolution_x'];
                                                break;
                                        }
                                }
                        }
                        break;
                }

                if (count($entitytags)) {
                        require_once(DIR . '/includes/local_links_entities.php');
                }

                foreach ($entitytags as $entityname=>$entityvalue) {

                        $entityexists = 0;
                        $entitygroup = ($links_defaults['id3tag_enhance_group'] ? $links_defaults['id3tag_enhance_group'] : ID3ENTITYGROUP);
                        ldm_define_entity($entityname, $entitygroup, ENTITY_TYPE_TEXT, 1);
                        if (is_array($linkentities)) {
                                foreach ($linkentities as $thisentity) {
                                        if ($thisentity['entityname']==$entityname and $thisentity['entityset']) {
                                                $entityexists = 1; // User entry takes priority
                                                break;
                                        }
                                }
                        }
                        if (!$entityexists) {
                                $linkentities[] = array('entityname'=>$entityname, 'entityvalue'=>$entityvalue, 'entityset'=>1);
                        }
                }

        }

}


AndrewD 09-26-2008 03:58 AM

Quote:

Originally Posted by 7lanet (Post 1630526)
Possible inconsistencies between LDM and its environment
- Parameter upload_enabled is enabled but parameter upload_dir is not set

You have turned on the LDM admin setting *upload_enabled* but you have not set *upload_dir*, so LDM doesn't know where you want to store uploaded files. You have to tell it.

Quote:

Originally Posted by 7lanet (Post 1630526)
- allow_url_fopen is off and cURL is not available in php.ini file - Remote downloads not available

*allow_url_fopen* is a control setting for php on your web server, in the php configuration file *php.ini*. Your site admin has set up your server so that php cannot use one of the standard ways of accessing remote files.

*cURL* is an addon library for your web server. It provides another (better) way to access remote files. Your web admin has not installed it.

Consequently, LDM cannot *manage* remote downloads - it can only manage *local* downloads. A *local* download is physically stored on your server (either an upload or a file with no url in its name). A *remote* download is a file accessed via a full url.

Quote:

Originally Posted by 7lanet (Post 1630526)
- upload_max_filesize 2M >= post_max_size 2048k in php.ini file - Large uploads may fail without warning

These are two more settings that control php's handling of uploads, also found in the php configuration file *php.ini*. They specify the maximum amount of data that can be uploaded in one go. It is good practice (but not essential) that *post_max_size* has a bigger value than *upload_max_filesize*. Otherwise, when a user tries to upload file that is bigger than *post_max_size*, some versions of php will fail to generate an error message.

abdelghani68 09-26-2008 03:02 PM

Quote:

Originally Posted by abdelghani68 (Post 1630590)
I have do the modification, added an audio, but the title don't change.

Sorry, it works !

maroceve 09-26-2008 04:40 PM

Hey there Andrew : for some reason LDM doesn't follow the style i applied to it.

Very wierd : http://www.maroceve.com/forums/local_links.php

7lanet 09-26-2008 07:45 PM

Quote:

The following setting(s) are invalid
upload_dir : /up
Cannot access or create directory /up [/up]
i can not add upload_dir

7lanet 09-26-2008 08:44 PM

where to enter the value for "upload_dir"

vbboarder 09-27-2008 01:41 AM

The 3 LDM VBA modules for New entries, Hot entries, and Random entries do not show the Categories names when "show category name" is set to "yes." I have the modules displayed on right side column, 1 entry per row, and I tried both setting specific category ids and leaving the Categories setting blank (so that all categories are searched) - no luck in getting the category names to display (testing in 2.2.9-post1).

It's probably a common bug for the 3 VBA modules since they all call ldm_vba_links to construct the links, which calls ldm_get_entrybits to construct the entrybits. Can you please fix? Will be glad to test any fixes.

AndrewD 09-27-2008 03:52 AM

Quote:

Originally Posted by 7lanet (Post 1631183)
i can not add upload_dir

Take a look at your admin settings, in particular *local_file_root* and *local_file_root_prefix*. From the error message, it looks as if you have set *local_file_root* to *yes* and left *local_file_root_prefix* unset.

With these values, by setting *upload_dir* to */up* you are telling LDM to store files in a top level directory called */up* on your file server, outside the web site. I imagine that the security settings on your server prohibit this.

Unless you have full control over your server, I suggest that you leave *local_file_root* set to *no* so that files are stored *inside* the web site. You *may* have to pre-create the upload directory (e.g. using an FTP tool), depending on the security on your server.

AndrewD 09-27-2008 04:02 AM

Quote:

Originally Posted by maroceve (Post 1631064)
Hey there Andrew : for some reason LDM doesn't follow the style i applied to it.

Very wierd : http://www.maroceve.com/forums/local_links.php

Have you checked the setting *default_style* on the ldm/admin page? Try resetting it a couple of time - for example you may have set it to a style that no longer exists. Otherwise, am happy to take a look if you send me a PM with login details.

AndrewD 09-27-2008 07:35 AM

Quote:

Originally Posted by vbboarder (Post 1631352)
The 3 LDM VBA modules for New entries, Hot entries, and Random entries do not show the Categories names when "show category name" is set to "yes." I have the modules displayed on right side column, 1 entry per row, and I tried both setting specific category ids and leaving the Categories setting blank (so that all categories are searched) - no luck in getting the category names to display (testing in 2.2.9-post1).

It's probably a common bug for the 3 VBA modules since they all call ldm_vba_links to construct the links, which calls ldm_get_entrybits to construct the entrybits. Can you please fix? Will be glad to test any fixes.

Yes, it was a common bug, introduced a couple of releases ago. Straightforward to fix but requiring changes in several places. Will include the fixes in the next release.

7lanet 09-27-2008 03:48 PM

Quote:

upload_max_filesize 32M >= post_max_size 32M in php.ini file - Large uploads may fail without warning
Do not have a file php.ini
There is only a file .htaccess

AndrewD 09-27-2008 04:48 PM

Quote:

Originally Posted by 7lanet (Post 1631676)
Do not have a file php.ini
There is only a file .htaccess

Yes, you do have a php.ini, but you probably are not able to access it. You can ignore this warning - it's not serious - just be warned that if people try to upload files bigger than this size, they may not get a correct error message.

7lanet 09-27-2008 06:24 PM

I'm the average of all licenses

I can not Upload the files I do not know what to do

7lanet 09-27-2008 09:24 PM

from where i can upload the files??

AndrewD 09-28-2008 04:24 AM

Quote:

Originally Posted by 7lanet (Post 1631873)
from where i can upload the files??

Hello,

I've visited your site and made a few tests, including uploading a file into the category you had created. It's working fine. The answer to your question 'Where do I upload the files' is - you go into the category where you want to place the file; then you select 'Add Entry'; then you are given a form for creating the entry which has a field 'Upload File'.

You had turned on a lot of the LDM options, and some of these were causing problems:

- The SEO friendly options will only work if you also configure vbSEO to work with LDM, and you had not done this. I have turned this option off for the time being. (I do not provide support for setting up vbSEO and do not have a licence for it.)

- You enabled the 'Enable automatic thread creation to announce new entries' option, but you had told it to post messages in a forum which is not open for posts. I can't check that without having access to your main vb admincp, so I turned it off. (I also can't read Arabic :))

- You enabled all the home page statistics options, which is probably not a good idea - just choose one or two of them.

The way your board is currently set up, you can only upload bmp, doc, gif, jpe, jpeg, jpg, pdf, png, psd, rar, txt, xml and zip files. If you want to add others, then install the 'add-newmimetypes' LDM extra - it's in the extras directory of the release - or send me a PM with information on how to log in to your admincp.

Hope this helps.

7lanet 09-28-2008 07:21 AM

тhank you тhank you тhank you тhank you
:up::D:up::D

Sandgrinder 09-28-2008 06:12 PM

How do I make each upload a link instead of showing everything at the same time? It's really annoying to scroll through everything.

All I'd like to see is the title and a bit of the text, then you have to click the title or maybe some "Read full upload" or something equal.

Example:
http://crinale.com/forums/local_links.php?catid=14

It's just too big and takes to much space, I just want to show a bit of the entry, not the whole one.
Many thanks!

maroceve 09-28-2008 07:36 PM

Andrew please check your pm for login info : i can't seem to fix the style issue :(

IrPr 09-29-2008 12:39 AM

Entry Reporting is buggy even in 2.3.0 Alpha cause of wrong var name in "doreport" action

local_links_action.php(2868)

Find:
PHP Code:

    $mods ldm_fetch_moderators($catid$report_usersldm_lookup_setting($thiscatidreport_email)); 

Replace with:
PHP Code:

    $mods ldm_fetch_moderators($catid$report_usersldm_lookup_setting($catidreport_email)); 


Saint_I_Am 09-29-2008 12:42 AM

I have a problem with vbadvanced integration. I have all the files integrated and have done what it says in the manual

Quote:

The main LDM script, local_links.php integrate successfully in most respects with vbAdvanced, i.e. can be set up to appear as the central column on a vbAdvanced page. There is only one serious exception: setting up the LDM Jukebox to launch "within page" creates an unpleasant mess on the screen. Use the "launch Jukebox in new window" option instead.
The only problem is that the new window cuts off half way. It would be good if the new window had vertical scroll bars so you could scroll down and see the rest of the page including the left and right sidebars of vbadvanced.

AndrewD 09-29-2008 02:12 AM

Quote:

Originally Posted by Sandgrinder (Post 1632420)
How do I make each upload a link instead of showing everything at the same time? It's really annoying to scroll through everything.

All I'd like to see is the title and a bit of the text, then you have to click the title or maybe some "Read full upload" or something equal.

Example:
http://crinale.com/forums/local_links.php?catid=14

It's just too big and takes to much space, I just want to show a bit of the entry, not the whole one.
Many thanks!

Select a different linkbit, either on the LDM admin settings or per category (edit category/control settings). The Modern (short) linkbit should do what you want, in combination with the length_shortdesc setting

AndrewD 09-29-2008 10:43 AM

Quote:

Originally Posted by IrPr (Post 1632639)
Entry Reporting is buggy even in 2.3.0 Alpha cause of wrong var name in "doreport" action

local_links_action.php(2868)

Find:
PHP Code:

    $mods ldm_fetch_moderators($catid$report_usersldm_lookup_setting($thiscatidreport_email)); 

Replace with:
PHP Code:

    $mods ldm_fetch_moderators($catid$report_usersldm_lookup_setting($catidreport_email)); 


Noted, thanks

maroceve 09-29-2008 11:32 AM

Hey andrew :) ...nevermind, i fixed the problem, thank you.


All times are GMT. The time now is 09: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.02431 seconds
  • Memory Usage 1,928KB
  • 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
  • (1)bbcode_code_printable
  • (4)bbcode_php_printable
  • (30)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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