Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

Thread: Browser Icon in URL Bar

  1. #11
    Join Date
    Sep 2008
    Posts
    4
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Good Day, Guys.
    I realize that this thread is a bit antiquated, however I believe that I could use some advice.
    I'm having a problem enabling a url-bar/favorites Icon (favicon).
    I've followed the instructions in this thread, as well as threads on many other sites, and I've even used your online favicon icon creater (among other methods) to create an icon for our companies web page.
    I've attempted to add the code snippets that were recommended on the favicon maker page (as well as other versions of the same code from other forums / websites); Placing the code (in various forms and in various places) in the {Head} section of my page code (Used {'s so not to look like actual code).
    I've tried identifying the favicon.ico file in the code by href.=ht.tp://domainurl\favicon.ico, href.=ht.tp://domainurl\images\favicon.ico and simply with href.=favicon.ico. (Again deformed strings to not emulate actual code).
    Our company uses IE7.0 (with all updates) as the only sanctioned browser within our enterprise. For security purposes our website files are not located in the default inetpub location, however I've placed the favicon.ico file in: inetpub, inetpub\wwwroot, webs\internal (the sites root folder), the \images\ folder of our site, and copies everywhere inbetween. I'm running our companies web server in-house (Win Svr 2003 Std w/ IIS 6.0 +frontpage extensions installed) and I've designed the page in Frontpage 2003 (FPage 6.0).
    I can browse to the url\favicon.ico and successfully view the image on in a blank page.
    Frankly, I'm at a loss as to what I'm doing wrong.
    I'm hoping that someone may be able to suggest to me another avenue to explore that I may be able to troubleshoot why my icon is not showing up. As I've mentioned, I've created several versions of the icon file: 16x16 x8bit color, 32x32 x32bit color, etc.) I can post a copy of the HEAD portion of my page's code if you think it'll be of assistance, but I've not been able to find any reason why this shouldn't work.

    TIA! Any advice will be greatly appreciated even if it's wrong
    Last edited by MStrong; 09-08-2008 at 05:20 PM.

  2. #12
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    upload the favicon (which should be named favicon.ico ONLY) to the root directory of the SITE. so on same level where I would see the index page of your site if I went to http://www.yousitename.com .

    In the HTML of your pages you want it to look like this:

    HTML Code:
    <html>
    <title>Page Title</title>
    <head>
    blah blah
    <link rel="shortcut icon" href="favicon.ico" />
    </head>
    
    <body>
    The trick is to be patient. While Firefox and others will usually show the icon immediatley (and even without the <link rel="shortcut icon" href="favicon.ico" /> line) IE can and does take upto 72 hours to display icon files.

    Simple as that.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  3. The Following User Says Thank You to BLiZZaRD For This Useful Post:

    MStrong (09-08-2008)

  4. #13
    Join Date
    Sep 2008
    Posts
    4
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    All is as you have described.
    I'm even using the version of favicon.ico that was made by DD's favicon maker (which was vastly superior to the quality of others).
    Is there a chance that another line in the HEAD code could be interfering with it? (it's all metadata created by frontpage).
    The TITLE line WAS placed in the HEAD portion of code by Frontpage, I've moved it to above as you've described.
    The only other thing that confuses me is why IE specifically would take so long to show such a thing. As I've said, my web server is in house and I restart IIS to recache the pages at various times as I make changes to the code so that I can be assured that the server's cache is not causing my changes not to show. I also check the page source with notepad after each change to verify. I've also deleted my browser cache in the hopes that may make a difference.
    I've been working on this since last week and have allowed this past weekend to test for the described delay.

    --Still at a loss. Thank you anyway for your advice

  5. #14
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    Well, that was an error on my part. Title does go in head, I just got excited

    HTML Code:
    <html>
    <head>
    <title>Page</title>
    ...
    The other data won't cause problems. IE is just a pain, basically plain and simple. IE doesn't always show my favicon's either, and my site has been up since 2005 with a favicon on it.

    One must remember that IE is like a small child with ADD, it is cute, can do what it needs to do, but is very literal. As such, favicons were designed at first NOT to be in the URL but in the favorites list. IE does this, and although can and dos display the icon in the URL, it was not designed to do so, and will cause problems. I would set it all up, use an absolute URI ( <link rel="shortcut icon" href="http://thewholesite.com/favicon.ico"> ) and just wait.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  6. The Following User Says Thank You to BLiZZaRD For This Useful Post:

    MStrong (09-08-2008)

  7. #15
    Join Date
    Sep 2008
    Posts
    4
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Right on... I'll set that up and, since i'm the network admin, install firefox to test and see if it makes a difference.
    Thank you again for the assistance!!!

    ***Update:
    That was it: Firefox displayed the icon right away. IE - Still nothing. (Thank's again Micro$oft).

    At least, now I know that my coding wasn't the problem.

    Thanks again for all your input and info!!

    -Peace!
    Last edited by MStrong; 09-08-2008 at 08:01 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •