Hi!
Habe ein Problem mit einem simplen Dateiupload.
Das Quellprogramm habe ich mir von php.net gemopst.
Es funktioniert allerdings nicht.
Hier der Code:
SAFE_MODE ist off bei mir.
Kann mir da mal einer einen Tipp geben?
move_uploaded_file() habe ich schon gegen copy() getauscht... Ohne Erfolg.
ein var_dump() auf $_FILES sagt mir, dass die Datei am Server angekommen ist .
Habe ein Problem mit einem simplen Dateiupload.
Das Quellprogramm habe ich mir von php.net gemopst.
Es funktioniert allerdings nicht.
Hier der Code:
PHP-Code:
if(isset($_POST['upload_picture_go'])){
error_reporting(E_ALL);
if(!empty($_FILES["add_picture"]))
{
$uploaddir = $_SERVER['DOCUMENT_ROOT']."/userpics/";
$uploaddir.="test.jpg";
#echo $uploaddir;
//Copy the file to some permanent location
if(move_uploaded_file($_FILES["add_picture"]["tmp_name"], $uploaddir))
{
echo "Pic Updated!";
}
else
{
echo "There was a problem when uploding the new file, please contact ".$admin_email." about this.";
print_r($_FILES);
}
}
}
Kann mir da mal einer einen Tipp geben?
move_uploaded_file() habe ich schon gegen copy() getauscht... Ohne Erfolg.
ein var_dump() auf $_FILES sagt mir, dass die Datei am Server angekommen ist .
Kommentar