Hello, I am developping a social networking site in rails, it can be found at the url www[dot]string[dot]be My problem is that firefox doesn''t seems to find/interpret the css linked to it. Everything works fine in other browsers (IE, safari, Opera) but not in firefox. Does anybody have a clue ? Geoff -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> Hello, > > I am developping a social networking site in rails, it can be found at > the url www[dot]string[dot]be > > My problem is that firefox doesn''t seems to find/interpret the css > linked to it. Everything works fine in other browsers (IE, safari, > Opera) but not in firefox. > > Does anybody have a clue ?Your server sends CSS files with the wrong MIME type. From headers: Request: GET /stylesheets/scaffold.css?1163928878 HTTP/1.1 Host: www.string.be <...> Accept: text/css,*/*;q=0.1 Response: HTTP/1.x 200 OK Date: Thu, 21 Dec 2006 10:59:11 GMT Server: Apache/2.0.54 (Debian GNU/Linux) PHP/4.4.4-0.dotdeb.3 with Suhosin-Patch mod_ssl/2.0.54 OpenSSL/0.9.7e <...> Content-Type: text/plain So, instead of text/css server uses text/plain for CSS files. Check your configuration. Regards, Rimantas -- http://rimantas.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thx a lot for the answer. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---