Hi,
I m developing a website using wordpress in Google App Engine I used favicon. Favicon displayed in Chrome Browser. But not display in FireFox (FF) ver 42.0. My site URL :https://probable-skill-114906.appspot.com/ I did as per the below link http://codex.wordpress.org/Creating_a_Favicon I tried below methods: METHOD 1: 1.Generated favicon and place images under theme directory. 2.Added the code in header.php file:under<head> section <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/favicon.ico" type="image/x-icon"> 3.Added code In App.yml file: - url: /favicon.ico static_files: images/favicon.ico upload: images/favicon.ico O/P - NOT DISPLAYING IN FF METHOD 2: 1.Generated favicon and placed in root directory. 2.Added the code in header.php file under<head> section <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel="icon" href="/favicon.ico" type="image/x-icon"> 3.Added the code In App.yml file: url: /favicon.ico static_files: favicon.ico upload: favicon.ico O/P - NOT DISPLAYING IN FF In method 2 i tried the below also. under<head> section <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon?"> <link rel="icon" href="/favicon.ico" type="image/x-icon?"> O/P - NOT DISPLAYING IN FF Plz help thanks in advance! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/a2df874a-89e9-40fa-8244-1d77b9cae437%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
