Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my code for favicon.ico:

<%= favicon_link_tag 'https://s3.amazonaws.com/...../favicon.ico', :rel => 'shortcut icon' %>

It works locally, but when I upload it to server - the favicon is not displayed. I can access the image, and the image is stored on amazon server - s3 service Help, please?

share|improve this question
Can you view the source and post it above? also, are there any errors showing up in your logs when it tries to grab the asset? – Kyle C Aug 26 '12 at 21:43
Kyle C i'm beginner with ruby. Can you tell me where can I look for these info? Then I'll post them – Dantes Aug 26 '12 at 21:46
right click on your web page and click view source and find the link tag to your favicon. Then depending on your deployment platform you will have to view your logs ( if your on heroku, run "heroku logs" from your terminal) – Kyle C Aug 26 '12 at 21:52
Can't find anything in log. This is what I get in Source code. It seems strange to me: <link type="image/vnd.microsoft.icon" rel="shortcut icon" href="s3.amazonaws.com/..../favicon.ico">; – Dantes Aug 26 '12 at 22:07
that is correct... I am guessing it is a cache issue. Try visiting your site from another browser and also go into your current browser tools and delete the cache – Kyle C Aug 26 '12 at 22:28
show 2 more comments

1 Answer

Clear your browser's cache. CtrlShiftDel should work for most of the browsers.

share|improve this answer
tried... not working. Would computer restart help? – Dantes Aug 26 '12 at 21:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.