![]() | |
· How can I throttle my large email list? · Uploading a file only produces a blank document with no file size · Mini-FAQ on Favicons Do you have a question which isn't answered here? Click Here to add it. |
![]() | ||
![]()
[ Back to Top ] |
![]() | ||
![]() There are several things that might cause this.
- You may have run out of space on your server. Check with your host if you don't know. - Permissions on your server may be read only. Using you FTP client, check that your permissions are set correctly. - Your FTP client may not be working correctly. If the problem is not the first two above, try another FTP client. If none of the above work then you will probably need to get your host involved. [ Back to Top ] |
![]() | ||
![]() Copied from Jeff's WebLog
Q: How do I make a favicon appear for my site in IE7? A: There are two ways. The first is to put a file in the root of your domain called favicon.ico. The second is to use a tag with the rel="shortcut icon" value and the href value set to the URL for the Icon you wish to display. Q: How often does IE download the favicon? A: IE will download the icon when a user first visits the site. The icon is stored in the Temporary Internet Files folder on the client machine. Additional metadata about the favicon is stored in the user's Url History database. If either store is cleared, or items relating to the favicon have naturally expired, then the icon will be downloaded again on the next visit. If more than one page (or site) shares the same favicon, it is only downloaded once. IE takes great pains to download the icon as few times as possible to reduce load on the server. Q: I see the wrong favicon for some sites I visit. How do I fix this? A: If the history database has become corrupted in some way, this can happen. The simplest solution is just to use Delete Browsing History (on the Tools menu) to clear the cache and the history store. Q: I put a favicon.ico on my site as you described, but it still doesn't appear. A: It must actually be a .ico (an Icon) file. Bitmaps, pngs, gifs, etc, will not work. IE7 will download your favicon to the Temporary Internet Files folder and call ExtractIcon() on the file. If this fails, we will show the default icon instead of your favicon. Q: I verified that my favicon really is an icon, but it still doesn't appear. A: Since IE loads your icon out of the Temporary Internet Files folder, it must be able to actually store it there. If you are setting the no-cache directive for the icon file, then IE will not be able to display your icon and will display the default icon instead. You can use Fiddler to verify. Q: How do I create a different favicon for every page on my site? A: Put a different tag on each page, pointing to a different icon. Q: I changed my site's favicon to a different icon, but the old one still shows in IE. How do I force IE to update? A: If you just put the favicon.ico file in the root of your domain, IE doesn't have any way of knowing if it changed. To force an update, you need to use a tag and point to a different filename than you previously used. The current filename is compared against the known filename stored in the Url History database. When IE sees the filename has changed, it will download your new icon. Alternatively, you can ask your users to clear their history and cache (Tools->Internet Options->Delete Browsing History), which will also force IE to download the new file. [ Back to Top ] |