OT HTML Help

View: New views
5 Messages — Rating Filter:   Alert me  

OT HTML Help

by Willy Kaemena-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I found suddenly some strange behaviour on my websites  when using  
Firefox.  Sometimes Firefox is not opening the  page  but trying to  
download it.  Any idea  what is wrong with these webpages??  Safari  
opens everything as  expected.

here a  starting point for testing
http://homepage.mac.com/wkaemena/ASIA2004/Menu286.html


Willy Kaemena

http://homepage.mac.com/wkaemena/FSPanos/Menu268.html
http://360cities.net/profile/willy-kaemena
http://360cities.net/area/damascus-syria
http://360cities.net/area/bremen-germany
http://360cities.net/area/rio-de-janeiro-brazil-2
http://360cities.net/area/lisbon-portugal
















[Non-text portions of this message have been removed]


Re: OT HTML Help

by Dieter Lotze-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Yes correct Willy! Trying your pages ending with "Menu..." show that behaviour!
Didi


--- In PanoToolsNG@..., Willy Kaemena <panokaemena@...> wrote:

>
> I found suddenly some strange behaviour on my websites  when using  
> Firefox.  Sometimes Firefox is not opening the  page  but trying to  
> download it.  Any idea  what is wrong with these webpages??  Safari  
> opens everything as  expected.
>
> here a  starting point for testing
> http://homepage.mac.com/wkaemena/ASIA2004/Menu286.html
>
>
> Willy Kaemena
>
> http://homepage.mac.com/wkaemena/FSPanos/Menu268.html
> http://360cities.net/profile/willy-kaemena
> http://360cities.net/area/damascus-syria
> http://360cities.net/area/bremen-germany
> http://360cities.net/area/rio-de-janeiro-brazil-2
> http://360cities.net/area/lisbon-portugal
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>



Re: OT HTML Help

by Philipp B. Koch :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Willy Kaemena schrieb:
> I found suddenly some strange behaviour on my websites when using
> Firefox. Sometimes Firefox is not opening the page but trying to
> download it. Any idea what is wrong with these webpages?? Safari
> opens everything as expected.
>
> here a starting point for testing
> http://homepage.mac.com/wkaemena/ASIA2004/Menu286.html
Hi Willy,

I'm not a web designer, but I think there is a problem with the MIME
type. Firefox has no clue that this is supposed to be a HTML site,
because the DOCTYPE is not declared in a valid way
(http://en.wikipedia.org/wiki/Doctype). Try something like

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

and your site should be at least displayed. After finding and applying
the correct doctype, you might want to check your site(s) for valid
markup using a validator (for instance http://validator.w3.org/). If you
don't use correct doctype declaration and valid markup, browsers will
display them in quirks mode (http://en.wikipedia.org/wiki/Quirks) or
even not at all.

Best regards, Philipp



------------------------------------

--
<*> Wiki: http://wiki.panotools.org
<*> User Guidelines: http://wiki.panotools.org/User_Guidelines
<*> Nabble (Web) http://www.nabble.com/PanoToolsNG-f15658.html
<*> NG Member Map http://www.panomaps.com/ng
<*> Moderators/List Admins: PanoToolsNG-owner@...
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/PanoToolsNG/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/PanoToolsNG/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:PanoToolsNG-digest@...
    mailto:PanoToolsNG-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    PanoToolsNG-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/


Re: OT HTML Help

by Willy Kaemena-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks a lot for the help.

my HTML generating software wrote in the header

<meta http-equiv="Content-Type" content="text/html;charset=utf-8">


and I changed it to:

<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>


now it works in Firefox... dont ask me why....


Willy Kaemena

http://homepage.mac.com/wkaemena/FSPanos/Menu268.html
http://360cities.net/profile/willy-kaemena
http://360cities.net/area/damascus-syria
http://360cities.net/area/bremen-germany
http://360cities.net/area/rio-de-janeiro-brazil-2
http://360cities.net/area/lisbon-portugal


On Jun 29, 2009, at 1:30, Philipp B. Koch wrote:

> Willy Kaemena schrieb:
>> I found suddenly some strange behaviour on my websites when using
>> Firefox. Sometimes Firefox is not opening the page but trying to
>> download it. Any idea what is wrong with these webpages?? Safari
>> opens everything as expected.
>>
>> here a starting point for testing
>> http://homepage.mac.com/wkaemena/ASIA2004/Menu286.html
> Hi Willy,
>
> I'm not a web designer, but I think there is a problem with the MIME
> type. Firefox has no clue that this is supposed to be a HTML site,
> because the DOCTYPE is not declared in a valid way
> (http://en.wikipedia.org/wiki/Doctype). Try something like
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
>
> and your site should be at least displayed. After finding and applying
> the correct doctype, you might want to check your site(s) for valid
> markup using a validator (for instance http://validator.w3.org/). If  
> you
> don't use correct doctype declaration and valid markup, browsers will
> display them in quirks mode (http://en.wikipedia.org/wiki/Quirks) or
> even not at all.
>
> Best regards, Philipp
>
>
>
> ------------------------------------
>
> --
>
>
>












[Non-text portions of this message have been removed]


Re: OT HTML Help

by crane-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Quoting Willy Kaemena <panokaemena@...>:

> Thanks a lot for the help.
>
> my HTML generating software wrote in the header
>
> <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
>
>
> and I changed it to:
>
> <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
>
>
> now it works in Firefox... dont ask me why....

http://www.w3.org/International/O-charset

I read a bit then my head started to hurt.

mick

----------------------------------------------
This mail sent through http://www.ukonline.net