Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7519465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:54:24+00:00 2026-05-30T01:54:24+00:00

YSlow report says: Grade F on Compress components with gzip There are 12 plain

  • 0

YSlow report says:
Grade F on Compress components with gzip

There are 12 plain text components that should be sent compressed

http://www.mysite.com/css/c/style
http://www.mysite.com/css/c/dd.css
http://www.mysite.com/css/c/jqueryslidemenu.css
http://www.mysite.com/assets/js/browser-detection.css
http://www.mysite.com/assets/js/jquery-1.6.min.js
http://www.mysite.com/assets/js/jquery.dd.js
http://www.mysite.com/images/jquery.pngFix.pack.js
http://www.mysite.com/assets/js/jqueryslidemenu.js
http://www.mysite.com/assets/js/browser-detection.js
http://www.mysite.com/assets/js/cufon-yui.js
http://www.mysite.com/assets/js/Futura_Bk_BT_400.font.js
http://www.mysite.com/store/ajax/getpubs.php

There are 32 static components without a far-future expiration date.

(2012/2/17) http://www.mysite.com/css/c/style
(2012/2/17) http://www.mysite.com/css/c/dd.css
(2012/2/17) http://www.mysite.com/css/c/jqueryslidemenu.css
(no expires) http://www.mysite.com/assets/js/browser-detection.css
(2012/2/15) http://www.google-analytics.com/ga.js
(no expires) http://www.mysite.com/assets/js/jquery-1.6.min.js
(1997/7/26) http://www.mysite.com/j/banner_slides
(1997/7/26) http://www.mysite.com/j/multi-click-slider
(no expires) http://www.mysite.com/assets/js/jquery.dd.js
(no expires) http://www.mysite.com/images/jquery.pngFix.pack.js
(no expires) http://www.mysite.com/assets/js/jqueryslidemenu.js
(no expires) http://www.mysite.com/assets/js/browser-detection.js
(no expires) http://www.mysite.com/assets/js/cufon-yui.js
(no expires) http://www.mysite.com/assets/js/Futura_Bk_BT_400.font.js
(no expires) http://www.mysite.com/assets/js/fonts.js
(1997/7/26) http://www.mysite.com/j/jquerycourseslide.js
(no expires) http://www.mysite.com/images/menu_bg.png
(no expires) http://www.mysite.com/images/menuArrowYellow.png
(no expires) http://www.mysite.com/images/menuArrowGrey.png
(no expires) http://www.mysite.com/images/bgHomeBanner.png
(no expires) http://www.mysite.com/images/btnHomeBannerLeft.png
(no expires) http://www.mysite.com/images/btnHomeBannerRight.png
(no expires) http://www.mysite.com/images/btnLeft.png
(no expires) http://www.mysite.com/images/btnRight.png
(no expires) http://www.mysite.com/images/select-base.png
(no expires) http://www.mysite.com/images/select-cap.png
(no expires) http://www.mysite.com/images/iconComments.png
(no expires) http://www.mysite.com/images/bgRSS.png
(no expires) http://www.mysite.com/images/bgFooter.png
(no expires) http://www.mysite.com/files/Subscriptionad4.jpg
(no expires) http://www.mysite.com/images/favicon.ico
(2000/4/19) http://www.google-analytics.com/__utm.gif?...

I have this added to my .htaccess:

<IfModule mod_headers.c>
  Header unset ETag
  Header unset Last-Modified
</IfModule>
FileETag None

<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/xml
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/x-javascript
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4\.0[678] no-gzip
  BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
  Header append Vary User-Agent env=!dont-vary
</IfModule>

<Files *.php>
  SetOutputFilter DEFLATE
</Files>

<IfModule mod_gzip.c>
  mod_gzip_on Yes
  mod_gzip_dechunk Yes
  mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
  mod_gzip_item_include handler ^cgi-script$
  mod_gzip_item_include mime ^text/.*
  mod_gzip_item_include mime ^application/x-javascript.*
  mod_gzip_item_exclude mime ^image/.*
  mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>

<IfModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 1 seconds"
  ExpiresByType text/html "access plus 1 seconds"
  ExpiresByType image/gif "access plus 2592000 seconds"
  ExpiresByType image/jpeg "access plus 2592000 seconds"
  ExpiresByType image/png "access plus 2592000 seconds"
  ExpiresByType text/css "access plus 604800 seconds"
  ExpiresByType text/javascript "access plus 216000 seconds"
  ExpiresByType application/x-javascript "access plus 216000 seconds"
</IfModule>

What adjustments need to be made in order to avoid the reports above?

Note: These are links served by ExpresssionEngine as templates with no extension:

http://www.mysite.com/css/c/style
http://www.mysite.com/j/banner_slides
http://www.mysite.com/j/multi-click-slider

ExpressionEngine gZip output is set to Yes.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T01:54:33+00:00Added an answer on May 30, 2026 at 1:54 am

    Make sure you do a hard refresh of the page (ctrl+F5). I’ve noticed YSlow using the cached header info, and therefor not show the correct info.

    Also make sure you have the appropriate apache module enabled. Check this by removing the ifmodule tags (except for the mod_gzip one, which section you can remove entirely).

    I thinks YSlow requires to has a Expires to be at least 7 days into the future, so at least 604800 seconds.

    Also remove the line: Header unset Last-Modified unless you know what it does and have a special purpose for it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can you compress inline script and style tags? YSlow says In addition to
I have come across this rule in YSlow for performance improvement that says that
Yslow recommends that you should put scripts at the bottom of the page. Where
I performed an yslow test and wondered there is an f grade for expire
YSlow says that images referenced from my CSS file (background image, for example) are
I am following this guide to optimize the YSlow Grade. http://aciddrop.com/2008/01/21/boost-your-website-load-time-with-3-lines-of-code/ I checked in
I'm almost done with this online library: http://gramma.ro I have grade C in YSlow
Is it really possible to achieve grade A in yslow for all things for
I am bulding an app and I tried YSlow and got Grade F on
I understand what a CSS expression is, YSlow is reporting that my page is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.