Hallo,
wenn ich folgende Programmcode ausführe (ist nur ein Schnippsel),
wird $file2 nicht erkannt.
Was ist falsch konfiguriert am PHP oder Apache ?
Danke für die Hilfe
Torsten.E
$file1='/home/d00000000000/htdocs/postnuke/html/config.php';
$file2='config.php';
if (is_writable($file1)){
echo "schreiben Datei1 klappt";
} else {
echo "schreiben Datei1 klappt nicht";
}
echo "<br>";
if (is_writable($file2)){
echo "schreiben Datei2 klappt";
} else {
echo "schreiben Datei2 klappt nicht";
}