1
FileUltimate not working in ASP.NET MVC4 -resource not found
Question asked by vivek p v - 7/20/2016 at 10:26 PM
Answered
When i trying to add file ultimate control to asp.net mvc 4 application,i am getting following error in console.Can anyone help on this .Whether we need to do anything in web.config ?? .Application deployedin IIS8
 
Index:84 GET localhost/internal/test/resource.ashx/636046047894729202/fu/css/fileultimate.css net::ERR_CONTENT_DECODING_FAILED
Index:86 GET ocalhost/internal/test/resource.ashx/636046047894729202/fu/library/all.js net::ERR_CONTENT_DECODING_FAILED
Index:87 GET localhost/internal/test/resource.ashx/636046047894729202/fu/js/fileultimate.js net::ERR_CONTENT_DECODING_FAILED
Index:88 GET localhost/internal/test/resource.ashx/636046047894729202/fu/localization.js?display=en&format=en-US net::ERR_CONTENT_DECODING_FAILED
Index:83 GET localhost/internal/test/resource.ashx/636046047894729202/fu/library/all.css net::ERR_CONTENT_DECODING_FAILED

1 Reply

Reply to Thread
0
Cem Alacayir Replied
Employee Post Marked As Answer
Strange, first time I see this error, after a quick search about ERR_CONTENT_DECODING_FAILED I found this:
It happens when your HTTP request's headers claim that the content is gzip encoded, but it isn't. Turn off gzip encoding setting or make sure the content is in fact encoded.
So normally FileUltimate gzip encodes its resources like CSS and JS files and caches them in a temporary folder. Do you see any related errors in Windows Event Viewer? Maybe for some strange reason (IIS configuration?) it fails to gzip the files on your server. Also please specify the FileUltimate version you are using. Let me know.

Reply to Thread