The Arcive of vBulletin Modifications Site. |
|
vB Accelerator Details »»
|
|||||||||||||||||||||||||||||
ported & significantly improved vb 3.8 branch.
This mod is suited for medium and big boards. It reduces server load, caused by thumnails and big attachments. Includes significant recommendations for server tuning, to speedup pages loading. what's the problem with?
history: 0.9 - fixed path for duplicated attachments 0.8 - fixed back timestamp parameter & substitutions for XML output - added conversion for assets.php thumbnails (in attachments manager) 0.7 - ported to vb4 - added basic CDN support for thumbnails Download Now
Screenshots
Show Your Support
|
|||||||||||||||||||||||||||||
| 2 благодарности(ей) от: | ||
| DeMonViTo | ||
| Comments |
|
#2
|
||||
|
||||
|
Nginx config sample Code:
# Modified gzip settings: added CSS/JS,
# but completely disabled for broken browsers.
gzip_types text/plain text/css application/x-javascript text/xml text/javascript;
gzip_disable "MSIE [1-6].(?!.*SV1)";
# globally disable external access to attachments, but enable for X-Accel-Redirect
location /uploads {
internal;
}
# enable thumbnails direct access, but nothing else!
location ~* /uploads/(.*)\.thumb$ {
expires 24h;
}
# Expires for static files.
location /images/ {
expires 24h;
}
location /clientscript/ {
expires 24h;
}
location /custom { # All at once: profile pics, avatars, group images
expires 24h;
}
Apache config example TBD . Please, help to fill.
|
|
#3
|
||||
|
||||
|
Thanks... anyone tried it?
|
|
#4
|
||||
|
||||
|
This looks good. thanks for sharing.
|
|
#5
|
||||
|
||||
|
Updated mod to catch XML output & timestamp issues.
|
|
#6
|
|||
|
|||
|
Will this work along side vbOptimize and vB4: Supercharged? Are there conflicts? Duplicated features?
|
|
#7
|
|||
|
|||
|
vBOptimize is more of caching, vB4 supercharges is like "Store CSS As files" option but a little better. I don't see any conflicts.
|
|
#8
|
|||
|
|||
|
Oh cool, this looks like an improved version of my 'Attachment Optimiser' in vB4 SuperCharged - installed
|
|
#9
|
||||
|
||||
|
Thanks
installed but i am not sour if it is working anyone tried it? waiting for tests |
|
#10
|
||||
|
||||
|
Quote:
. You can check with firebug NET bookmark.Optimizing the first page load is potentially interesting, but price in your case is very high - big server load and lots of possible conflicts. |
![]() |
|
|