Seite im web nicht sichtbar- No Character Encoding Found! Falling back to UTF-8.

hrboy

Mitglied
Hallo zusammen,

ich habe folgendes Problem:

Ich übe zur Zeit an einer Webseite und wollte nun mal schauen wie das ganze im Web klappt.
Ich muss dazu sagen, dass ich noch keine Fehler beseitigt habe. Ich habe sie nur lokal aufgebaut. da funktioniert sie auch.
Ich hatte sie auf den server von der firma hochgeladen.
Wenn ich die Url eingebe (im firefox oder IE) dann bekomme ich zwar die Inhalte, aber alle includes ob und das komplette css oder andere seiten-teile werden nicht angezeigt, genauso wie die Bilder.
Ich habe es mit dem w3 mal überprüft. Folgende Fehler kamen da raus:
(Ich habe auch irgendwo gelesen das es was mit dem server sein kann?! - was ich aber nicht glauben kann da ich kleine Seiten firmen intern gemacht haben die genauso auf dem Server liegen wie die von mir jetzt)

1.

No Character Encoding Found! Falling back to UTF-8.

None of the standards sources gave any information on the character encoding labeling for this document. Without encoding information it is impossible to reliably validate the document. As a fallback solution, the "UTF-8" encoding was used to read the content and attempt to perform the validation, but this is likely to fail for all non-trivial documents.

The sources used to find encoding information include:
* The HTTP Content-Type header.
* The XML Declaration.
* The HTML "META" element.

The algorithm defined in Appendix F of the XML 1.0 Recommendation was also used, without success.

Since none of these sources yielded any usable information, reliable validation of this document is not possible. Sorry. Please make sure you specify the character encoding in use.

Specifying a character encoding is typically done by the web server configuration, by the scripts that put together pages, or inside the document itself. IANA maintains the list of official names for character encodings (called charsets in this context). You can choose from a number of encodings, though we recommend UTF-8 as particularly useful.

The W3C I18N Activity has collected a few tips on how to declare the encoding of a Web document.

To quickly check whether the document would validate after addressing the missing character encoding information, you can use the "Encoding" form control earlier in the page to force an encoding override to take effect. "iso-8859-1" (Western Europe and North America) and "utf-8" (Universal, but not commonly used in legacy documents) are common encodings if you are not sure what encoding to choose.
2.

Warning Unable to Determine Parse Mode!

The validator can process documents either as XML (for document types such as XHTML, SVG, etc.) or SGML (for HTML 4.01 and prior versions). For this document, the information available was not sufficient to determine the parsing mode unambiguously, because:
* the MIME Media Type (text/html) can be used for XML or SGML document types
* No known Document Type could be detected
* No XML declaration (e.g <?xml version="1.0"?>) could be found at the beginning of the document.
* No XML namespace (e.g <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">) could be found at the root of the document.

As a default, the validator is falling back to SGML mode.

? Top
Validation Output: 62 Errors


leider weiß ich nicht genau woran es liegt . hier mal mein head :

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">

<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title></title>
	<meta name="keywords" content="####" />
	<meta name="discription" content="Diese Seite gibt Auskunft ." />
	<link rel="shortcut icon" href="##/faficon.ico" type="x-icon" />
	<link href="css/layout.css" rel="stylesheet" type="text/css" />
</head>

Falls ich irgendetwas vergessen habe , sagt mir einfach bescheid.
Ich werd es dann so schnell wie möglich zufügen

Vielen lieben Dank schon mal im voraus.
 
Moin,

der Fakt, dass eingebettete Inhalte nicht angezeigt werden, lässt darauf schliessen, dass die Pfade zu diesen Inhalten nicht korrekt sind...überprüfe erstmal diese Pfade.

Falls du Firebug installiert hast, kannst du dort im TAB "Netzwerk" sehen, welche Ressourcen angefragt wurden, und ob sie gefunden wurden.
 
hallo danke für die schnelle antwort.

das dachte ich mir auch schon.
Ich habe sie schon überprüft, habe anstatt zb.
/css/layout.css auch versucht
../css/layout.css oder
css/layout.css

leider ohne erfolg.
vorallem habe ich ein vergleichbar aufgebautes projekt angesehen, womit ich es verglichen habe, was aber nicht anders ist!
das macht mich sehr stutzig.
leider habe ich auch nicht so viel ahnung (sonst würde ich euch auch nicht fragen :p)

firebug habe ich nicht.

lg denny
 
Hi,

ist die Seite für uns zugänglich, um sich das mal "live" anschauen zu können? Aus dem gezeigten Dokumentheader ist die Ursache nämlich nicht ersichtlich.

Wir (zumindest Sven und ich) haben Firebug an Bord, um auch mal einen Blick hinter die Kulissen zu werfen.

Ach, und achte doch bitte in deinen Folgebeiträgen auf die erwünschte Groß- und Kleinschreibung - vielen Dank :)

mfg Maik
 
Nein leider nicht.
Es war nur ein kurzer Test, wahrscheinlich werd ich dieses Übemn sobeso für die nächsten Tage nach hinten stecken müssen.

Ich denke aber das ich denk Fehler beim includen habe.
Ich werde mich melden sobald ich das Problem obline darstellen kann.

Vielen Dank bis hier hin erst mal..

lg denny
 
Zurück