Uplaod Images Argh?!

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Uplaod Images Argh?!

    Hallo und frohe Ostern euch allen!

    Ich habe mal ein kleines Image Upload Script geschieben, doch es will einfach nicht funzen.

    Formualr:
    PHP-Code:
     <input name="bild[]" type="file" id="bild[]">
     <
    input name="bild[]" type="file" id="bild[]">
     <
    input name="bild[]" type="file" id="bild[]">
     <
    input name="bild[]" type="file" id="bild[]">
     <
    input name="bild[]" type="file" id="bild[]">
     <
    input name="bild[]" type="file" id="bild[]"
    Mann soll sechs Bilder damit hochladen.

    Upload Seite:

    PHP-Code:
     <? 
    $upload_path = "/home/www/web110/html/berichte_pics/";  
     
    foreach ( $_FILES["bild"]["error"] AS $key => $error ) {
        if ( $error == UPLOAD_ERR_OK ) {
            move_uploaded_file($_FILES["bild"]["tmp_name"][$key], $upload_path.$_FILES["image"]["name"]);
            echo "Bild erfolgreich hochgeladen!";
        } else die($error);
    }




      ?>

    Ich bekomme dauernd diesen Error sobald ich versuche was hochzuladen:

    PHP-Code:
    Warningmove_uploaded_file(/home/www/web110/html/berichte_pics/) [function.move-uploaded-file]: failed to create streamIs a directory in /home/www/web110/html/flirt/dat/berichte_upload.dat on line 37

    Warning
    move_uploaded_file() [function.move-uploaded-file]: Unable to move '/home/www/web110/phptmp/phpN5GJBu' to '/home/www/web110/html/berichte_pics/' in /home/www/web110/html/flirt/dat/berichte_upload.dat on line 37
    Bild erfolgreich hochgeladen


    Was bedeutet "failed to create stream"? Ich weis nicht woran das liegt? Dem Verzeichnis habe ich auch schon die Rechte 777 gegeben.
    [SIZE=1]Projekte:
    wartower.de | planetd2.de

  • #2
    Guck dir doch mal an, wie das Array überhaupt aufgebaut ist.

    PHP-Code:
    move_uploaded_file($_FILES["bild"]["tmp_name"][$key], $upload_path.$_FILES["image"]["name"]); 
    Da ist offensichtlich mindestens eine angabe falsch!!!

    Kommentar


    • #3
      Was bedeutet "failed to create stream"?
      Übersetz doch einfach mal die Fehlermeldung oder such danach. Wie oft hatten wir das schon

      Kommentar

      Lädt...
      X