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)
-   -   Realtime Template Compressor: Reduces page sizes, loads pages faster, saves bandwidth (https://vborg.vbsupport.ru/showthread.php?t=83248)

dethfire 11-21-2005 04:36 AM

Quote:

Originally Posted by aSeEr
works fine on 3.5.1 forum .. no bugs or complains :)

actually there is a bug that hasn't been fixed, try editing a post, the compressor seems to eliminate the line breaks, so long posts with paragraphs all get lumped together

mrahul 11-21-2005 03:55 PM

is this safe to use or it still contains bugs ??

dethfire 11-21-2005 04:06 PM

Quote:

Originally Posted by mrahul
is this safe to use or it still contains bugs ??

it's safe, but the known bug is annoying sometimes

Dead End Society 11-21-2005 04:09 PM

I could not use this on my forum either, lots of my users edit posts in the advanced mode to post artwork and pictures. Once it's fixed I will install though, so I'll keep an eye out.

mrahul 11-22-2005 02:42 PM

Quote:

Originally Posted by dethfire
it's safe, but the known bug is annoying sometimes

can some one fix it out ? I have more than 10k members they use mostly advanced mode.

derekivey 11-23-2005 09:12 PM

Great Hack, I can definitely put this to use.

Thanks!

Bounce 11-23-2005 10:09 PM

Installed thanks :nervous:

Chadi 11-23-2005 10:26 PM

Anyway to remove the actual statistic "quiried in xxx" line?

richard4339 11-24-2005 04:22 AM

If you're referring to the printout at the bottom of the page, simply comment out the code that prints that with

HTML Code:

<!-- Text here -->
Forgive my extremely generic answer, it has just been a while since I changed that code.

donBLACK 11-24-2005 06:39 AM

Installs

Chadi 11-24-2005 11:57 AM

Anyone else have a better answer?

lexx27 11-25-2005 11:15 PM

Quote:

Originally Posted by Unexplained
I would only use this if/when there is a new version out for the latest Vbulletin. I used it before and it worked like it should, I would just like to see an updated version before I allow this to be running on my site again.

Mee too. I dont want to risk it

SuperFly 11-25-2005 11:17 PM

It works fine, no errors here

Running on vb 3.5.1

Detomah 11-26-2005 08:55 AM

I love this script, it works fine and is saving me a quite a bit of loading time and bandwidth...

The issue with it killing line beaks in advanced editor is a real downer though, I hope someone will be able to come up with a solution for this, it's doing my users heads in at the moment, making it a bit of a 50-50 whether I keep it installed or not at the moment.

Chadi 11-28-2005 03:14 AM

Quote:

Originally Posted by chadi
Anyway to remove the actual statistic "quiried in xxx" line?

Anyone? :)

Chadi 12-04-2005 02:38 AM

6 days now no answer :)

can someone please help? Thank you

AWI 12-09-2005 06:53 AM

Installed, not sure what the effect was on the board. How do you find out the compression rates and such?

steven s 12-09-2005 11:51 AM

Quote:

Originally Posted by AWI
Installed, not sure what the effect was on the board. How do you find out the compression rates and such?

Look at the bottom of the footer. Also note if you use multiple paragraph returns when using advanced reply, those will be removed.

Edit: It also removed additional spaces.
There should have been five spaces between [ ].

bashy 12-09-2005 07:14 PM

Hi peeps...

I am getting....

[Output: 46.51 Kb. compressed to 43.53 Kb. by saving 2.98 Kb. (6.41%)]

No problems found as yet, Using VB 3.5.2

Thanks alot

Bashy

*Bashy clicks install*

AWI 12-10-2005 04:55 AM

Quote:

Originally Posted by 1996 328ti
Look at the bottom of the footer. Also note if you use multiple paragraph returns when using advanced reply, those will be removed.

Edit: It also removed additional spaces.
There should have been five spaces between [ ].

Aaah I see it, kinda blends in. Thanks

Daracon 12-10-2005 08:18 AM

works great for me with 3.5.2, *installed*

Rickie3 12-10-2005 09:08 AM

works great *installed*
this is what i'm getting
[Output: 110.04 Kb. compressed to 104.85 Kb. by saving 5.20 Kb. (4.72%)]

tippen 12-10-2005 07:47 PM

THIS is amazing! My dial-up users are ever-so-happy!! I want to thank everyone who had any involvement in the development of this!

[Output: 27.15 Kb. compressed to 25.93 Kb. by saving 1.22 Kb. (4.49%)]

bonjurkes 12-10-2005 11:10 PM

[Output: 198.77 Kb. compressed to 189.96 Kb. by saving 8.81 Kb. (4.43%)]

its working great

Installed ;)

Stephen3 12-11-2005 05:10 AM

so it's work on 3.5.2?

Brandon Sheley 12-11-2005 06:55 AM

Quote:

Originally Posted by Stephen3
so it's work on 3.5.2?

did u read any of the post above this one ?

yes, it works on 3.5.2 :rolleyes:
at least i can assume,, it works fine for me i have 3.5.1 with the 3.5.2 patch

Zilvia 12-11-2005 04:59 PM

Installed and Uninstalled on 3.5.2

Wont use until the advanced edit spacing is fixed.

Great idea however!

Chadi 12-12-2005 01:08 AM

Quote:

Originally Posted by chadi
Anyway to remove the actual statistic "quiried in xxx" line?

I asked this 3 weeks ago and until now about 3 or 4 times. No one has answered.

Anyone care to answer?

steven s 12-12-2005 01:18 AM

Quote:

Originally Posted by chadi
I asked this 3 weeks ago and until now about 3 or 4 times. No one has answered.

Anyone care to answer?

I'm no longer using it but Plugin system -->Plugin manager
Hook Location : global_complete
Realtime Template Compressor

PHP Code:

//Logician Hack:
$page_byte=strlen($output);
$output=preg_replace ('/\r\n(\s*)/'"\r\n"$output);

$pagenew_byte=strlen($output);
$page_kilobyte=number_format(($page_byte/1024),2);
$pagenew_kilobyte=number_format(($pagenew_byte/1024),2);
$pagesaved_byte=$page_byte-$pagenew_byte;
$pagesaved_kilobyte=number_format((($pagesaved_byte)/1024),2);
$pagesaved_perc=number_format(((100*$pagesaved_byte)/$page_byte),2);

$output str_replace('</body>''<center><span class="smallfont">[Output: ' $page_kilobyte ' Kb. compressed to <b>' $pagenew_kilobyte '</b> Kb. by saving <b>' $pagesaved_kilobyte '</b> Kb. (' $pagesaved_perc '%)]</span></center></body>'$output);
//Logician Hack: 

Maybe try commenting the last line out?

Chadi 12-12-2005 02:29 AM

Thank you. That works :)

MissKalunji 12-13-2005 04:20 AM

[Output: 75.28 Kb. compressed to 72.12 Kb. by saving 3.16 Kb. (4.20%)]

what can i do to make the output lower? i hav eno idea why its so big

Dollah 12-13-2005 03:49 PM

yeah this should be good

Heo13 12-14-2005 06:32 AM

[Output: 84.84 Kb. compressed to 80.26 Kb. by saving 4.58 Kb. (5.39%)]

Seem good, but i want more compression :)

dethfire 12-14-2005 03:31 PM

paragraph break bug still exists

Moparx 12-14-2005 05:01 PM

Quote:

Originally Posted by dethfire
paragraph break bug still exists

of course it does. the plugin hasn't been updated since june..

Mudvayne 12-14-2005 06:05 PM

me clicked install :D

BiReL41r 12-16-2005 07:57 PM

Does anybody know a percentage of the faster loading times on pages?

dreamer81 12-18-2005 08:04 AM

only get about 5% so im gonna wait for something heavier...

Alviker 12-18-2005 07:10 PM

Run in 3.5.1? ^^

Atte. Alviker

steven s 12-18-2005 07:52 PM

Quote:

Originally Posted by Alviker
Run in 3.5.1? ^^

Atte. Alviker

No reason why it wouldn't.


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.03643 seconds
  • Memory Usage 1,803KB
  • 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_html_printable
  • (1)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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