Tagged Questions
a tool written by Yahoo! that analyzes web pages and suggests ways to improve their performance
14
votes
5answers
4k views
Is “Put Scripts at the Bottom” Correct?
In the Best Practices to improve web site Performance http://developer.yahoo.com/performance/rules.html, Steve Souders mentioned one rule "Move Scripts to the Bottom". It's a little confusing. ...
9
votes
5answers
161 views
Is using inline Javascript better sometime then external to save http request, if code inside javascript file is not much?
I'm using a External JavaScript in a website as I always try to keep JavaScript at bottom and external always
But Google page speed is giving this suggestion
The following external resources have ...
8
votes
5answers
8k views
Tomcat Compression Does Not Add a Content-Encoding: gzip in the Header
I am using Tomcat to compress my HTML content like this:
<Connector port="8080" maxHttpHeaderSize="8192"
maxProcessors="150" maxThreads="150" minSpareThreads="25"
maxSpareThreads="75" ...
7
votes
1answer
531 views
Add Expire Headers in php cant make it work
I have Yslow add-on installed
When I checks my application in Yslow I get Add Expires headers which I don't know
I searched for relevant questions in SO and also Google I found this method ...
6
votes
2answers
179 views
How reliable is HTTP compression using gzip?
YSlow has suggested that I use HTTP compression to improve the performance of my site. However, as noted by Yahoo that are some problems.
There are known issues with browsers
and proxies that ...
5
votes
3answers
2k views
How to enable YSlow in Firefox?
I have installed the latest versions of YSlow and Firebug into the latest version of Firefox on Windows 7 (and restarted Firefox), but when I click on YSlow nothing happens. Also, when I click on ...
5
votes
2answers
293 views
How much time would be good to set in expire header for a website?
"Web pages are becoming increasingly
complex with more scripts, style
sheets, images, and Flash on them. A
first-time visit to a page may require
several HTTP requests to load all the
...
5
votes
7answers
1k views
YSlow recommendations. How necessary are they?
So I've just downloaded yslow for firebug and have taken a look at the results for a site I am building.
I'm seeing recommendations, for example, to use ETags, cookie-free domain for my static ...
4
votes
1answer
233 views
YSlow rule 8 (Make JavaScript and CSS External) vs valid html5
I like YSlow. And try use common sense when following it's rules. But for fun I'm trying to get my ASP.NET MVC site to score a 100. And I'm almost there (at 99 for the moment, even mirrored my site to ...
4
votes
2answers
291 views
Is there a Perl alternative to YSlow?
I'd like to have a tool in Perl to gather useful statistics for page loads (eg, download time/speed, CDN information, headers, dns lookups, compressions)
Does anyone know if one exists or if there's ...
4
votes
1answer
614 views
Seeing duplicate http requests in server logs
I have started a small django application in my machine. When i have seen the request logs I figured out that It is actually logging the same requests twice.
After a little investigation, I disabled ...
3
votes
2answers
94 views
Cant find why some small images are taking 10 seconds to load
I am trying to optimize my site to accomplish at least 90 on YSlow and PageSpeed.
I am doing pretty well. But in the following result, there are 4 images that show that take 9-10 seconds to load. If ...
3
votes
1answer
80 views
Why is mod_deflate not supported by my hosting company?
I was just doing some testing with YSlow and it's telling me:
Grade F on Compress components with gzip: There are 10 plain text
components that should be sent compressed
I know that Apache 1.3 ...
3
votes
1answer
90 views
is this true? “Gzipped items will not have the same etags (even if the content did not change)”
Is it true that we should disable etags if we are compressing with apache because the etags will be different each time?
Is it true for deflate too?
Thanks
3
votes
5answers
481 views
CSS/HTML: Does using max-height on images help HTML rendering?
I just finished reading YSlow recommendation to always define the image dimensions (height/width) to improve HTML rendering performance.
However, I don't know the image dimension I'm linking too.
...
2
votes
2answers
454 views
gzip working but YSlow indicates it's not
I'm getting used to Firebug and YSlow in particular. One of the things I'm looking at is the gzip compression. YSlow still gives my site an "F" and indicates that my CSS and JavaScript files are not ...
2
votes
3answers
56 views
How important are website optimizations?
Currently I am running Apache and MySQL and I hear about people talking about GZipping content, something about ETags, using a CDN, adding expire headers, minifying text documents, combining script ...
2
votes
1answer
546 views
YSlow & Google Page Speed's advice on .htaccess conflict
Thanks in advance for your help.
I've been experimenting with YSlow and Google page speed, both provide very helpful advice and neither seems to have an advantage over the other but when it comes to ...
2
votes
2answers
131 views
PHP Library to test loading speeds
I was wondering whether there is a simple PHP library to test the loading speed of a web page or a single resource similar to Google Page Speed and Yahoo! YSlow.
The reason is that I'd like to build a ...
2
votes
5answers
1k views
Compress components with gzip - J2EE
I am looking to improve front-end performance of my application, so I used YSlow tool in Firefox. When I ran this tool for my app, in the YSlow grade tab it showed up a issue 'Grade F on Compress ...
2
votes
1answer
738 views
YSlow giving inconsistent results on ETags
When I run YSlow against my site, I get an "F" on the "Configure ETags" item; it claims that there are no etags for many (all?) of my images, stylesheets, etc.
However, if I run the test on one of ...
2
votes
5answers
643 views
Wordpress site painfully slow
What tools are there out there for determining why a site takes so long to load pages?
I'm using a very simple theme that I changed to fit my needs, it's a brand new site with only two test posts and ...
2
votes
2answers
2k views
Trying to implement “far-future expiration date” for static files in django
I am attempting to use the far future expires method to cut down my site's load time.
However when I access static files in firefox, the server still responds with HTTP/1.x 304 NOT MODIFIED. The ...
2
votes
4answers
221 views
My HTML INPUT is not valid markup, please help
On my web site, I have the following code:
<input type="image" src="images/btn.png" alt="Submit" border="0" height="25" width="102" />
When I run my web site through one of the many HTML ...
2
votes
3answers
4k views
YSlow gives F grade to files compressed with mod_deflate
Hey all,
I'm using mod_deflate on Apache 2.2 and the compression level is set to 9. I've fine tuned every possible aspects of the site based on the recommendations of YSlow (v2) and have managed ...
2
votes
2answers
2k views
How to preload an ENTIRE web page
How can you preload an entire web page using JavaScript so that I can get that page cached in the users browser?
I know how to preload images with JS but what I would like to do is preload the entire ...
2
votes
4answers
811 views
Yslow alternatives - Optimisations for small websites
I am developing a small intranet based web application. I have YSlow installed and it suggests I do several things but they don't seem relevant for me.
e.g I do not need a CDN.
My application is slow ...
1
vote
2answers
45 views
How to trigger browser html refresh for cached html files?
YSLOW suggests: For static components: implement "Never expire" policy by setting far future Expires header.... if you use a far future Expires header you have to change the component's filename ...
1
vote
2answers
37 views
What are the tools to check performance of the page rendered?
I am using Yslow recommendations, to improve UI/page performance. Are there any tools to benchmark and test that? I want to take the initial benchmark of the page, the processing time, rendering time, ...
1
vote
1answer
30 views
Add to CDN in ySlow Chrome extension
I've added CDN on my php site and all of a sudden AJAX requests stopped working.
What would have caused this issue!?
Do I have to take CDN out? If so, what could I do to achieve this?
1
vote
1answer
67 views
YSlow - What does clicking add CDN do?
I was going over my YSlow results for an internal web application and I clicked the Add CDN button. Now I have an A rating for using a CDN.
What just happened?
1
vote
1answer
128 views
Where can I find jQuery UI examples that minimize load time and honor YSlow with scripts at the bottom?
Most of the jQuery and jQuery UI examples that I find have the scripts in the header but according to the YSlow performance rules it is best to put scripts at the bottom. That way the UI gets renders ...
1
vote
2answers
191 views
tools.gzip appears not to compress content in cherrypy
I'm reviewing my development site with the Yslow tool under Chrome and Firefox, and one of the suggestions is that I gzip appropriate content. As a starting point I just added "tools.gzip.on = True" ...
1
vote
2answers
197 views
Any way to automate YSlow? Or an alternative which has an API?
Is there a way to automate YSlow or use it programmatically? I don't have enough knowledge to write my own Firefox extension to tap into YSlow.
There's a similar question but it's over a year old and ...
1
vote
2answers
260 views
YSlow reports “no expire date” and “not cacheable”
I have a wep page: http://uranussup.info. I ran a yslow test. There are a lot of requests (20) and it says "Content is not cacheable" and "No expire date." How can I fix it?
1
vote
2answers
267 views
YSlow recommendations. In IIS, why wouldn't Enable Content Expiration be checked by default in
i just ran yslow against my website and i had a question around Expiry Headers: YSlow gave me an : Grade F on Add Expires headers. There are 20 static components without a far-future expiration ...
1
vote
1answer
432 views
.htaccess - How to set expires to date in past?
I noticed that Google sets the expiration of its HTML to a date in the past:
Expires Thu Jan 01 1970 00:00:00
How do I configure .htaccess to do this? I use ExpiresByType to set the expiration of ...
1
vote
1answer
164 views
gzipping of components not working according to yslow
I have the following setup in my web.config (within system.webSever tag) to compress components such as javascript and css with gzip. However it does not seem to be working as when I run YSlow against ...
1
vote
2answers
723 views
Yslow will not recognise my telerik CDN hostnames
Anyone had a problem getting YSlow to score CDN properly with MS or Telerik static content?
For me it actually says it's using my hostname preferences but then lists them all as components not on ...
1
vote
0answers
192 views
setting up cookieless domain for static resources
I am running an asp.net web application on IIS7 with .net 3.5.
To improve my Yslow score I am looking at implementing a cookieless domain for my static resources such as images, css and javascript.
...
1
vote
1answer
302 views
PHP function for getting file size and loading time for a page
Similar to my last question, I'd like to have a PHP function that can take a local path and tell me (a) how much the total file size is for HTML, CSS, JS and images, and (b) the total load time for ...
1
vote
2answers
213 views
Combining JavaScript files as recommended by YSlow - optimal size?
We have about 30 external JavaScripts on our page. Each is already minified.
To reduce HTTP requests and page load time, we are considering combining them to a single file.
This was recommended by ...
1
vote
4answers
219 views
Is it really possible to achieve grade “A” in yahoo's yslow for all things for a dynamic/CMS website?
Is it really possible to achieve grade "A" in yslow for all things for a dynamic and CMS(PHP/Asp.net) based websites? and using same server.
...
1
vote
3answers
155 views
Figuring out page size with YSlow / Web Developer extension
I'm trying to figure out how much javascript is being loaded on my website. I'm using Reducisaurus to shrink my js files. The problem is, this is causing both YSlow and the Web Developer extension ...
1
vote
7answers
5k views
.htaccess, YSlow, and “Use cookie-free domains”
One of YSlow's measurables is to use cookie-free domains to serve static files.
"When the browser requests a static
image and sends cookies with the
request, the server ignores the
cookies. ...
1
vote
3answers
238 views
Why does rolling up javascript or css in rails screw with the layout?
On a few occasions now when I've moved from development to staging, I've been bitten by how JavaScript and stylesheets change their behaviour when rolled up into a single file.
For example, I'm ...
1
vote
4answers
585 views
How to avoid this? Yslow -> “This page has 5 external stylesheets. Try combining them into one.”
I have multiple themes on my website and users can just switch between multiple themes by clicking on a javascript link. I have 5 CSS files to handle the layout of all of the themes.
1 is for ...
0
votes
3answers
33 views
will there be a performance issue if i use background images
I came to know that, if we dont give width and height attr. in image tag there will be a performance isssue.
I have a div element for which i'm setting width and height in percentages. Also the same ...
0
votes
1answer
31 views
YSlow Primed Cache - Wrong Pie Chart
The problem that i have is like this:
I did a YSlow test and under the Statistics Pie Chart View i have a wrong pie chart diagram. The Empty cache displays 11 requests and the primed cache displays 2 ...
0
votes
1answer
78 views
Etag's are not being taken out of css,js, and images?
I'm attempting to reduce the loading speed of my site by using mod_deflate and mod_headers, which compresses the content and sets expire dates but also deletes the ETag's for my content. It is not ...