Php-Upload Script hat einen Fehler

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

  • Php-Upload Script hat einen Fehler

    Hallo,
    ich bin neu in diesem Forum und ich habe auch gleich ein Problem. Ich mache mir gerade eine Wallpaper-Homepage (Aus einer Vorlage), aber der Upload-Script hat noch irgendeinen Fehler. Ich kann zwar halbwegs vernünftig mit PHP umgehen, aber hin und wieder stehe ich auf dem Schlauch

    Die Datei config.php
    PHP-Code:
    <?php
    //Slide gallery variables
    $place "."//directory of the slide mount images, no need to change
    $col 5//no. of columns in a page
    $maxrow 3//no. of rows in a page
    $dir="."//directory for this script, no need to change
    $thumb true //setting it to TRUE will generate real thumbnails on-the-fly, supports jpg file only and requires GD library. 
    Setting it to FALSE will resize the original file to fit the thumbnail sizelong download timeTurn it off if thumbnails don't show properly.
    $croptofit = true ; //TRUE will crop the thumbnail to fit the aspect ratio of the slide mount if they aren'
    t the same
    False won't crop the thumbnail but it will be distorted if both aspect ratios are not the same.
    $rollover = true ;  //thumbnail rollover effect for IE only

    //Upload/Delete Module variables
    $LOGIN = "test";
    $PASSWORD = "test";
    $UPLOAD = "upload";
    $abpath = "/data/apache/users/kilu.de/centauri/www"; //Absoluter Pfad wo die Bilder hochgeladen werden. Kein abschließender Schrägstrich
    $sizelim = "no"; //Ein Dateigrößenlimit
    $size = "10000"; //Maximale Dateigröße
    $number_of_uploads = 1;  //Maximale gleichzeitige Bilde-Uploads
    ?>
    Und die Datei upload.php
    PHP-Code:
    <?php
    require('config.php');

    if (
    $_UPLOAD['upload'])
    {
    umask (0);
    mkdir ("$abpath/$newdir"0755);
    chmod ("$abpath/$newdir",0777);
    $file fopen("$abpath/$newdir/album.txt","w");
    chmod ("$abpath/$newdir/album.txt",0777);
    fwrite($file,"$album");
    fclose($file);
    }

    if (
    $_REQUEST['submitted']){ // Begin processing portion of script


    $log "";

    for (
    $i=0$i<$number_of_uploads$i++) {
    $j=$i 1;


    if(
    $select =="Choose. . ."){
    $log .= "Kategorie<br>";
    } else {

        
    //checks if file exists
        
    if ($img_name[$i] == "") {
            
    $log .= "Keine Datei ausgewählt $j<br>";
        }

        if (
    $img_name[$i] != "") {
            
    //checks if file exists
            
    if (file_exists("$abpath/$select/$img_name[$i]")) {
                
    $log .= "Datei $j bereits vorhanden<br>";
            } else {

                
    //checks if files to big
                
    if (($sizelim == "yes") && ($img_size[$i] > $size)) {
                    
    $log .= "Datei $j ist zu groß<br>";
                } else {


                    
    //Checks if file is an image
                    
    if( (substr($img_name[$i],-3)=="gif") || 
    (
    substr($img_name[$i],-3)=="jpg")  || (substr($img_name[$i],-3)=="JPG") || 
    (
    substr($img_name[$i],-3)=="txt") || (substr($img_name[$i],-3)=="TXT") || (substr($img_name[$i],-3)=="GIF") ) {
                        @
    copy($img[$i], "$abpath/$select/$img_name[$i]") or $log .= "Datei 1 konnte nicht hochgeladen werden<br>";
    $file fopen("$abpath/$select/$img_name[$i].txt","w");
    chmod ("$abpath/$select/$img_name[$i].txt",0777);
    fwrite($file,"$comnt[$i]");
    fclose($file);

                        if (
    file_exists("$abpath/$select/$img_name[$i]")) {
                            
    $log .= "Datei $j wurde hochgeladen<br>";
                        }
                        } else {
                            
    $log .= "Datei $j ist kein Bild<br>";
                        }
                    }
                }
            }

    }
        
    }
    ?>

    <html>
    <head>
    <title>Image Report</title>
    </head>
    <body>
    <p>Log:<br>
    <?

    echo "$log";

    ?>
    </p>
    <a href="upload.php">back</a>
    <body>
    </html>
    <? 
    exit;
    } // End processing portion of script
    ?>

    <html>
    <head>
           <title>Wallpaper-Archive Upload</title>
    <link rel="stylesheet" type="text/css" href="gallery.css">
    </head>
    <body>
    <div align="right"><font size="1">powered by <a href="Nichts">Nichts</a></font></div>
    <form method=POST action=upload.php enctype=multipart/form-data>
    <input type="hidden" name="submitted2" value="true">
    <b>Neues Album erstellen: </b><input type="text" name="newdir">
    <br><b>Album Beschreibung: </b> <input type="text" name=album size=20>
    <input type="submit" name="submit" value="Create"> 
    </form>
    <form method=POST action=upload.php enctype=multipart/form-data>
    <?php
    $dh 
    opendir($dir);
     while(
    $file readdir($dh))
     {
    if (
    $file != "." && $file != ".." && is_dir($file))   
    {
    $dname[] = $file;
    sort($dname);
    reset ($dname);
     }
    }
    print 
    "<hr align='left' width='400'><br>";
    print 
    "<b>Album wählen:</b> <select name=\"select\">";
    print 
    "<option value=\"#\">Choose. . .</option><br>\n";
    $u=0;
     foreach(
    $dname as $key=>$val)
      {  if(
    $dname[$u])   
    { print 
    "<option value=\"$dname[$u]\">$dname[$u]</option>\n";
    $u++;
    }
    }
    print 
    "</select>";

    ?>
    <p><b>Bild hochladen:</b><br>
    <blockquote>
    <?php

    for ($j=0$j<$number_of_uploads$j++) {
    ?>
    <input type=file name=img[] size=30> <br><b>Caption</b> <input type="text" name=comnt[] size=30><p>
    <?
    }
    ?>
    <br> 
    <input type="hidden" name="submitted" value="true">
    <input type="submit" name="submit" value="Upload"> 
    </form>
    </blockquote>
    Zurück zur <a href="index.php">Galerie</a>
    </body>
    Ich hoffe Ihr könnt mir helfen!
    Zuletzt geändert von Thanos; 01.07.2009, 17:14. Grund: Code umbrechen

  • #2
    Ähmm, und die Fehlerbeschreibung ?

    Noch ein Tipp Wallpaper Seiten werden bei Kilu nach Erkennung gelöscht, da würde ich mir keine Mühe geben.

    Kommentar


    • #3
      Und bitte dringend den Code umbrechen!
      [FONT="Helvetica"]twitter.com/unset[/FONT]

      Shitstorm Podcast – Wöchentliches Auskotzen

      Kommentar


      • #4
        Wirkliich?

        Dann suche ich mir einen anderren Webserver!"

        Wenn ich etwas hochladen will kommt das hier:

        Log:
        Keine Datei ausgewählt 1
        back

        Kommentar


        • #5
          Was soll denn $_UPLOAD überhaupt sein?
          Und $img_name?

          Mit zum Entwickeln vernünftig auf E_ALL eingestelltem error_reporting solltest du mit dem Script einige Meldungen bekommen.


          register_globals ist vermutlich auf off (gut so), dein Script darauf aber nicht vorbereitet.

          Peter Kropff - Tutorials - PHP / MySQL - register_globals - Überblick
          PHP: Handling file uploads - Manual
          I don't believe in rebirth. Actually, I never did in my whole lives.

          Kommentar


          • #6
            Antwort

            $_UPLOAD habe ich eingefügt um das Uploaden auf bedarf zu sperren( ich weiß, dass das auch einfacher geht)

            So wie ich schon sagte, ich bin in PHP nicht sehr gut aber ich versuche es vernünftig zu lernen...

            Kommentar


            • #7
              Ich sehe bei dir kein $_FILES. Schau dir ggf. mal das Tutorial an. Da geht es um das Thema.

              Peter
              Nukular, das Wort ist N-u-k-u-l-a-r (Homer Simpson)
              Meine Seite

              Kommentar

              Lädt...
              X