also...
Ich hab mir nach ner anleitung ein html upload gebaut.
Das ganze sollte eigentlich ein bild hochladen auf meinen ftp und das anschliesend verschieben...(damit es ned gelöscht wird)
hier is einmal die index.html (Enthält das form)
---------
Index.php
---------
<html>
<head>
</head>
<body>
<form enctype="multipart/form-data" action="uploader.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="4000000" />
Datei:<input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>
</body>
</html>
und hier die uploader.php
---------
uploader.php
---------
<?php
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}
?>
Wenn ich das dann im browser versuche kommt die meldung:
--------
Warning: move_uploaded_file(uploads/6-b97f07773bfaaf16-m.jpg) [function.move-uploaded-file]: failed to open stream: No such file or directory in /usr/export/www/hosting/faintftp/Neuer uppper/uploader.php on line 7
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/usr/export/tmp/phpt6d4Ad' to 'uploads/6-b97f07773bfaaf16-m.jpg' in /usr/export/www/hosting/faintftp/Neuer uppper/uploader.php on line 7
There was an error uploading the file, please try again!
--------
Was soll das heisen?
Ich evrstehs nich? bin noch anfänger...
(achja...wie bestimm ich, wohin die datei verschoben wird?)