random1 Posted June 26, 2009 Share Posted June 26, 2009 I'm using Apache and am having an issue with the GET response header for my CSS file (others for images etc are working just fine). The results from a header HTTP watcher app I use: 00:00:03.614 0.110 483 5498 GET 200 text/css https://____/stylesheet.css 00:00:03.744 0.102 544 5498 GET 200 text/css (NS_IMAGELIB_ERROR_NO_DECODER) https://____/stylesheet.css (I used _____ to hide the url to my site) It seems to me that it an issue with MIME types on the Apache server? My Apache file includes this block: <IfModule mod_mime.c> AddType text/css;charset=UTF-8 .css </IfModule> Any great ideas for this issue? Quote Link to comment https://forums.phpfreaks.com/topic/163724-solved-apache-and-ns_imagelib_error_no_decoder/ Share on other sites More sharing options...
corbin Posted June 26, 2009 Share Posted June 26, 2009 Oddly enough, that appears to be an error code associated with something Mozilla makes. https://developer.mozilla.org/en/Table_Of_Errors >.< If you take out the charset=UTF-8 part of the AddType command, do you still get that? I'm not sure if AddType type;other_attribs ext is valid... I think you might only be able to specify a type there. Edit: Oh, if that is the problem, you could do: AddCharset UTF-8 .css Quote Link to comment https://forums.phpfreaks.com/topic/163724-solved-apache-and-ns_imagelib_error_no_decoder/#findComment-863968 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.