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)
-   -   Template Cache System (https://vborg.vbsupport.ru/showthread.php?t=110144)

dan35 03-14-2006 07:47 PM

After I upgraded it from version 2.1 to 2.5.2 or 2.5.4, these scripts show twice on forumhome.

Members who have visited the forum (Today or last 24 hours).
https://vborg.vbsupport.ru/showthread.php?t=82769

Display count of unread posts in welcome box
https://vborg.vbsupport.ru/showthread.php?t=96522

Trigunflame 03-14-2006 07:50 PM

Quote:

Originally Posted by dan35
After I upgraded it from version 2.1 to 2.5.2 or 2.5.4, these scripts show twice on forumhome.

Members who have visited the forum (Today or last 24 hours).
https://vborg.vbsupport.ru/showthread.php?t=82769

Display count of unread posts in welcome box
https://vborg.vbsupport.ru/showthread.php?t=96522

Did you clear your cache directory after upgrading?

dan35 03-14-2006 07:51 PM

yes, I did.

Trigunflame 03-14-2006 07:58 PM

Quote:

Originally Posted by dan35
yes, I did.

Ask Paul, I havnt looked at the source of those 2 hacks; unless you didnt do something right with the install.. im not sure how he could be doing that.

Will look into it later.

dan35 03-14-2006 08:03 PM

Your version 2.1 works fine.

Reef 03-15-2006 03:03 AM

This is a cool addition but I have a double welcome panel after it gets cached.

I did clear the cache a couple tmes and get the same results after the second page load..

see attachment

EDIT:

I now also noticed my "Who has viewed thread" hack is no longer showing up

Trigunflame 03-15-2006 09:06 AM

Will work on it later, its always the damn plugins.

Trigunflame 03-15-2006 09:15 AM

Quote:

Originally Posted by Reef
This is a cool addition but I have a double welcome panel after it gets cached.

I did clear the cache a couple tmes and get the same results after the second page load..

see attachment


EDIT:

I now also noticed my "Who has viewed thread" hack is no longer showing up

Ps. Did you do a clean install of this modification as well? Between 2.5.0 and 2.5.4 were lots of changes.

MentaL 03-15-2006 12:55 PM

those wanting to sort global.php back to original

search

Code:

($hook = vBulletinHook::fetch_hook('cache_templates')) ? eval($hook) : false;
below , delete

Code:

// now get all the templates we have specified
/**
 * @author Dusty Burns (Trigunflame@charter.net)
 * @copyright 2006-2007 Dusty Burns
 * @package Vbulletin Template Cache
 * @version 2.5.0.0
 * @todo Add Shared Memory Support
 */

/*
 * Is this actually necessary?
 *
 * Probably not, but right now I don't want hacks
 * whos authors did not copy the define() for
 * THIS_SCRIPT and change it; causing us to get
 * the wrong cache and screwing the page up.
 *
 * This basically makes sure that THE_SCRIPT does
 * correspond to the actual filename being requested.
 *
 * PS. You can change .php down below this to whatever
 * file ext you use for Your PHP files: ie .php4,.php5
 */
if (THIS_SCRIPT == basename($vbulletin->script, '.php'))
{
    // Cache Templates
    $vbulletin->cache_templates = true;
   
    /*
    * It is nice to have some sort of function
    * for locking while writing data. We could
    * just use flock, but for the sake of
    * conforming to how jelsoft does some things.
    *
    * Begin Generic Lock
    */
    function tpl_cache_lock()
    {
        global $db;
        $lock_attempts = 5;
        while ($lock_attempts >= 1)
        {
            $result = $db->query_write(
                'UPDATE ' . TABLE_PREFIX . 'adminutil SET ' .
                'text = UNIX_TIMESTAMP() ' .
                "WHERE title = 'datastorelock' " .
                'AND text < UNIX_TIMESTAMP() - 15'
            );
            if ($db->affected_rows() > 0) { return true; } else { $lock_attempts--; sleep(1); }
        }
        return false;
    }
   
    function tpl_cache_unlock()
    {
        global $db;
        $db->query_write(
            'UPDATE ' . TABLE_PREFIX . 'adminutil ' .
            "SET text = 0 WHERE title = 'datastorelock'"
        );
    }
    /*
    * End Generic Lock
    */

    // Check Existance
    $tpl_cache_name = DIR . '/template_cache/' . THIS_SCRIPT . '_' . STYLEID . '.php';
                       
    // Look For Cached File
    if (@include($tpl_cache_name))
    {
        // Fake Cached Templates & Update Style
        cache_templates(array(), $style['templatelist']);
    }
    // Write Cache
    else
    {
        // Build Template Cache
        cache_templates($globaltemplates, $style['templatelist']);
       
        // Get File Lock
        if (tpl_cache_lock())
        {
            $tpl_cache = "<?php\r\n" . '$vbulletin->templatecache = ' .
            var_export($vbulletin->templatecache, true) . ';' . "\r\n?>";

            // Debugging Purposes
            if ($fp = @fopen($tpl_cache_name, 'w+'))
            {
                @fwrite($fp, $tpl_cache);
                @fclose($fp);
                unset($tpl_cache);
                tpl_cache_unlock();
            }
            // Could Not Create File
            else
            {
              tpl_cache_unlock();
              exit("Could not cache template file. The template_cache dir must be writable (CHMOD 777).");
            }
        }
    }
}
// Vbulletin Default
else
{
    // now get all the templates we have specified
    cache_templates($globaltemplates, $style['templatelist']);
}
unset($globaltemplates, $actiontemplates, $_get_edit_templates, $_templatedo);

replace with

Code:

// now get all the templates we have specified
cache_templates($globaltemplates, $style['templatelist']);
unset($globaltemplates, $actiontemplates, $_get_edit_templates, $_templatedo);

i believe thats original

Trigunflame 03-15-2006 07:31 PM



All times are GMT. The time now is 11:40 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.01468 seconds
  • Memory Usage 1,751KB
  • 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
  • (3)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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