Hey folks, I have a bit of a frustrating problem with requests for favicon.ico generating all sorts of errors in my log files. The problem is that the default routes.rb file has the following line: map.connect '':controller/:action/:id.:format'' If I''m requesting http://localhost:3000/user/list/3 then firefox will automatically generate a request for the favicon.ico file at http://localhost:3000/user/list/favicon.ico . This gets matched by the above route and Rails throws an error like this: ActiveRecord::RecordNotFound (Couldn''t find User with ID=favicon): How do I get Rails to match favicon requests properly? Alternatively how can I get mongrel to realize that favicon.ico requests always need to go to the /public folder. Maybe it''s just ocd, but I''d like to keep my dev logs clear of all these crappy errors. Thanks for your help, Mike -- 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 -~----------~----~----~----~------~----~------~--~---
Links should be https://localhost:3000/user/show not /list Mike -- 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 Mike, you might want to add one of the following lines to your HTML header: <link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/vnd.microsoft.icon"> <link rel="icon" href="http://example.com/favicon.ico" type="image/vnd.microsoft.icon"> Kind regards Nicolai>--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---