Probleme mit Validator
TomIRL
- html
Hallo Allerseits,
Bevor ich mein neues Projekt den Wölfen zum Frass vorwerfen wollte, wollte ich selbst noch einmal gucken.
Folgende Doctype Declaration wird ausgeliefert.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Titel meiner Webseite </title>
Und Validator meint dazu folgendes:
I was not able to extract a character encoding labeling from any of the valid sources for such information. Without encoding information it is impossible to validate the document.
Mögliche Ursachen?
Kann sein das da Serverseitig was nicht so toll ist?
Der ratlose Tom
Hi,
I was not able to extract a character encoding labeling from any of the valid sources for such information. Without encoding information it is impossible to validate the document.
Mögliche Ursachen?
fehlende HTTP- oder HTTP-äquivalente Header, die ein Encoding angeben. Der Validator hat Dir einige Angaben hierzu in der Fehlermeldung gegeben, nach Deinem zitierten Text.
Kann sein das da Serverseitig was nicht so toll ist?
Ja (bzw. jein[1]), das kannst Du aber in Deinem HTML-Dokument ausgleichen.
Cheatah
[1] Woher soll der Server wissen, was für das eine, spezielle Dokument gilt?
Hallo,
I was not able to extract a character encoding labeling from any of the valid sources for such information. Without encoding information it is impossible to validate the document.
Mögliche Ursachen?
Weder im HTTP-Head noch als META-Tag wird das Charset angegeben.
AddDefaultCharset ISO-8859-1
in der httpd.conf bzw. in der .htaccess im Hauptverzeichnis
duerfte Dein Problem regeln. Zumindest dann, wenn Du den
Validator per URL auf Deinen Webserver schickst.
Wenn Du sie hochlaedst, musst Du ihm halt sagen, es sei ISO-8859-1,
oder es in ein META-Tag schreiben.
Gruesse,
Thomas
Hallo Allerseits,
hallo Tom!
I was not able to extract a character encoding labeling from any of the valid sources for such information. Without encoding information it is impossible to validate the document.
Mögliche Ursachen?
da fehlt eine Angabe zum verwendeten Zeichensatz:
z.B:
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
oder so etwas
Gruss Sven
Ja danke ist mir irgendwie entgangen.
Ich hatte die eigentlich drin, *am Kopfkratz*
Naja gut.