vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=242)
-   -   Step by Step guide to speed up your VB4 OR VB3 (https://vborg.vbsupport.ru/showthread.php?t=267588)

final kaoss 05-31-2012 02:50 PM

I don't own the vbsuite but it looks like you sorted it out :)

final kaoss 06-30-2012 03:58 PM

Thread updated, pnggauntlet added to the first post to use to crush images and the cloudflare suggestion has been changed a bit too.

mathforum 08-04-2012 09:35 PM

I've installed the .htaccess additions on my site and it helped very slightly according to Google PageSpeed Insight but it still says a lot of images don't have the proper expirations specified at all, and they are all standard file extensions (.jpg, .gif, etc)

Ideas? My site is www.mathhelpboards.com

final kaoss 08-06-2012 01:53 PM

I've looked at your page and it seems that one of the issues is that Enable Keep-Alive isn't being used. Your images are actually being cached properly.

http://gtmetrix.com/reports/www.math...s.com/NKnBCSMk

This report shows you reports from google pagespeed and yahoo's yslow.

mathforum 08-12-2012 04:40 PM

Thank you! We just moved to a VPS and it appears our keep-alive settings are working better. Here is an updated report. There's still lots things that aren't optimal. CSS sprites would certainly help.

http://gtmetrix.com/reports/www.math...s.com/fZj9iHK7

darkoutzide 11-12-2012 07:55 AM

Thanks for the tip! my website is faster now :)

moustafa 11-28-2012 04:56 PM

Quote:

Originally Posted by final kaoss (Post 2332884)
Well for those of you using vb supercharged, I've managed to make it load async which means even faster!

Go to your AdminCP --> Plugins & Products --> Plugin Manager

Find Product vB4: SuperCharged

Open JS Optimiser

Replace all of the code in there with this, then save.

Code:

if($vbulletin->options['vbsc_js_enable'] == 1){

      $c_vbsc = file_exists(DIR."/clientscript/vbsc.js");
      $c_vbscsize = $c_vbsc && filesize(DIR."/clientscript/vbsc.js") > 10;
      $c_global = $c_vbsc && filemtime(DIR."/clientscript/vbulletin-core.js") < filemtime(DIR."/clientscript/vbsc.js");
     
    if((!$c_vbsc || !$c_vbscsize || !$c_global) && $vbulletin->options['vbsc_js_common'] == 1){
       
        $err = "<strong style='font-size:13px;background-color:#000;padding:5px;color:#ff9000;font-weight:bold;text-align:center;width:100%;display:block;'>";
        if(!$c_vbsc){
            $err .= "The file ".DIR."/clientscript/vbsc.js is missing. Ensure the file exists (download and extract vbsc.zip again if not) and that you have the file chmodded as per the installation instructions, then run the Compress Javascript under vB4: SuperCharged in your Admin CP. Report any errors you encounter when running Compress Javascript.<br /><br />";
        } else if(!$c_vbscsize){
            $err .= "The file ".DIR."/clientscript/vbsc.js is empty. Ensure you have the file chmodded as per the installation instructions and run the Compress Javascript under vB4: SuperCharged in your Admin CP. Report any errors you encounter when running Compress Javascript.<br /><br />";
        } else if(!$c_global){
            $err .= "The ".DIR."/clientscript/vbsc.js cache has a modification time of before ".DIR."/clientscript/vbulletin-core.js. Your cache is almost certainly out of date. Please run Compress Javascript under vB4: SuperCharged in your Admin CP.<br />If you recently updated vBulletin, you should of course run Compress CSS also :) <br />";
        }
        $err .= "To prevent issues, your forum is currently running without optimised Javascript as a fallback.<br /><br />As a last resort if you cannot get this message to disappear, disable the Javascript Optimiser.</strong>";
        $output = $err.$output;
       
    } else {
       
        /*function vbsc_removejs($var){
            //return strpos($var, "threadlist") === false;
            return true;
        }*/
       
        //eval($vbulletin->options['vbsc_js_files']);
        //$GLOBALS['js_files'] = array_filter($GLOBALS['js_files'], 'vbsc_removejs');
require_once (DIR . '/includes/vbsc_global.php');
        $GLOBALS['js_uncached'] = '';
       

        function in_arrayi( $needle, $haystack ) {
            $found = false;
            foreach( $haystack as $value ) {
                if( strtolower( $value ) == strtolower( $needle ) ) {
                    $found = true;
                }
            } 
            return $found;
        }
       
        function vbsc_jsleave($match){
            return (/*stripos($match, "FeatureLoader.js.php") !== false ||*/ stripos($match, "google_ad") !== false || stripos($match, "show_ad") !== false || stripos($match, "_google") !== false || stripos($match, "recaptcha") !== false/* || strpos($match, "treeview.css") !== false || strpos($match, "initVbTreeMenus") !== false || strpos($match, "treeview-min.js") !== false || strpos($match, "SHOW_ALL_TREE_ELEMENTS_THRESHOLD") !== false*/);
        }
       
        function vbsc_jsinline($matches){
           
            /*if(strpos($matches[0], "google_ad") !== false || strpos($matches[0], "show_ad") !== false){
                return $matches[0];
            }*/
           
            // workaround for cms sections and pm new window thing
            if(stripos($matches[0], "loadVbCss") === false && stripos($matches[0], "getBaseUrl") === false){
                if(vbsc_jsleave($matches[0]))
                    return $matches[0];
                   
                // whitelist specific terms, otherwise leave the javascript where it is as it's likely an embedded script such as ads, custom search etc.
                if(stripos($matches[0], "YAHOO") === false && stripos($matches[0], "vbulletin") === false && stripos($matches[0], "forum") === false && stripos($matches[0], "vbphrase") === false && stripos($matches[0], "vB_") === false && stripos($matches[0], "inlinemod") === false && stripos($matches[0], "vbseo") === false && stripos($matches[0], "vsa") === false)
                    return $matches[0];
            }
           
           
            if(strpos($matches[0], "SESSIONURL =") === false){
                $GLOBALS['js_uncached'] .= $matches[0];
                return '';
            } else {
                return $matches[0];
            }
        }
        //var_dump($GLOBALS["js_files"]);
       
        function vbsc_jscached($matches){
            global $vbulletin;
            //var_dump($matches);
            //$ret = "";
            //var_dump($matches);
            if(in_arrayi($matches[2], $GLOBALS["js_files"]) && strpos($matches[1], "<!--") === false && $vbulletin->options['vbsc_js_common'] == 1){
                //return "";
            } else {
                //return $matches[0];
                $GLOBALS["js_uncached"] .= $matches[0];
               
                if(strpos($matches[1], "<!--") !== false){
                    // handle IE conditional comments and normal comments
                    if(strpos($matches[1], "[if ") === false){               
                        $GLOBALS["js_uncached"] .= " -->";
                    } else {
                        $GLOBALS["js_uncached"] .= " <![endif]-->";
                    }
                }
                   
            }
           
            if(vbsc_jsleave($matches[0]))
                return $matches[0];
           
           
           
            //return strpos($matches[1], "if") !== false ? $matches[1] : $ret;
            // leave original comment opener in place as closing comment is not covered by the regex
            return $matches[1];
        }
       
        $output = str_replace(array("<!-- Editor Scripts -->", "<!-- scripts for quick reply and quick edit -->", "<!-- / ajax errors table -->", "<!-- ajax errors table -->", "<!-- lightbox scripts -->
", "<!-- / lightbox scripts -->"), "", $output);
       
        //type="text\/javascript"
        // handle potentially cached vBulletin javascript code
        $output = preg_replace_callback('/(<!--.*?]>\s+)?<script [^>]*?src=".*?clientscript\/([^?"]+).*?">\s*?<\/script>?/i', 'vbsc_jscached', $output);
       
        // handle YUI treeview code amongst other things
        $output = preg_replace_callback('/<script[^>]*?type=[\'"]text\/javascript[\'"] src="http:\/\/yui.yahooapis.com\/.*?">\s*?<\/script>/is', 'vbsc_jsinline', $output);

        // handle inline javascript code
        $output = preg_replace_callback('/<script[^>]*?type=[\'"]text\/javascript[\'"]>.*?<\/script>/is', 'vbsc_jsinline', $output);
       
        $readyfix = "";
        if($vbulletin->options['vbsc_js_common'] != 1){
            $readyfix = '<script type="text/javascript">YAHOO.util.Event.onDOMReady(function() {if(YAHOO.vBulletin.vB_XHTML_Ready) return; console.log("Fire vB_XHTML_Ready");vB_XHTML_Ready.fire();YAHOO.vBulletin.vB_XHTML_Ready = true;});</script>';
        }
     
        // append vbsc.js
        $output = preg_replace('/(<\/body>)/i', ($vbulletin->options['vbsc_js_common'] == 1 ? '<script type="text/javascript" src="clientscript/vbsc.js" async="async"></script>' : '').$GLOBALS["js_uncached"].$readyfix.'$1', $output, 1);
       
       


        //$output = preg_replace('/<script type="text\/javascript">\s+<!--\s+\/\/ Main vBulletin Javascript Initialization/', '<script type="text/javascript" src="/clientscript/vbsc.js"></script>'.$GLOBALS["js_uncached"].'$1', $output, 1);

        //$output = str_replace('SECURITYTOKEN', 'vbsc_SECURITYTOKEN', $output);   
    }
}

It will now defer the parsing of the vbsc.js file, saving a few hundred KB and increasing your page load time!


Kindly tell me where to find the JS Optimiser.

Thanks.

final kaoss 11-29-2012 01:34 PM

It's part of the plugin called vB4: SuperCharged, as it says in your quote.

moustafa 12-03-2012 02:18 PM

Quote:

Originally Posted by final kaoss (Post 2386435)
It's part of the plugin called vB4: SuperCharged, as it says in your quote.

i have the plugin but i don;t see the js optimizer, could you kindly guide me to do it?

final kaoss 12-03-2012 03:03 PM

1 Attachment(s)
You can find it here.



And you can edit the source of it by going here.

Code:

Go to your AdminCP --> Plugins & Products --> Plugin Manager

Find Product vB4: SuperCharged

Open JS Optimiser



All times are GMT. The time now is 08:07 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.01347 seconds
  • Memory Usage 1,791KB
  • 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
  • (2)bbcode_code_printable
  • (2)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