Dies passiert wenn Sie im betroffenem Verzeichnis keine Startseite definiert haben. Um dies zu beheben erstellen Sie eine index.php Datei in diesem Verzeichnis mit folgendem Inhalt:
______________________________________________________________
Inhalt in diesem Verzeichnis:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>index - inhalt anzeigen</title>
<style type="text/css">
body {
margin: 20px 0 0 30px;
}
</style>
</head>
<body>
<b>Inhalt in diesem Verzeichnis:</b><br>
<br>
<br>
<?php
$show_files = array();
$i = 0;
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
$zeile = "<a href=\"$file\">$file</a><br>";
}
array_push($show_files, $zeile); // Das erstelle Array füllen
}
sort($show_files);
$anzahl = count($show_files); // Zählen, führ die Ausgabe-Schleife
for($i = 0; $i < $anzahl; $i++) { // Und ab...
echo "$show_files[$i]";
}
closedir($handle);
}
?>
</body>
</html>
______________________________________________________________
|