vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - 8WayRun.Com - Media Library (https://vborg.vbsupport.ru/showthread.php?t=240677)

Veer 04-22-2010 10:09 PM

Quote:

Originally Posted by Jaxel (Post 2025496)
Okay... small change to the internal hoster... I changed it from "internal" to "localvideo" and "localaudio"

Yeah, I see, It is nice.

So is it required to upload audio files locally? I think we can make audio hosters too.

Jaxel 04-22-2010 10:17 PM

================================================== =========
Version 4.0.4 XHTML VALIDATED AND THUMBNAIL REWRITE
================================================== =========
  • CHANGE: Thumbnails are now stored in "/customVID/thumbs/" (default) directory.
    UPGRADERS: If you are upgrading to 4.0.4 from a previous edition of this mod, you can now delete all the "/customVID/0-9/" thumbnail folders, but should make sure to CHMOD the "/customVID/thumbs/" folder to 777. In addition, upgraders will be required to run the "Rebuild Thumbnail Process" to generate thumbnails in the appropriate folder.
  • CHANGE: Administrate Services control panel is more streamlined for editing.
  • CHANGE: This mod is now 100% XHTML certified using the W3C XHTML Validator.
  • NEW FEATURE: You can now enable/disable the autoplay feature in media.
    UPGRADERS: If you are upgrading to 4.0.4 from a previous edition of this mod, you must MANUALLY make changes in your services to handle the new "autoplay" setting. The new Administrate Services page will make this update process easy. Just read THIS POST and copy and paste the recommended embed codes into the appropriate Edit Service page.
  • NEW FEATURE: You can now host media locally on your server! Media must be uploaded to the "/customVID/" (default) directory. Then you can add the media to the library by using the codes "localvideo:filename.ext" or "localaudio:filename.ext" as the Media URL on the submit form. You can also add subdirectories inside of "/customVID/"; so if you uploaded "/customVID/intros/SC2intro.mkv", you can add it as a video to your library with "localvideo:intros/SC2intro.mkv". Media hosted locally will be displayed using JWPlayer, but will not provide meta data, so that kind of information will need to be entered manually.
  • BUG FIX: Comments and Descriptions will now parse URLs into BBcode.
  • BUG FIX: Auto-Create Threads will now properly update forum last post times.
  • BUG FIX: Deleting a media will now properly delete the assosciated thumbnail.
  • BUG FIX: Fixed report page for those not using Search Engine Optimization.
  • BUG FIX: Fixed RSS Feeds for those not using Search Engine Optimization.

Juggernaut 04-22-2010 11:00 PM

I ran the upgrade, but the descriptions of the videos are still not being saved.
Also comments are not being saved :(

Jaxel 04-22-2010 11:12 PM

Destron, redownload the package and reupload the INCLUDES folder. I made one small change; tell me if that fixes your problems.

Juggernaut 04-22-2010 11:21 PM

Thank you, I can now comment on the videos, however, when I attempt to edit a comment made, the newly edited comment isn't saved, they can not be edited. Sorry to bother you, but the spanish language characters still don't show in the comments. :)
Last thing the video description edits aren't saved either. :)

Jaxel 04-22-2010 11:30 PM

Destron, are you using SEO slugs? Are you using the most recent version of the HTACCESS file? It sounds like the QSA error that a fixed a couple of days ago.

Juggernaut 04-22-2010 11:34 PM

I don't have a SEO plugin, but I have search optimization turned on, also I pasted your htaccess to the bottom of my regular htaccess file. :)
Should I not use the htaccess if I don't have a SEO plugin?

Veer 04-22-2010 11:38 PM

Upgraded to 0.4 I got these errors when rebuilding thumbnails:
Code:

Warning: Division by zero in [path]/media/media_functions_builds.php on line 29  Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: gd-jpeg: JPEG library reports unrecoverable error: in [path]/media/media_functions_builds.php on line 37  Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: '[path]/customVID/thumbs/1102.jpg' is not a valid JPEG file in [path]/media/media_functions_builds.php on line 37  Warning: imagecopyresampled(): supplied argument is not a valid Image resource in [path]/media/media_functions_builds.php on line 38
After complete I noticed that MegaVideo thumbnails are not created, what to do now?

Veer 04-22-2010 11:49 PM

I'm unable to MANUALLY make changes in services, clicking on "Edit Service" does not show anything.

P.S After updating new htaccess its working fine now.

Found another problem when add megavideo it do not auto load video informations like title, desc, length, tags etc

your24hourstore 04-22-2010 11:50 PM

its working great thanks man semding some cash now:D

Jaxel 04-23-2010 12:20 AM

Quote:

Originally Posted by Veer (Post 2025657)
Upgraded to 0.4 I got these errors when rebuilding thumbnails:
Code:

Warning: Division by zero in [path]/media/media_functions_builds.php on line 29  Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: gd-jpeg: JPEG library reports unrecoverable error: in [path]/media/media_functions_builds.php on line 37  Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: '[path]/customVID/thumbs/1102.jpg' is not a valid JPEG file in [path]/media/media_functions_builds.php on line 37  Warning: imagecopyresampled(): supplied argument is not a valid Image resource in [path]/media/media_functions_builds.php on line 38
After complete I noticed that MegaVideo thumbnails are not created, what to do now?

Interesting... can you replace the contents of the plugin "media ADMIN thumb" with the following code and tell me if that works? I don't actually use MegaVideo, and I know their RSS feed is so out of whack it took me a bit just to get it working...

Code:

if ($_REQUEST['do'] == 'chooser')
{
        print_form_header('misc', 'rebuild_media_thumbs');
        print_table_header("Rebuild Media Thumbnails", 2, 0);
        print_description_row("This function will rebuild the thumbnails in the media library.");
        print_input_row("Number of media to process per cycle", 'perpage', 50);
        print_input_row("Media ID Staring Location", 'startat', 0);
        print_submit_row("Rebuild Media Thumbnails");
}

if ($_REQUEST['do'] == 'rebuild_media_thumbs')
{
        require_once(DIR . '/media/media_functions_builds.php');
        require_once(DIR . '/media/media_functions_hrefs.php');
       
        if (empty($vbulletin->GPC['perpage']))
        {
                $vbulletin->GPC['perpage'] = 50;
        }

        $finishat = $vbulletin->GPC['startat'] + $vbulletin->GPC['perpage'];

        echo '<p>' . "Rebuild Media Thumbnails" . '</p>';

        $medias = $vbulletin->db->query_read_slave("
                SELECT * FROM " . TABLE_PREFIX . "media as media
                LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
                WHERE mediaID >= " . $vbulletin->GPC['startat'] . " AND mediaID < $finishat
                ORDER BY mediaID
                ");

        while ($media = $vbulletin->db->fetch_array($medias))
        {
                echo construct_phrase($vbphrase['processing_x'], $media['mediaID']) . " - <a href=\"../" . construct_href_details($media) . "\" target=\"_blank\">" . $media['title'] . "</a><br />"; vbflush();

                if ($media['svcThumb'])
                {
                        if (($media['svcName'] == "LocalVideo") || ($media['svcName'] == "LocalAudio"))
                        {
                                echo ' - LOCAL MEDIA - SKIPPING THUMBNAIL RECONSTRUCTION<br />';
                        }
                        else
                        {
                                $media['feed'] = str_replace('{serviceVAL}', $media['serviceVAL'], $media['svcFeed']);
                                $feed['serviceVAL'] = $media['serviceVAL'];

                                require_once(DIR.'/includes/class_xml.php');
                                require_once(DIR.'/includes/class_vurl.php');

                                $vurl = new vB_vURL($vbulletin);
                                $vurl->set_option(VURL_URL, $media['feed']);
                                $vurl->set_option(VURL_USERAGENT, 'vBulletin/' . FILE_VERSION . ' | Media');
                                $vurl->set_option(VURL_RETURNTRANSFER, 1);
                                $vurl->set_option(VURL_TIMEOUT, 30);
                                $result = $vurl->exec();

                                $xmlobj = new vB_XML_Parser($result);
                                $arr = $xmlobj->parse();
                                eval("\$thu = $media[svcThumb]");

                                if (!$thu)
                                {
                                        echo '<blockquote><br />ERROR CONSTRUCTING THUMBNAIL<br />
                                                <a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a></blockquote>';
                                        exit;
                                }

                                build_thumbnail($thu, $media['mediaID']);
                        }
                }

                echo '<img src="/'.$vbulletin->options['media_thumb_dir'].'/thumbs/'.$media['mediaID'].'.jpg"><br />';
                vbflush();

                $finishat = ($media['mediaID'] > $finishat ? $media['mediaID'] : $finishat);       
        }

        if ($checkmore = $vbulletin->db->query_first("SELECT mediaID FROM " . TABLE_PREFIX . "media WHERE mediaID >= $finishat LIMIT 1"))
        {
                print_cp_redirect("misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&startat=$finishat&pp=" . $vbulletin->GPC['perpage']);
                echo "<p><a href=\"misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&amp;startat=$finishat&amp;pp=" . $vbulletin->GPC['perpage'] . "\">" . $vbphrase['click_here_to_continue_processing'] . "</a></p>";
        }
       
        define('CP_REDIRECT', 'misc.php');
        print_stop_message('updated_threads_successfully');
}


Veer 04-23-2010 12:29 AM

Quote:

Originally Posted by Jaxel (Post 2025669)
Interesting... can you replace the contents of the plugin "media ADMIN thumb" with the following code and tell me if that works? I don't actually use MegaVideo, and I know their RSS feed is so out of whack it took me a bit just to get it working...

Code:

if ($_REQUEST['do'] == 'chooser')
{
        print_form_header('misc', 'rebuild_media_thumbs');
        print_table_header("Rebuild Media Thumbnails", 2, 0);
        print_description_row("This function will rebuild the thumbnails in the media library.");
        print_input_row("Number of media to process per cycle", 'perpage', 50);
        print_input_row("Media ID Staring Location", 'startat', 0);
        print_submit_row("Rebuild Media Thumbnails");
}

if ($_REQUEST['do'] == 'rebuild_media_thumbs')
{
        require_once(DIR . '/media/media_functions_builds.php');
        require_once(DIR . '/media/media_functions_hrefs.php');
       
        if (empty($vbulletin->GPC['perpage']))
        {
                $vbulletin->GPC['perpage'] = 50;
        }

        $finishat = $vbulletin->GPC['startat'] + $vbulletin->GPC['perpage'];

        echo '<p>' . "Rebuild Media Thumbnails" . '</p>';

        $medias = $vbulletin->db->query_read_slave("
                SELECT * FROM " . TABLE_PREFIX . "media as media
                LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
                WHERE mediaID >= " . $vbulletin->GPC['startat'] . " AND mediaID < $finishat
                ORDER BY mediaID
                ");

        while ($media = $vbulletin->db->fetch_array($medias))
        {
                echo construct_phrase($vbphrase['processing_x'], $media['mediaID']) . " - <a href=\"../" . construct_href_details($media) . "\" target=\"_blank\">" . $media['title'] . "</a><br />"; vbflush();

                if ($media['svcThumb'])
                {
                        if (($media['svcName'] == "LocalVideo") || ($media['svcName'] == "LocalAudio"))
                        {
                                echo ' - LOCAL MEDIA - SKIPPING THUMBNAIL RECONSTRUCTION<br />';
                        }
                        else
                        {
                                $media['feed'] = str_replace('{serviceVAL}', $media['serviceVAL'], $media['svcFeed']);
                                $feed['serviceVAL'] = $media['serviceVAL'];

                                require_once(DIR.'/includes/class_xml.php');
                                require_once(DIR.'/includes/class_vurl.php');

                                $vurl = new vB_vURL($vbulletin);
                                $vurl->set_option(VURL_URL, $media['feed']);
                                $vurl->set_option(VURL_USERAGENT, 'vBulletin/' . FILE_VERSION . ' | Media');
                                $vurl->set_option(VURL_RETURNTRANSFER, 1);
                                $vurl->set_option(VURL_TIMEOUT, 30);
                                $result = $vurl->exec();

                                $xmlobj = new vB_XML_Parser($result);
                                $arr = $xmlobj->parse();
                                eval("\$thu = $media[svcThumb]");

                                if (!$thu)
                                {
                                        echo '<blockquote><br />ERROR CONSTRUCTING THUMBNAIL<br />
                                                <a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a></blockquote>';
                                        exit;
                                }

                                build_thumbnail($thu, $media['mediaID']);
                        }
                }

                echo '<img src="/'.$vbulletin->options['media_thumb_dir'].'/thumbs/'.$media['mediaID'].'.jpg"><br />';
                vbflush();

                $finishat = ($media['mediaID'] > $finishat ? $media['mediaID'] : $finishat);       
        }

        if ($checkmore = $vbulletin->db->query_first("SELECT mediaID FROM " . TABLE_PREFIX . "media WHERE mediaID >= $finishat LIMIT 1"))
        {
                print_cp_redirect("misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&startat=$finishat&pp=" . $vbulletin->GPC['perpage']);
                echo "<p><a href=\"misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&amp;startat=$finishat&amp;pp=" . $vbulletin->GPC['perpage'] . "\">" . $vbphrase['click_here_to_continue_processing'] . "</a></p>";
        }
       
        define('CP_REDIRECT', 'misc.php');
        print_stop_message('updated_threads_successfully');
}


Okay, give me the link to retry from the custom position because I don't wanna rebuild all thumbnails again, these are 1000+ you know :D

Code:

<a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a>

rotor 04-23-2010 01:16 AM

Upgrade to .4 went fine :D

rebuild all ok :D

comment edit working perfectly :D

all good ..... I guess I'm all smiles lol :D :D :D


Thx for the mod .... it's great!!

Jaxel 04-23-2010 01:34 AM

Quote:

Originally Posted by Veer (Post 2025674)
Okay, give me the link to retry from the custom position because I don't wanna rebuild all thumbnails again, these are 1000+ you know :D

Code:

<a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a>

You can enter a starting position on the form to start the rebuild process.

Veer 04-23-2010 01:44 AM

Quote:

Originally Posted by Jaxel (Post 2025697)
You can enter a starting position on the form to start the rebuild process.

oh yes, got it working now.

thanks :)

Juggernaut 04-23-2010 01:51 AM

I'm running vBulletin 4.0.3, but the video description editing is not saving the edits :(

Jaxel 04-23-2010 02:37 AM

Quote:

Originally Posted by Destron (Post 2025709)
I'm running vBulletin 4.0.3, but the video description editing is not saving the edits :(

You're the only one having this problem... I can't reproduce it.

Juggernaut 04-23-2010 02:52 AM

Thank you for trying, maybe I'll try a clean install of the latest version and see if that helps. :D

TimberFloorAu 04-23-2010 03:02 AM

Note on Navbar link reads : media.php? instead of media.php

Pedantic but fix would be good.

freni32 04-23-2010 04:39 AM

I have VBSEO so the url-rewrites I want arent working so have to go to the old fashioned thread that doesnt have the keywords in the url, wish someone had a fix for vbseo

j?rgk 04-23-2010 04:45 AM

Hello,

we have Problems with German Charakters " ö ä ü ß " they will not show correct in the comments and in the description of the videos!

I hope you can fix this!

Great Mod. Thank you

Jaxel 04-23-2010 04:45 AM

Quote:

Originally Posted by freni32 (Post 2025753)
I have VBSEO so the url-rewrites I want arent working so have to go to the old fashioned thread that doesnt have the keywords in the url, wish someone had a fix for vbseo

Ask on the VBSEO forums. Honestly, if you have an apache server and VB4, you shouldn't be using VBSEO. VBSEO does rewrites through code execution, instead of actual apache rewrite rules. Additional code execution will only bog your server down, while apache rewrite is pretty much instant and doesn't add much of any additional server load.

Delilahs 04-23-2010 04:48 AM

done the upgrade and still unable to create more categories.

Juggernaut 04-23-2010 05:13 AM

I uninstalled everything and re-installed the mod, but I still have the same problem.
Can't use spanish characters nor can I edit the video descriptions. :(

mobe00 04-23-2010 06:29 AM

ok jaxel now the rss feed works, but something is wrong after you did the thumbnail edit in customvid 0-9 over to customvid/thumbs.. the images links in rss feed doesnt work cause the links is looking in customvid/0-9 / filename... i did all the update counters on thumbs and media info. But still the same result..also on a newly posted video

here is an example on the rss feed image link

http://www.xxxx.xx/customVID/1/ArAlwupRy6c.jpg

cause when i go into Media and right click on the image and choose copy image url this is the url i get which is correct
http://www.xxxxxx.xx/customVID/thumbs/69.jpg

how can i fix that the links inn rss feed look like this http://www.xxxx.xx/customVID/thumbs/69.jpg instead ???

Arcania 04-23-2010 09:06 AM

Quote:

Originally Posted by cindy helmond (Post 2024923)
dont see the Admin Control Panel (vBulletin 4.0.3) in the media mod any help ?
cant make any caterogies is this an bug ?

Report its not working
thx

Quote:

Originally Posted by xxalexkimxx (Post 2025261)
On the Media page, you will see the Admin control area option at the Sub menu of the Media page. It is working 100%, really mod, I enjoy it! Except the SEO that didn't work for me because I'm using vBSEO.

I have the same Problem. All permissions are set. When I enter the URL (ex. media.php?do=admin_host_edit&sid=$1) it works. But no Admin Control Area is shown...

Gn_Snake 04-23-2010 10:34 AM

Hi,
i have error during import plugin
Code:

?Altering Table usergroup ...Done!
?Creating Table HG_media ... Done!
?Creating Table HG_media_category ... Done!
?-- Adding Category Row General ...
Warning: require_once([path]/includes/class_dm_media_category.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/functions.php on line 115

Fatal error: require_once() [function.require]: Failed opening required '/var/www/virtual/hardwaregame.org/htdocs/forum/includes/class_dm_media_category.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/virtual/hardwaregame.org/htdocs/forum/includes/functions.php on line 115

:confused:

Rahstyles 04-23-2010 10:58 AM

Can sombody install this for me please?

your24hourstore 04-23-2010 01:03 PM

Quote:

Originally Posted by Rahstyles2008 (Post 2025873)
Can sombody install this for me please?

have you tried already to install it?

your24hourstore 04-23-2010 01:15 PM

did a complete reinstall and got the product working , and i did install this product first, then started adding in others. the only thing that isn't working now is google adsense ads don't appear. wondered if anyone else is seeing this or using the adsence program?

Solved this. wasnt an issue with this mod, it was VB, they neglected to ad the adsence file to the most recent download of 4.0.3.
So cause a problem with new installs. Also there is a new patch for that version 4.0.3pl1
I find the easiest way to do them is
1. download the new file
2. unzip it and delete the images file, favicon. ico, and install,php
3 zip it back up and upload it to the appropriate files

and run http://yourdomain.com/yourforum/install/upgrade.php
your done

Delilahs 04-23-2010 01:58 PM

could it be that the people who have google adsense cant get the admin links and vice versa?

I'll disable some forum ads to see what happens this end

edit; just tried it and no difference.

kefallon 04-23-2010 02:41 PM

Quote:

Originally Posted by cindy helmond View Post

dont see the Admin Control Panel (vBulletin 4.0.3) in the media mod any help ?
cant make any caterogies is this an bug ?

Report its not working
thx

Originally Posted by xxalexkimxx View Post

On the Media page, you will see the Admin control area option at the Sub menu of the Media page. It is working 100%, really mod, I enjoy it! Except the SEO that didn't work for me because I'm using vBSEO.

I have the same Problem. All permissions are set. When I enter the URL (ex. media.php?do=admin_host_edit&sid=$1) it works. But no Admin Control Area is shown...
Exactly the same issue,have not got VBSEO, anyone got a fix???

By_X1903 04-23-2010 02:45 PM

Turkish char. problem?

What happened...

stwan 04-23-2010 03:11 PM

How to update the Video-Directory 1.3.0 in the Media Library 4.0.4?

Jaxel 04-23-2010 03:12 PM

For anyone who is having problems getting links to appear with permissions in the navbar... there is a "work-a-round" you can do. It will enable the links for EVERYBODY (they will be stopped with a permission error if they can't use the links, so security is still intact). I believe this problem is an error with VB itself not handling permissions in plugins on some forums. Go into the plugin: "media NAVTAB":

Find the line:
Code:

$perms = media_permissions();

REPLACE with:
Code:

$perms['submit'] = true;
$perms['modtags'] = true;
$perms['modcategory'] = true;
$perms['modservice'] = true;


Jaxel 04-23-2010 03:18 PM

It appears the language issues are only with AJAX... I'm looking into it...

mobe00 04-23-2010 03:34 PM

Quote:

Originally Posted by mobe00 (Post 2025792)
ok jaxel now the rss feed works, but something is wrong after you did the thumbnail edit in customvid 0-9 over to customvid/thumbs.. the images links in rss feed doesnt work cause the links is looking in customvid/0-9 / filename... i did all the update counters on thumbs and media info. But still the same result..also on a newly posted video

here is an example on the rss feed image link

http://www.xxxx.xx/customVID/1/ArAlwupRy6c.jpg

cause when i go into Media and right click on the image and choose copy image url this is the url i get which is correct
http://www.xxxxxx.xx/customVID/thumbs/69.jpg

how can i fix that the links inn rss feed look like this http://www.xxxx.xx/customVID/thumbs/69.jpg instead ???

What about this problem , can you solve this one ? :)

kefallon 04-23-2010 03:54 PM

Worked at treat, THANKS

Delilahs 04-23-2010 04:16 PM

Jaxel, that's fixed it. thanks

fluidswork 04-23-2010 04:24 PM

Great addition to vb .....


All times are GMT. The time now is 05:11 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.03165 seconds
  • Memory Usage 1,893KB
  • 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
  • (9)bbcode_code_printable
  • (12)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