nasawillia
New Member
I am using the chrome extension YSlow to test my site performance.I've got F Grade on Compress components with gzip\[code\]There are 15 plain text components that should be sent compressedhttp://localhost:21964/Content/custom/css/blog.csshttp://localhost:21964/Content/custom/css/style.csshttp://localhost:21964/Content/custom/css/socialize-bookmarks.csshttp://localhost:21964/Content/custom/css/prettyPhoto.csshttp://localhost:21964/Content/custom/css/flexslider.csshttp://localhost:21964/Content/custom/css/colors/color-orange.csshttp://localhost:21964/Content/sc2.csshttp://localhost:21964/Content/custom/javascript/custom.jshttp://localhost:21964/Content/custom/javascript/header.jshttp://localhost:21964/Content/custom/javascript/twitter.jshttp://localhost:21964/Content/custom/javascript/bra.photostream.jshttp://localhost:21964/Content/custom/javascript/jquery.flexslider.jshttp://localhost:21964/Content/custom/javascript/jquery.bpopup-0.7.0.min.jshttp://localhost:21964/Content/custom/javascript/prettyPhoto.jshttp://localhost:21964/css/colors/color-orange.cssCompression reduces response times by reducing the size of the HTTP response. Gzip is the most popular and effective compression method currently available and generally reduces the response size by about 70%. Approximately 90% of today's Internet traffic travels through browsers that claim to support gzip.\[/code\]There was a similar post here, But even though I've followed these steps it doesn't compress the traffic.Steps I've done:[*]I ticked all the compression settings in the IIS -> Compression.[*]Activate the Windows Feature "Dynamic Content Compression".[*]I've added this lines to the web.config:**> ...\[quote\]\[code\]<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files"> <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll"/> <dynamicTypes> <add mimeType="text/*" enabled="true"/> <add mimeType="message/*" enabled="true"/> <add mimeType="application/javascript" enabled="true"/> <add mimeType="*/*" enabled="true"/> </dynamicTypes> <staticTypes> <add mimeType="text/*" enabled="true"/> <add mimeType="message/*" enabled="true"/> <add mimeType="application/javascript" enabled="true"/> <add mimeType="*/*" enabled="true"/> </staticTypes></httpCompression><urlCompression doStaticCompression="true" doDynamicCompression="true" /> ...</system.webServer>**\[/code\]\[/quote\]I am currently using the Developer Server inside the project Properties -> Web -> Servers