Original geschrieben von alexs
Aber die Datei ist doch vorhanden nach dem Befehl copy().
Aber die Datei ist doch vorhanden nach dem Befehl copy().
Warning: chmod() [function.chmod]: No such file or directory in /www/htdocs/.../test/index.php on line 460
$nname = "$_POST[title]"."$_POST[interpret]"."$_SESSION[username]"."$_SESSION[uploads]" .".html" ;
$chmod_path = "/www/htdocs/.../test/"."$_POST[art]"."$_POST[interpret]"."$nname";
chmod("$chmod_path", 0666);
echo $chmod_path;
echo realpath('titleInterpretUser25.html');
EDIT:
Ähm... Moment, ich habe nachgelesen. In deinem 1. Posting hast du:
und nunPHP-Code:$uploaddir = "./" . $_POST[art] ."/". $_POST[interpret] . "/" . $_FILES['userfile']['name'];
was soll denn das werden kein Wunder, dass chmod nichts findetPHP-Code:$nname = "$_POST[title]"."$_POST[interpret]"."$_SESSION[username]"."$_SESSION[uploads]" .".html" ;
$chmod_path = "/www/htdocs/.../test/"."$_POST[art]"."$_POST[interpret]"."$nname";
chmod("$chmod_path", 0666);
Kommentar