I've been playing around using FireBug / Page Speed on some of my Clients' Test and Prod Elgg sites. I see some interesting comments from running the analyses and the various recommendations. Has anyone else used FB/PS to good effect ? I'd be curious to exchange notes here. e.g. simple recommendations such as "Minifying the following CSS resources could reduce their size by 16.3KiB (17% reduction)" and "Optimizing the following images could reduce their size by 13.1KiB (32% reduction). " is staggering and reminds us how stewpid we sometimes get to be with unoptimized code... 2 am++ goodnight - I'll be back tomorrow...
I've been playing around using FireBug / Page Speed on some of my Clients' Test and Prod Elgg sites. I se some interesting comments from running the analyses and the various recommendations. Has anyone else used FB/PS to good effect ? I'd be curious to exchange notes here. e.g. simple recommendations such as "Minifying the following CSS resources could reduce their size by 16.3KiB (17% reduction)" and "Optimizing the following images could reduce their size by 13.1KiB (32% reduction). " is staggering and reminds us how stewpid we sometimes get to be with unoptimized code... 2:30 am++ goodnight - I'll be back tomorrow...
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
hehe, tired enough to post the same message twice eh?
@dhrup i have something special up my sleeve, but you need to skype me a reminder
Hey Drup, Check this out. here. I am trying to use this from last night lot of people speed up their site by using this please check this I am sure you will definately find something from it .
There is a script which combines the js and css and then compress to make page loader faster.and they use .htaccess to rewrite it.
LIke:-
RewriteEngine On
and in script they define path like.
@GH Can you post some more detailed code examples plz thx..
@dhrup Click on here on my last post or this is a site url where this thing is explainde with more detailed. amd combine.php file is also available to download.
http://rakaz.nl/2006/12/make-your-pages-load-faster-by-combining-and-compressing-javascript-and-css-files.html
And here is code for garbage collector which need to add at the bottom of this script.
// garbage collector deletes old version from cache
$dh = opendir($cachedir);
while (false !== ($filename = readdir($dh))) {
if ($filename == ‘.’ || $filename == ‘..’)
continue;
if (strpos($filename,”-”.$md5_file_list) && $filename != $cachefile)
unlink($cachedir.’/’.$filename);
}
@ dhrup any updates please..
me too, wanna know if anyone make a progress on this idea !!
there is a minify plugin in the repository. ;)
- Previous
- 1
- 2
- 3
- 4
- Next
You must log in to post replies.