The problem is that http://1or2clicks.com/favicon.ico returns a 404. For example:
$ wget -S http://1or2clicks.com/favicon.ico --2010-08-27 15:39:52-- http://1or2clicks.com/favicon.ico Resolving 1or2clicks.com (1or2clicks.com)... 67.228.162.90 Connecting to 1or2clicks.com (1or2clicks.com)|67.228.162.90|:80... connected. HTTP request sent, awaiting response... HTTP/1.1 404 Not Found Date: Fri, 27 Aug 2010 05:39:52 GMT Server: Apache Content-Length: 1410 Connection: close Content-Type: text/html; charset=UTF-8 2010-08-27 15:39:52 ERROR 404: Not Found. Now, if you hit http://1or2clicks.com/favicon.ico directly in the browser, you get those 1410 bytes of HTML that look like this: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <!-- page_name = /favicon.ico url =http://gae-1or2clicks.appspot.com have cache --> <title>1or2clicks.com</title> <meta HTTP-EQUIV="content-type" CONTENT="text/html; charset=UTF-8"> </head> <frameset> <frame marginwidth=0 marginheight=0 frameborder=0 name="TOPFRAME" src="http://gae-1or2clicks.appspot.com/favicon.ico" noresize> </frameset> </html> That is: it loads the ico into a frameset on the page. Do you see what is happening? Whatever is serving 1or2clicks.com needs to return a 302 redirect for favicon.ico instead of that wierd error page. Alternatively you should proxy through to 9.latest.gae-1or2clicks.appspot.com instead of doing wierd html-wrapping things. =Matt On Aug 25, 7:15 am, stanlick <[email protected]> wrote: > I am experiencing some crazy stuff with my browser icon: > > 1) shows up on development server > 2) shows up fine once deployed and accessed > fromhttp://9.latest.gae-1or2clicks.appspot.com > 3) does not show up when accessed fromhttp://1or2clicks.com/ > > Any clues? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
