vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Links and Downloads Manager (https://vborg.vbsupport.ru/showthread.php?t=91107)

AndrewD 10-10-2005 08:50 AM

Quote:

Originally Posted by elsupremo
Unfortunately, it's true - accepting a moderated link does not remove it from the moderation queue.

However - I just checked something, I could be wrong - but if you have anything other than "0" in the Review frequency field of the link properties, then it will stay in the moderation queue. So, if you want the entries gone, put "0" in that field and it will be gone.

David

OK, will investigate - I wish software didn't take on a life of its own!!

AndrewD 10-10-2005 03:15 PM

Quote:

Originally Posted by benj
so andrew how do you get this built in media jukebox thing to work then? enabled it for mp3s added a link to an mp3 doesnt work :S any ideas :P playing atm lovin this so far man......


cheers

benj

This is indeed an interesting question.

The jukebox worked correctly through version 1.61 and that version still works correctly today. However, I find that I cannot get the version 2.0.x to work at all. I'm not sure why, as I don't think I've changed any of the code (obviously I must have). It fires up the windows media player correctly but refuses to play anything.

I wrote this as an add-on for someone who said that it was very important to him, and then decided that he didn't want it after all. I wonder - is this actually a very useful feature? If you have an mp3-aware application on your pc, then this will load and run anyway when you click on an mp3 file. I'm not sure what advantage there is to having it play inside an embedded media player running in the browser.

If anyone can give me good reasons for this feature, I'll continue to try to fix it, otherwise it seems like a feature that could be removed.

AndrewD 10-10-2005 04:15 PM

Quote:

Originally Posted by elsupremo
Unfortunately, it's true - accepting a moderated link does not remove it from the moderation queue.

However - I just checked something, I could be wrong - but if you have anything other than "0" in the Review frequency field of the link properties, then it will stay in the moderation queue. So, if you want the entries gone, put "0" in that field and it will be gone.

David

Bug confirmed. As you say, it occurs when there is a value other than zero in the review frequency field. It will be fixed in 2.0.6, but in the meantime, if this is urgent, the fix in version 2.0.5 is as follows.

Edit local_links.php. Go to line 1881 to 1893, which read as follows:

Code:

        if ($submit == 'submit') {

                if ($statuscheck == $LINK_NO_ACCESS) {
                        $err = $vbphrase['ll_error_protocol'].' '.$linkurl.' <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
                        eval(standard_error($err));
                        exit;
                } elseif ($statuscheck == $LINK_NO_REMOTE_DOWNLOADS) {
                        $err = $vbphrase['ll_error_remote'].' '.$linkurl.'. <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
                        eval(standard_error($err));
                        exit;
                }

                $statustime = TIMENOW;

Move line 1893
Code:

                $statustime = TIMENOW;
immediately before 1881, ie just before the if test, so that the code reads as follows:
Code:

        $statustime = TIMENOW;
        if ($submit == 'submit') {

                if ($statuscheck == $LINK_NO_ACCESS) {
                        $err = $vbphrase['ll_error_protocol'].' '.$linkurl.' <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
                        eval(standard_error($err));
                        exit;
                } elseif ($statuscheck == $LINK_NO_REMOTE_DOWNLOADS) {
                        $err = $vbphrase['ll_error_remote'].' '.$linkurl.'. <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
                        eval(standard_error($err));
                        exit;
                }


Boofo 10-10-2005 04:21 PM

My version 2.0.5 already reads like the fix.

AndrewD 10-10-2005 05:14 PM

Quote:

Originally Posted by Boofo
My version 2.0.5 already reads like the fix.

Check again! I've just looked at the code sitting on this site and it reads as I said. It's a subtle change - just moving one line up a dozen lines.

elsupremo 10-10-2005 06:45 PM

Quote:

Originally Posted by AndrewD
This is indeed an interesting question.

The jukebox worked correctly through version 1.61 and that version still works correctly today. However, I find that I cannot get the version 2.0.x to work at all. I'm not sure why, as I don't think I've changed any of the code (obviously I must have). It fires up the windows media player correctly but refuses to play anything.

I wrote this as an add-on for someone who said that it was very important to him, and then decided that he didn't want it after all. I wonder - is this actually a very useful feature? If you have an mp3-aware application on your pc, then this will load and run anyway when you click on an mp3 file. I'm not sure what advantage there is to having it play inside an embedded media player running in the browser.

If anyone can give me good reasons for this feature, I'll continue to try to fix it, otherwise it seems like a feature that could be removed.


When I tried this feature recently, it worked approximately 1/20 times. My point here is that it does work on occasion, although I am not sure what is the variable that allows it to work or not.

I do not see a very important reason for this function to remain. I believe there are better "jukebox" modifications out there made expressly for that purpose.

Boofo 10-10-2005 07:51 PM

Quote:

Originally Posted by AndrewD
Check again! I've just looked at the code sitting on this site and it reads as I said. It's a subtle change - just moving one line up a dozen lines.

I know, sir. I've checked it over and over again and it is already fixed in the version I have. ;)

elsupremo 10-10-2005 08:38 PM

Quote:

Originally Posted by Boofo
I know, sir. I've checked it over and over again and it is already fixed in the version I have. ;)

Lol, this is a funny one. :)

Benj 10-10-2005 10:53 PM

Quote:

Originally Posted by AndrewD
This is indeed an interesting question.

The jukebox worked correctly through version 1.61 and that version still works correctly today. However, I find that I cannot get the version 2.0.x to work at all. I'm not sure why, as I don't think I've changed any of the code (obviously I must have). It fires up the windows media player correctly but refuses to play anything.

I wrote this as an add-on for someone who said that it was very important to him, and then decided that he didn't want it after all. I wonder - is this actually a very useful feature? If you have an mp3-aware application on your pc, then this will load and run anyway when you click on an mp3 file. I'm not sure what advantage there is to having it play inside an embedded media player running in the browser.

If anyone can give me good reasons for this feature, I'll continue to try to fix it, otherwise it seems like a feature that could be removed.


NOOOOOOOO! Keep it i need it coz as you might remember i plan to play mp3s thru this addon. and my artists dont want people to be able to download there mp3's just stream them. i dunno if it would be possible with the media player thing / or will be possible in some other way but i was gonna make a flash player so users can only stream music from my site not download it... this is kinda crutal to my site. unless you have anyother ideas that is :rolleyes: :D


cheers andrew

AndrewD 10-11-2005 03:58 AM

Quote:

Originally Posted by Boofo
I know, sir. I've checked it over and over again and it is already fixed in the version I have. ;)

Now I understand. I broke this between the beta 2.0.5 and the final 2.0.5. You must have got the beta code installed.

AndrewD 10-11-2005 03:59 AM

Quote:

Originally Posted by benj
NOOOOOOOO! Keep it i need it coz as you might remember i plan to play mp3s thru this addon. and my artists dont want people to be able to download there mp3's just stream them. i dunno if it would be possible with the media player thing / or will be possible in some other way but i was gonna make a flash player so users can only stream music from my site not download it... this is kinda crutal to my site. unless you have anyother ideas that is :rolleyes: :D


cheers andrew

OK, will investigate.

bhxtyrant 10-11-2005 04:08 AM

Hey andrew,having a bit of a problem here,I just upgraded our forums and installed the update for this mod and everything works fine on the outside but on the inside when i try to change anything in the "settings and permissions" area of the admin page i get the following error

Quote:

The following setting(s) are invalid
days_seen_on_portal : 0,0
Return
i have tried changed the option for "days seen on portal" to many different ones from 0 and up but it still get this error.I think it may be because i upgraded from the old 1.60 but im not sure.any help would be appreciated :)

AndrewD 10-11-2005 04:23 AM

Quote:

Originally Posted by bhxtyrant
Hey andrew,having a bit of a problem here,I just upgraded our forums and installed the update for this mod and everything works fine on the outside but on the inside when i try to change anything in the "settings and permissions" area of the admin page i get the following error



i have tried changed the option for "days seen on portal" to many different ones from 0 and up but it still get this error.I think it may be because i upgraded from the old 1.60 but im not sure.any help would be appreciated :)

Do you get exactly the same error regardless of the value you put in the option field? If so, I think that the form must be returning the wrong value to the code. Take a look at your main admincp/style manager and see if the system is showing rthat you mave multiple versions of templates like links_admin_onesetting_start, etc. If so, it's picking up the wrong template - perhaps the old versions were not cleared out during the upgrade (should have happened automatically).

If this is the not the problem, go to the links admin/settings page, do a 'view source', and email me the result - ad_rodin (at) noos.fr. Also a dump of the local_linksadmin table from your database.

GrendelKhan{TSU 10-11-2005 04:56 AM

is there any word on an UPLOAD feature in future update? that feature is still killing me in my going back and forther between this and the vbDownloads hack. ;)

AndrewD 10-11-2005 05:00 AM

Quote:

Originally Posted by GrendelKhan{TSU
is there any word on an UPLOAD feature in future update? that feature is still killing me in my going back and forther between this and the vbDownloads hack. ;)

The word is *mark this very carefully and pay me in gold coins* - the alpha code is written and running on my PC and should be ready for beta testing soon.

To briefly explain:

Upload will be handled as an additional field on the 'add link' form. It is only visible when
a) the current user's usergroup has *can_upload_files* permission
b) the master switch *uploads_enabled* is turned on
c) the total disk space used for uploads is less than a per-site maximum

Uploads will only be available for file with recognised mimetypes according to the standard vb admin settings.

OK

bhxtyrant 10-11-2005 05:29 AM

Quote:

Originally Posted by AndrewD
Do you get exactly the same error regardless of the value you put in the option field? If so, I think that the form must be returning the wrong value to the code. Take a look at your main admincp/style manager and see if the system is showing rthat you mave multiple versions of templates like links_admin_onesetting_start, etc. If so, it's picking up the wrong template - perhaps the old versions were not cleared out during the upgrade (should have happened automatically).

If this is the not the problem, go to the links admin/settings page, do a 'view source', and email me the result - ad_rodin (at) noos.fr. Also a dump of the local_linksadmin table from your database.

No i don't get the same error exactly depending on the value.The error looks like this.
Quote:

The following setting(s) are invalid
days_seen_on_portal : 30,0
with the number "30" before ",0" changing to whatever value i put in for "days seen on portal"

I checked templates and nope only one set of templates for LDM is showing up.I will e-mail you the source in a moment but i wont have access to get you the mysql dump until our admin is online.Thanks for the help.

PtP 10-11-2005 05:38 AM

I am having the same problem, just a little more info to help, whatever I imput into that field it aphends ,30 to it ie: I put 0 in I get 0,30 as the error and if I put 30 in I get 30,30. Hope this helps in diagnosis.


Quote:

Originally Posted by bhxtyrant
Hey andrew,having a bit of a problem here,I just upgraded our forums and installed the update for this mod and everything works fine on the outside but on the inside when i try to change anything in the "settings and permissions" area of the admin page i get the following error



i have tried changed the option for "days seen on portal" to many different ones from 0 and up but it still get this error.I think it may be because i upgraded from the old 1.60 but im not sure.any help would be appreciated :)


bhxtyrant 10-11-2005 05:42 AM

yep that is the same thing i get,i have determined that the two numbers in the error message are from

"days_seen_on_portal"=0 and "default_forumid"=0
Which looks like this 0,0 in the error message.

Besides this everything else seems to work perfectly.

:EDIT: e-mail sent

i also notice when i go to edit/create a new link that in the "Parent Forum" portion in the old version it used to have a list of all my forums on vB but now the only thing there is "Parent Forum,None" :ermm:

Benj 10-11-2005 08:46 AM

Quote:

Originally Posted by AndrewD
The word is *mark this very carefully and pay me in gold coins* - the alpha code is written and running on my PC and should be ready for beta testing soon.

To briefly explain:

Upload will be handled as an additional field on the 'add link' form. It is only visible when
a) the current user's usergroup has *can_upload_files* permission
b) the master switch *uploads_enabled* is turned on
c) the total disk space used for uploads is less than a per-site maximum

Uploads will only be available for file with recognised mimetypes according to the standard vb admin settings.

OK

andrews a legend ;)

AndrewD 10-11-2005 09:49 AM

Quote:

Originally Posted by bhxtyrant
i also notice when i go to edit/create a new link that in the "Parent Forum" portion in the old version it used to have a list of all my forums on vB but now the only thing there is "Parent Forum,None" :ermm:

Precisely .. that is what I must track down.

bhxtyrant 10-11-2005 10:04 AM

I see,thanks for the replies and help by the way.Also note that i just tried uninstalling and reinstalling LDM through the admin panel but didnt help any.I still get the same issues.

On a more positive note i really love the way the new version is set up,It's so easy to customize templates in the version.I made a similar setup in vB as well to make it a bit easier for myself.Last time on 3.0 i was hard coding all my templates which took up a lot of time.

I would just say the heck with it and reinstall the mod from scratch (as it worked perfectly fine when i installed it for testing on another server) but if i were to do that i would have to re-add the 2000 links in my database and re-create the catagories/sub catagory structure :ermm: good luck.I will get you that mysql dump asap.

AndrewD 10-11-2005 03:17 PM

Quote:

Originally Posted by bhxtyrant
yep that is the same thing i get,i have determined that the two numbers in the error message are from

"days_seen_on_portal"=0 and "default_forumid"=0
Which looks like this 0,0 in the error message.

Besides this everything else seems to work perfectly.

:EDIT: e-mail sent


i also notice when i go to edit/create a new link that in the "Parent Forum" portion in the old version it used to have a list of all my forums on vB but now the only thing there is "Parent Forum,None" :ermm:


You've turned off the Forum Jump menu in the main vb admincp , haven't you... For the time being, the problem should go away if you turn if back on - at least for long enough to set the value you want for the days_seen_on_portal and default_forum_id parameters. I'll investigate further - I had handled this situation correctly with VB3.0, but I need to work out the fix for vb35.

AndrewD 10-11-2005 03:51 PM

Some of you are experiencing problems with setting the days_seen_on_portal and default_forumid parameters. I think you will find that you have switched off the forumjump in your main vb admin. You can fix the problem in one of two ways:

Either
a) Turn Use Forum Jump back on for the length of time you need to set these parameters

or

b) Patch local_linksadmin.php. At line 184, change
Code:

        construct_forum_jump();
to read
Code:

// Force construct_forum_jump to return a result even if user has turned off the forumjump menu
        $vbulletin->options['useforumjump'] = 1;
        construct_forum_jump();

The same bug also hits the add link, edit link, add category and edit category forms, which may lack a forum selection list is you have turned off forum jumps. The solution is exactly the same, at the relevant places in local_links.php.

This will be fixed in the next release of LDM.

bhxtyrant 10-11-2005 06:03 PM

Hey Andrew,Yes thats what it was alright.We have the ForumJump menu disabled on our forums because we really have to use for it as all links are clearly accessable on menu's and such on our forums/site.I applied your fix and it's now working perfectly.Thanks alot for helping with the problem. :) i love the new version so far.lots of nice features.

Blackbeard 10-11-2005 06:21 PM

Iam having one small problem, thumbnail images are not being shown, set to 64, not using tables but the other option, i get a white square with unable and i cannot read rest of message, what am i doing wrong.

Also is there a way to link it with ftp site with username and password as it will not connect to one.

bhxtyrant 10-11-2005 06:24 PM

Quote:

Originally Posted by Blackbeard
Iam having one small problem, thumbnail images are not being shown, set to 64, not using tables but the other option, i get a white square with unable and i cannot read rest of message, what am i doing wrong.

Also is there a way to link it with ftp site with username and password as it will not connect to one.

About the image problem,I had the same issue a while back and it was because we didnt have GD installed on our server.Do you know if you have it?

Blackbeard 10-11-2005 06:27 PM

Links and Downloads Database
Code 2.0.5
MySQL 4.0.25-standard
PHP 4.4.0
allow_url_fopen Yes
cURL Yes
GD2 Yes

looking at the table at bottom of settings its says yes and i dont have problems displaying thumbnails on the forum

AndrewD 10-11-2005 06:45 PM

Quote:

Originally Posted by Blackbeard
Iam having one small problem, thumbnail images are not being shown, set to 64, not using tables but the other option, i get a white square with unable and i cannot read rest of message, what am i doing wrong.

The string probably reads 'unable to load ...' which means that the thumbnail display script has not been able to read the file. Try creating a new link in which you use the image filename as the link itself, and see if clicking on it works. Do any thumbnails work or is it just this one?

Quote:

Originally Posted by Blackbeard
Also is there a way to link it with ftp site with username and password as it will not connect to one.

I have not tried this, but I had not coded anything special for usernames/passwords. Are you using the fopen or curl interface? Curl, if available, is used by default.

bhxtyrant 10-11-2005 07:58 PM

Just noticed another small problem which is more then likely the same issue in another file.In any "edit" menu for catagories,sub catagories or mass edit's the same problem with only "Parent Forum" and "none" showing up.I checked out the Local_links.php file and noticed it uses the same code "construct_forum_jump();" so i tried adding the same fix but it didnt seem to work lol thought it would be easy but i guess not.Any possible fix for that as well?

TundraSoul 10-11-2005 11:31 PM

Here's a suggestion for this to make searching the database more accurate and useful.

When you add or edit a link, offer the ability to associate the link with a an item from the users profile. For instance, lets say the user is from California, and there's a user profile field with a list of states, one being California. When I add a link, I could choose California and other states and that creates an association between that link and the user. For that matter all uses who have California in their profile.

The point here is to associate the information in the users profile field with links in the links database. When the user returns to the links database they can optionally search for new links and be shown what's relevant to them. This association can be useful with many types if links or downloadable content. You could have profile fields for locations, hobbies, vehicles, schools, etc, and put groups of links together based on the users apparent interest.

Wolven 10-12-2005 02:28 AM

AndrewD: I wanted to take a moment to say thank you, both for the wonderful module for my site, and the amazing amount of assistance that you have offered to everyone.
I just went through and read all 19 pages of conversation, and even when people have been rude to you, you've been quietly helpful. I have just installed it, and got it working with a little bit of twiddling around. The only reason I had trouble is my own foolishness, (goofed the permissions) and I now have a nice private list of links on my site.
I'm working on figuring out a way to add an image to each category.

So, to sum up, thank you for your hard work and your kind words. Have a wonderful day. :_)

AndrewD 10-12-2005 04:06 AM

Quote:

Originally Posted by TundraSoul
Here's a suggestion for this to make searching the database more accurate and useful.

When you add or edit a link, offer the ability to associate the link with a an item from the users profile. For instance, lets say the user is from California, and there's a user profile field with a list of states, one being California. When I add a link, I could choose California and other states and that creates an association between that link and the user. For that matter all uses who have California in their profile.

The point here is to associate the information in the users profile field with links in the links database. When the user returns to the links database they can optionally search for new links and be shown what's relevant to them. This association can be useful with many types if links or downloadable content. You could have profile fields for locations, hobbies, vehicles, schools, etc, and put groups of links together based on the users apparent interest.

Thank you - you're well ahead of me here :) In fact, when I get the requested extensions and bug fixes done, I intend to start work on a new hack or module or something to do more or less what you are suggesting:

- allows keyword associations - just as you say - to point directly at entries in LDM, and ideally also at posts/threads
- allows users to define keywords of interest to them and to manage those lists
- provide a generic interface between these and, e.g., vbAdvanced, so that the user can see what's new, etc
- use this also as the guts of a glorified version of the apache error 404 trap, so that requests to go to /yoursite/keyword either take the user directly to a particular page or carry out a keyword search.

Any further ideas? I don't know how long this will take me and/or if part of the job is already done.

AndrewD 10-12-2005 04:08 AM

Quote:

Originally Posted by Wolven
AndrewD: I wanted to take a moment to say thank you

and thank you too

Quote:

Originally Posted by wolven
I'm working on figuring out a way to add an image to each category.

have you tried using a bbcode, i.e an img tag in the category description or extended description?

AndrewD 10-12-2005 04:14 AM

Quote:

Originally Posted by bhxtyrant
Just noticed another small problem which is more then likely the same issue in another file.In any "edit" menu for catagories,sub catagories or mass edit's the same problem with only "Parent Forum" and "none" showing up.I checked out the Local_links.php file and noticed it uses the same code "construct_forum_jump();" so i tried adding the same fix but it didnt seem to work lol thought it would be easy but i guess not.Any possible fix for that as well?

Yes, it is the same issue - I had tried this yesterday and thought the same fix worked, but will check again - it's at lines 766, 891, 1230 and 1351 in local_links.php

bhxtyrant 10-12-2005 05:06 AM

Thanks once again for the reply Andrew.I will give it another shot and let you know my results.

@at the above suggestion of associating keywords.I must say i love that idea!I think it would be an exellent addition.I have tried many different hacks here and of them all i have to say yours are the best.Your one of the few i have seen that think everything through before tossing a hack/mod online.I look foward to seeing your future mods.Thanks again.

:EDIT:yes you were 100% correct Andrew,It seems i missed one of the lines around line 1400 which needed to be moddified with the code you provided.All is now working :)

TundraSoul 10-12-2005 05:03 PM

Here's another suggestion.

If a user doesn't have access to view a link, I would like to let me know this before they tried to view it. For instance, next to the link display a message like (Register to View) or (Subscribe to View) whatever. This sounds like something you could do in the templates, but I'm not sure.

The default vB no permission template that users are shown when they have no access to a link just doesn't do it for this application.

Wolven 10-12-2005 05:43 PM

Quote:

Originally Posted by AndrewD
and thank you too


have you tried using a bbcode, i.e an img tag in the category description or extended description?

Aye. I am looking to put the image directly beneath the category name, making it a clickable link, just like the category name itself. As a test, I enabled HTML and added the img src=/dir/file.png to it, which I thought worked wonderfully. Then I actually clicked the link, and up top, the HTML was part of the displayed category name. So it showed up like:
Library <img src=/dir/file.png>
I'll keep plugging away at it. :_)

Thank you again.

AndrewD 10-12-2005 05:47 PM

Quote:

Originally Posted by TundraSoul
Here's another suggestion.

If a user doesn't have access to view a link, I would like to let me know this before they tried to view it. For instance, next to the link display a message like (Register to View) or (Subscribe to View) whatever. This sounds like something you could do in the templates, but I'm not sure.

The default vB no permission template that users are shown when they have no access to a link just doesn't do it for this application.

I'd come to the same conclusion myself. It is an easy template change, which I will add.

AndrewD 10-12-2005 05:49 PM

Quote:

Originally Posted by Wolven
Aye. I am looking to put the image directly beneath the category name, making it a clickable link, just like the category name itself. As a test, I enabled HTML and added the img src=/dir/file.png to it, which I thought worked wonderfully. Then I actually clicked the link, and up top, the HTML was part of the displayed category name. So it showed up like:
Library <img src=/dir/file.png>
I'll keep plugging away at it. :_)

Thank you again.

Yes, the code traps bbcodes in the title, but doesn't trap html. You're the first that has pointed this out.

EasyTarget 10-12-2005 05:51 PM

here's a thread with a list of suggestions/features that people were requesting if you wanted to go through it.

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


All times are GMT. The time now is 10:49 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.03068 seconds
  • Memory Usage 1,907KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (29)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