vb.org Archive

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

Ipuck 12-18-2007 02:27 AM

Quote:

Originally Posted by AndrewD (Post 1402950)
If you want to test LDM 2.2.8 with vb3.7, you will need the attached includes/local_links_init.php

Grateful for reports - first impression is that it still works.

I was about to post the problem here.

Thank you AndrewD you are the best!!!

Ron1213 12-18-2007 08:18 AM

First of all, great hack.

I have problem adding some news in the main LDM page, which template should make a change to add some news about files (above categories, under LDM title). I saw link_main and I wasn't sure if it's a right one.

tekguru 12-18-2007 09:39 AM

Cheers I was looking for a solution to this too!

AndrewD 12-18-2007 11:20 AM

Quote:

Originally Posted by Ron1213 (Post 1403466)
First of all, great hack.

I have problem adding some news in the main LDM page, which template should make a change to add some news about files (above categories, under LDM title). I saw link_main and I wasn't sure if it's a right one.

links_main is the right template.

You can either make the change in the template itself, or you can do it using a plugin which assigns the extra material to an entry in the '$includeinmain' array.

The template includes several 'placeholders', each of these refers to a specific entry in this array. You will find patterns like the following in the template:

Code:

<if condition="$includeinmain[precat]">
$includeinmain[precat]
</if>

The other entries in the array are called postcat, prefeat, postfeat, prelink, postlink, prestats and poststats

They appear in the logical order through the template.

derfelix 12-19-2007 12:29 PM

First.. it works great.. with 3.7 beta..

Second, i searched for multilanguage support.. for titles and descriptions.. and found somewhere in FAQ that it is not going to be supported..

So I came up with a very personal solution.. inspired by a very old hack by Joerg Z from the times where vbulletin 3.5 did not have the user profile fields phrased.. https://vborg.vbsupport.ru/showthread.php?t=98904

So i did some testing.. and it seems to work fine... but:

I only use l&d manager as a links database.. AND will never have more than 100 categories.. so i dont know what happens if it is used differently

What i'd be interested in.. is if someone knows if there is a drawback..

The principle:
When you create a cat, you enter a dummy name.. a placeholder with a dollar sign in front..
example for the category "Vbullentin Sites" you enter the name $vbull_sites_ll_name
- you do the same with description, and long description, paying attention that you have descriptive names.. example in our case: $vbull_sites_ll_desc and $vbull_sites_ll_long_desc

No special characters and no spaces in those names.. and a $ (dollar sign in front)

Now you create phrases for each entry name, description and long description..
They have to have the same varname as you entered for your category BUT without the $ dollar sign!!! .. .. in those phrases you enter the real text you want to have.. (you add those phrases in phrasemanager to group: local_links...

For this to work you need 2 file modifications..
1st..
open: local_links_include.php
and find:
PHP Code:

foreach ($linkscat as $catid => $thiscat) { 

below add:
PHP Code:

// language cats hack -------- start
    
$catname_multi trim($linkscat[$catid]['catname']);
    
$catdesc_multi trim($linkscat[$catid]['catdesc']);
    
$cattext_multi trim($linkscat[$catid]['cattext']);

    if(
substr($catname_multi,0,1) == '$' AND ($this_action != "addcat" OR $this_action != "editcat"))
    {
        
// we remove the '$'
        
$catname_multi substr($catname_multi,1);
        
// we get the phrase
        
$linkscat[$catid]['catname'] = (!empty($vbphrase[$catname_multi])) ? $vbphrase[$catname_multi] : $catname_multi;
    }
    if(
substr($catdesc_multi,0,1) == '$' AND ($this_action != "addcat" OR $this_action != "editcat"))
    {
        
// we remove the '$'
        
$catdesc_multi substr($catdesc_multi,1);
        
// we get the phrase
        
$linkscat[$catid]['catdesc'] = (!empty($vbphrase[$catdesc_multi])) ? $vbphrase[$catdesc_multi] : $catdesc_multi;
    }
    if(
substr($cattext_multi,0,1) == '$' AND ($this_action != "addcat" OR $this_action != "editcat"))
    {
        
// we remove the '$'
        
$cattext_multi substr($cattext_multi,1);
        
// we get the phrase
        
$linkscat[$catid]['cattext'] = (!empty($vbphrase[$cattext_multi])) ? $vbphrase[$cattext_multi] : $cattext_multi;
    }

// language cats hack -------- end 

then in the file local_links.php find:
PHP Code:

    $catname    htmlspecialchars_uni($linkscat[$viewcatid]["catname"]);
    
$catdesc    htmlspecialchars_uni($linkscat[$viewcatid]["catdesc"]);
    
$cattext    htmlspecialchars_uni($linkscat[$viewcatid]["cattext"]); 

and replace these 3 lines with:
PHP Code:

    // start multilang hack
    
$multilangcat $vbulletin->db->query_first("
        SELECT catname, catdesc, cattext
        FROM "
.THIS_TABLE."linkscat
        WHERE catid = '"
.$vbulletin->GPC['catid']."'
        "
);
    
//$catname    = htmlspecialchars_uni($linkscat[$viewcatid]["catname"]);
    
$catname $multilangcat['catname'];

    
//$catdesc    = htmlspecialchars_uni($linkscat[$viewcatid]["catdesc"]);
    
$catdesc $multilangcat['catdesc'];
    
//$cattext    = htmlspecialchars_uni($linkscat[$viewcatid]["cattext"]);
    
$cattext $multilangcat['cattext'];
    
// end multilang hack 

thats it...
as I said.. it seems to work.. and I will continue testing on my localhost as long as vb3.7 is still in beta...

What I'd be interested in... is if someone sees an obvious drawback...
Ok.. the cat editing is a pain.. but you do it only very seldomly.. (the extra query is only at catedit.. and only done by admin ==> me.. )

I forgot.. if the name or desc or long description do NOT start with a $ sign.. it works as designed for that cat.. so multilanguage is Not active for this cat..

I think its only a starting idea.. but surely needs to be overworked before usage..

Maybe there are better solutions.. but i didnt find any..
(more sophisticated would be to use the system vbull uses for user profile fields.. but that would require much more rewriting!!!) it basically does the same.. but creates the phrases when you enter the name.. and does the replacements in the background..

Felix

PS: this is just an idea i had while playing around.. it seems to work in my config.. but i would not use it in a production environment..

chickadee 12-19-2007 08:27 PM

Fantastic mod, just had a question:

What settings must I change if I want to create thumbnails of videos/images automatically?

Thanks so much Andrew, this mod is truly brilliant.

AndrewD 12-20-2007 03:38 AM

Quote:

Originally Posted by chickadee (Post 1404943)
Fantastic mod, just had a question:

What settings must I change if I want to create thumbnails of videos/images automatically?

Thanks so much Andrew, this mod is truly brilliant.

Currently it doesn't handle thumbnails of videos automatically, so you have to give the entry an associated image if you want something to appear.

For thumbnails of images, this is automatic - go to LDM/admin/settings/Controls on Images and Icons

Set link_imagesize to a non-zero value, and LDM will then automatically create thumbnails that size. You can use the other settings in this section to control whether the thumbs are cached, etc.

Do you know of a reliable tool for extracting the first frame/other frame from video files that works across servers? Does the imageimagic package do this?

Joep11 12-20-2007 03:51 PM

Hi Andrew,

How can I get the font size of the links larger? Tried some things but it did not work. See http://www.wereldwijzer.nl/local_links.php?catid=164

Still a great mod, thanks!

AndrewD 12-20-2007 08:00 PM

Quote:

Originally Posted by Joep11 (Post 1405535)
Hi Andrew,

How can I get the font size of the links larger? Tried some things but it did not work. See http://www.wereldwijzer.nl/local_links.php?catid=164

Still a great mod, thanks!

The links in the standard linkbit are styled with the legend style. You could either modify that style on the vb/admincp/styles or edit the links_linkbit template and apply another style.

coolgus 12-20-2007 08:32 PM

Andrew I'm facing a strange problem. It seems that many thumbnails from my entries are not showing. I can't find a pattern which causes this

AndrewD 12-21-2007 04:06 AM

Quote:

Originally Posted by coolgus (Post 1405738)
Andrew I'm facing a strange problem. It seems that many thumbnails from my entries are not showing. I can't find a pattern which causes this

We need to track gown whether these are never being created or failing to appear. Am happy to take a look at your site if you PM an admin username/password.

If you prefer to investigate yourself, start by checking that the generated html actually includes code to display the thumbs, in which case the problem may be a mismatch between actual and believed file locations. Also check the filetypes of the enties for which the images are missing, and use a database checking tool to see if the linkimg column in the linkslink table contains valid enties.

Joep11 12-21-2007 11:13 AM

Quote:

Originally Posted by AndrewD (Post 1405713)
The links in the standard linkbit are styled with the legend style. You could either modify that style on the vb/admincp/styles or edit the links_linkbit template and apply another style.

Tried to change the linkbit template but couldn't do it. Now changed the legend style. Thanks a lot!

Nam 12-21-2007 04:48 PM

Dear Andrew, I've been using LDM for a long time and still have this silly question.

I tried to hide the LDM category, I'm doing it by making it belong to a Forum A, make make the forum A hidden to unregistered. However, the category is still visible in LDM main home, except that when clicking on it, it asks to register.

How do I make that category hidden from the guests' view? Just like the forum A?

AndrewD 12-22-2007 04:29 AM

Quote:

Originally Posted by Nam (Post 1406315)
Dear Andrew, I've been using LDM for a long time and still have this silly question.

I tried to hide the LDM category, I'm doing it by making it belong to a Forum A, make make the forum A hidden to unregistered. However, the category is still visible in LDM main home, except that when clicking on it, it asks to register.

How do I make that category hidden from the guests' view? Just like the forum A?

Take a look at ldm/admin/permissions. I suspect that you have given unregistered users (etc) *can_see_protected_links_on_portal * permission. This means that they get to see the protected forums, but then get blocked/asked to register/etc when they try to access entries, depending on ldm/admin/settings *protected link*.

I am adding a new ldm permission in the next release (*can_view_category*) which will provide an easier method than forums-permissions to hide/block individual categories.

Omranic 12-22-2007 03:18 PM

Hello,
Thanks for this fantastic mod, it's a great mod really.

I have a question:
I need to: Create a main category called "Backup" & create sub-categories inside it for each customer, each sub-cat for one customer & is synchronized with a directory on the server, each sub-cat also is specified to a specific customer & so he can't (see/access) any (sub-cats/cat's content) except the one specified for him (Customers can't see others sub-cats / Like: users can't see others threads).

Is there any way doing this using LDM or extras supplied with it?
If no, so how can I do it as a custom work, if you can help with some code snippets or as least the coding principal, I would appreciate your effort.

Thanks

bugriders 12-22-2007 06:07 PM

I get his page

http://www.bugriders.be/forum/local_links/links/1

What is the problem please???

Ophelia 12-22-2007 11:40 PM

Hello Andrew,

We finally have this installed. Let me start off with a great big THANK YOU and GREAT JOB!

As always, we always want more :)

The multiple uploads are excellent. How hard would it be to also include a date to have them scheduled? We have downloads that become visible on a daily basis, and it would be excellent if we could set all of this up in one screen. I know that there is a general schedule at the top, but that only allows us one date.. for us, we need a different date for each file.

Thank you again!!

AndrewD 12-23-2007 04:54 AM

Quote:

Originally Posted by bugriders (Post 1406985)
I get his page

http://www.bugriders.be/forum/local_links/links/1

What is the problem please???

I imagine that you have enabled the 'search engine friendly' option on the LDM admin settings page, without configuring your web server to handle these. See http://www.eirma.org/wikis/index.php...e_Optimisation

AndrewD 12-23-2007 06:20 AM

Quote:

Originally Posted by SolidSnake@GTI (Post 1406863)
Hello,
Thanks for this fantastic mod, it's a great mod really.

I have a question:
I need to: Create a main category called "Backup" & create sub-categories inside it for each customer, each sub-cat for one customer & is synchronized with a directory on the server, each sub-cat also is specified to a specific customer & so he can't (see/access) any (sub-cats/cat's content) except the one specified for him (Customers can't see others sub-cats / Like: users can't see others threads).

Is there any way doing this using LDM or extras supplied with it?
If no, so how can I do it as a custom work, if you can help with some code snippets or as least the coding principal, I would appreciate your effort.

Thanks

The synchronising is straightforward and already built in.

The other part, visibility/access to given user only, is not currently available (I don't think :) - this is getting a bit complex), but not hard to add. I will include it in the next release, which should be available (at least in beta form) quite soon, depending on how much food I eat this week.

AndrewD 12-23-2007 06:22 AM

Quote:

Originally Posted by Ophelia (Post 1407186)
Hello Andrew,

We finally have this installed. Let me start off with a great big THANK YOU and GREAT JOB!

As always, we always want more :)

The multiple uploads are excellent. How hard would it be to also include a date to have them scheduled? We have downloads that become visible on a daily basis, and it would be excellent if we could set all of this up in one screen. I know that there is a general schedule at the top, but that only allows us one date.. for us, we need a different date for each file.

Thank you again!!

It's not hard to add. I'd limited the number of items that are set per-entry in order to keep the form reasonably clean. In the next release...

bugriders 12-23-2007 10:37 AM

Quote:

Originally Posted by AndrewD (Post 1407296)
I imagine that you have enabled the 'search engine friendly' option on the LDM admin settings page, without configuring your web server to handle these. See http://www.eirma.org/wikis/index.php...e_Optimisation


Exactly. Its working!

bugriders 12-23-2007 11:15 AM

Quote:

Originally Posted by Mori750 (Post 1314731)
i have same problem , Can u Help me plz? :)

I have the same problem.
Using a Dutch language board.

I don't understand the the explaination very well of AndrewD.
Is there a simple way fix it please?:o

I'm using 2.2.8 version

Gostemilov 12-23-2007 12:37 PM

OK, I thikk it was a good idea (I mean forum-based rights), but it's not working.

I tried to set the rights in PhpMyAdmin, but there is another problem.

For examle, I have 61 categories. I dont know, why You create new records for each category in local_linksadmin, but I can see

https://vborg.vbsupport.ru/

As You can see, there are no category_id 60 and 61, but there are 67, 76, 77, 78, etc.

I need to change some permisson for category_id 60 and 61.

How can I do it? Thanks.

P.S. Sorry for my English

AndrewD 12-23-2007 01:25 PM

Quote:

Originally Posted by Gostemilov (Post 1407497)
OK, I thikk it was a good idea (I mean forum-based rights), but it's not working.

I tried to set the rights in PhpMyAdmin, but there is another problem.

For examle, I have 61 categories. I dont know, why You create new records for each category in local_linksadmin, but I can see

http://photoshopia.ru/8831/ldm1.jpg

As You can see, there are no category_id 60 and 61, but there are 67, 76, 77, 78, etc.

I need to change some permisson for category_id 60 and 61.

How can I do it? Thanks.

P.S. Sorry for my English

LDM permissions can be set globally (using LDM/admin/permission) or per-category (Edit Category/permissions). You do not need to use phpmyadmin.

If you want to set the permission for category 60, go to the category with this id, edit the category, and set the required permission using the permissions tab.

Now, about the links_admin table. For each permission, there is always a row in this table for the global permission. There is also a row for each category in which you have edited the value using Edit Category.

So why not a row for each category? This is because permissions are inherited. When LDM displays a category, it looks up the nearest permission - in this category if available, in its parent category if not, and so on, until it finds the global value.

Gostemilov 12-23-2007 01:26 PM

I tried to import ldm_cats.module

Quote:

Ошибка базы данных в vBulletin 3.6.7:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO adv_modules
(`0`, `modcol`, `displayorder`, `active`, `userperms`)
VALUES
('', '1', '8', '0', '1,2,3,4,5,6,7,8,9,11');

Ошибка MySQL : Unknown column '0' in 'field list'
Номер ошибки : 1054
Дата : Sunday, December 23rd 2007 @ 06:23:31 PM
Скрипт : http://***/forum/***/vba_cmps_admin.php?do=uploadmodule
Реферрер : http://***/forum/***/vba_cmps_admin.php?do=download
IP адрес : 91.***.246.56
Имя пользователя : Gostemilov
Имя класса : vb_database
What's the problem? Thanks

AndrewD 12-23-2007 01:31 PM

Quote:

Originally Posted by bugriders (Post 1407463)
I have the same problem.
Using a Dutch language board.

I don't understand the the explaination very well of AndrewD.
Is there a simple way fix it please?:o

I'm using 2.2.8 version

Not sure which problem you are referring to?

Happy to take a look at your board if you send me a PM with details (url + an admin account)

bugriders 12-23-2007 01:34 PM

Sorry I made wrong quote...

Quote:

Originally Posted by bugriders (Post 1407463)
I have the same problem.
Using a Dutch language board.

I don't understand the the explaination very well of AndrewD.
Is there a simple way fix it please?:o

I'm using 2.2.8 version

its about...


Quote:

Originally Posted by AndrewD (Post 1315000)
LDM has to be able to read and write files on your server, and it can be prevented from doing this by security settings on your server. One of these is the php.ini setting open_basedir. This prevents php scripts from reading and writing files except in directories specified in its setting or in their subdirectories.

It looks to me as if the setting of open_basedir on your server does not allow scripts to read/write files that are actually within your web site directories (which DOC_ROOT points to).

The message

web server DocRoot /servers/httpd/htdocs seems to point to a non-existent directory

actually means "I can't find out if the directory exists or not", and the reason is that your php.ini setting of open_basedir is forbidding this to happen.

If there is a good reason for excluding your web site from the open_basedir setting, you can still get LDM to work, but you have to make sure that uploads and and files that you provide to your community are stored in directories that are authorised by open_basedir. LDM will not be able to store thumbnails of images, because these have to be placed within the web site itself.

You achieve this using the LDM settings local_file_root and local_file_root_prefix. This is explained in the wiki, see url in the first post.

If you don't understand what I'm saying, you will need to speak to your site admin


AndrewD 12-23-2007 01:37 PM

Quote:

Originally Posted by Gostemilov (Post 1407534)
I tried to import ldm_cats.module



What's the problem? Thanks

I'm sorry, I have no idea. I have just run a test to import this module and it works fine for me.

Which version of vbadvanced are you using?

AndrewD 12-23-2007 01:40 PM

Quote:

Originally Posted by bugriders (Post 1407541)
Sorry I made wrong quote...



its about...

Do you mean that you are getting warning/error messages about uploads?

This usually happens when the site's server is configured to prevent uploads. I can't be more helpful without seeing the exact information.

Gostemilov 12-23-2007 01:47 PM

Quote:

Which version of vbadvanced are you using?
- vBadvanced CMPS 2.2.1

I've upgrade to v.3.0Rc1 and there was no problem with uploading module. But I can't see this module on the main page. The module is placed in the center column and is active.

bugriders 12-23-2007 02:08 PM

Sorry Andrew. Bit confussing here. My fould!

It's about the thumbs_dir

My root is forum directory. In forum directory I have already the subdirectory images. There I made a subdirectory ldimages (as told in the instructions).

So in admin of LDM I tell him to put the thumbs in images/ldmimages/

Then I get error message:

web server DocRoot /htdocs subdirectory is not existing (translation from Dutch).

I use vbulletin 3.6.4 and LDM 2.2.8
ldmimages is CHMOD to 777
All other functions in LMD working fine till now.

Gostemilov 12-23-2007 02:25 PM

Quote:

If you want to set the permission for category 60, go to the category with this id, edit the category, and set the required permission using the permissions tab.
Thanks a lot. I forgot about this tab. It's very useful.

AndrewD 12-23-2007 02:41 PM

Quote:

Originally Posted by bugriders (Post 1407583)
Sorry Andrew. Bit confussing here. My fould!

It's about the thumbs_dir

My root is forum directory. In forum directory I have already the subdirectory images. There I made a subdirectory ldimages (as told in the instructions).

So in admin of LDM I tell him to put the thumbs in images/ldmimages/

Then I get error message:

web server DocRoot /htdocs subdirectory is not existing (translation from Dutch).

I use vbulletin 3.6.4 and LDM 2.2.8
ldmimages is CHMOD to 777
All other functions in LMD working fine till now.

I think I've seen this problem on another site - it's all to do with how the server administrator has set up things. Unfortunately, it's not easy for me to explain how to fix it, unless you are familiar with how the server is configured. I am willing to take a look at your site if you want me to, but it will have to be as an admin.

Nam 12-24-2007 03:28 AM

Dear Andrew, thanks the great hack, to me personally, it's possibly the best hack for vb ever. Enjoy and great Christmas and New Year with your family. I hope LDM will continue to improve and update for the years to come.

Best wishes and thank you,

bugriders 12-24-2007 09:53 PM

Quote:

Originally Posted by AndrewD (Post 1407610)
I think I've seen this problem on another site - it's all to do with how the server administrator has set up things. Unfortunately, it's not easy for me to explain how to fix it, unless you are familiar with how the server is configured. I am willing to take a look at your site if you want me to, but it will have to be as an admin.

What do you need?

FTP login or admin login from vbulletin software?

Is the problem and solution explainedin the tutorial (help) of LDM?

Do you know how to fix it?
Remember that my admin admin panel is also in Dutch language...

obmob 12-24-2007 10:06 PM

Hmm... i tried to update my test forum to 3.7 beta 3, i get this when entering LDM.

=======================================
Unexpected critical failure
Critical Error: Links and Downloads Manager v.2.2.7 requires VBulletin version 3.5/3.6
=======================================

Now... i'm using 2.2.8, any ideas? :p

Andrew, will you make a new thread under the new 3.7 folder? :D

HAPPY HOLIDAYS!

AndrewD 12-25-2007 04:43 AM

Quote:

Originally Posted by obmob (Post 1408645)
Hmm... i tried to update my test forum to 3.7 beta 3, i get this when entering LDM.

=======================================
Unexpected critical failure
Critical Error: Links and Downloads Manager v.2.2.7 requires VBulletin version 3.5/3.6
=======================================

Now... i'm using 2.2.8, any ideas? :p

Andrew, will you make a new thread under the new 3.7 folder? :D

HAPPY HOLIDAYS!

See https://vborg.vbsupport.ru/showpost....postcount=2760 for the immediate fix.

Most of LDM works fine with vb 3.7 once the the includes/local_links_init file is replaced.

There are problems with the member profile integration, but the fix is changing with the various betas that vb.com release.

I've now created a VB 3.7 thread and hope to be able to maintain full compatibility for a while.

And *Happy Christmas*

AndrewD 12-25-2007 04:54 AM

Quote:

Originally Posted by bugriders (Post 1408633)
What do you need?

FTP login or admin login from vbulletin software?

Is the problem and solution explainedin the tutorial (help) of LDM?

Do you know how to fix it?
Remember that my admin admin panel is also in Dutch language...

If the problem is what I think, then I need full access to your vb admincp. (Basically, I need to install a debugging plugin and then have access to your LDM admin pages. I don't need ftp access.)

LDM needs to work out the full directory path to your forum thumbs directory. Normally it gets this right by itself by checking the DOCUMENT_ROOT setting that your web server software provides, but occasionally it needs a bit of help. This has only happened once before, so I haven't discovered the rule yet.

obmob 12-26-2007 03:14 AM

Thanks Andrew!

Will take a look to the new thread! :D

benjaminkramer 12-29-2007 06:41 PM

Hi,
I moved my site to a Dedicated Server, but now I get an error by clicking on Links and Downloads Manager.
Quote:

The VBulletin administrator has disabled the Links and Downloads Manager. Unable to continue.
How can I activate Links and Downloads Manager?

Thx
Benjamin Kramer


All times are GMT. The time now is 06:22 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.06417 seconds
  • Memory Usage 1,934KB
  • 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
  • (26)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