Tagged Questions
0
votes
1answer
115 views
Getting minify (css/js compression) to work on dedicated server
I am using minify http://code.google.com/p/minify/
or https://github.com/mrclay/minify/
I have no trouble getting min to work on my local environment, and localhost:8888/min/f=min/quick-test.css ...
0
votes
0answers
328 views
Minification and GZip won't work together
I am using the bundling and minification support to minify my css and Javascript files in my MVC 3 project. The minification works fine but the minified files seem to pass through without compression ...
0
votes
1answer
5k views
Error 330 net::ERR_CONTENT_DECODING_FAILED with Minify on first load
Minify is a PHP5 minifier for JS and CSS files : http://code.google.com/p/minify/
When I modify a CSS file then reload the page via Google Chrome, on the first load, I have this error :
Error 330 ...
3
votes
2answers
858 views
How can I estimate the size of my gzipped script?
How can I estimate the size of my JavaScript file after it is gzipped? Are there online tools for this? Or is it similar to using winzip for example?
1
vote
3answers
2k views
how to setup htaccess to send gizzped js and css files
I've seen some related posts with similar questions, but it didn't resolved my issues so i'm creating a new question here.
I've compressed js && css files using gzip. The js files are ...
2
votes
4answers
283 views
What do I do with this 800kb javascript file?
I read that concatenating and possibly gzipping a javascript file will make an application run faster, so I decided to give it a go.
I figured most of my pages (although not all) were downloading at ...
0
votes
2answers
155 views
Why do I lose data when I minify JS and CSS with GZip?
I had a weird problem about GZip and I hope you can help me.
using (MemoryStream memoryStream = new MemoryStream(10240))
{
//isCompressed will be true if the browser accepts gzip
using (Stream ...
6
votes
1answer
703 views
Complete solution to Combine, Minify and GZIP your Styles AND Scripts on Asp.Net MVC3 using Razor
Sorry for my bad English, but i guess it won't be a problem. I just wan't to share a nice Helper Class that i made to combine, minify and gzip our scripts and styles using the Microsoft Ajax Minifier. ...
1
vote
2answers
123 views
GZIP + whitespace removal regex, or just GZIP
Should I remove spacing characters from stuff like HTML / CSS / JS before serving them GZipped?
Would that decrease their size even more?
1
vote
1answer
507 views
gzipping a minified .js file
I've minified a .js file, and everything is just fine. But, when I gzip, the browser no longer executes the file. What am I doing wrong? Here's the gzip command:
> gzip test.js
Which results in ...
1
vote
2answers
291 views
git pull with gzip files in repo?
I have a repo that contains my minified css/js files. Some of them are gzipped. When i go between staging and production doing push and pulls it tries to auto merge and fails on the gz ones citing ...
13
votes
5answers
620 views
Is there a benefit to minifying Javascript before gzipping it?
Is there some valid purpose to minifying before compressing? It seems highly unlikely that the gzipped file is smaller if it's minified first.
I ask because diagnosing production problems in ...
5
votes
3answers
976 views
Combining deflate and minify - am i creating overhead?
I minify my css and js files on the fly with google.codes minify. I have also set my .htaccess to use deflate on all my css and js files - the reason beeing some js files (like shadowbox and tinymce) ...
59
votes
12answers
9k views
Gzip versus minify
I had a somewhat lively discussion the other day about minifying Javascript and CSS versus someone who prefers using Gzip.
I'll call this person X.
X said that Gzip allready minifies the code, since ...
