shell_exec -> unzip

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

  • shell_exec -> unzip

    Hallo,

    da ich nun auf die zziplib verzichten möchte, weil sie ja nicht überall installiert ist, wollte ich das ganze über die Console regeln.


    Script bisher:
    PHP-Code:
    /* unzip a zip-file
     * 
     * @param string $dir => directory (bsp: "gallery/id_12")
     * @param string $file => filename of the zip-file (bsp: "file.zip")
     *
     */
    error_reporting(E_ALL);

    class 
    ziplib 

    {
        function 
    decompress_withoutziplib($dir,$file)
        {
            
    $unzip shell_exec('unzip "../'.$dir.'/'.$file.'" -d "../'.$dir.'"');
            return 
    $unzip;
        }

    Soweit ganz gut, hab aber nicht alles gepostet,
    denn Debug Teil hab ich weggelassen.

    Ausgabe vom Debug:

    Directory: gallery/locations/10
    $output: shell_exec('unzip "../gallery/locations/10/22.zip" -d "../gallery/locations/10"');

    Ausgabe von $unzip:
    Archive: ../gallery/locations/10/22.zip



    Directory: gallery/locations/10
    $output: shell_exec('ls -lart "../gallery/locations/10');


    Ausgabe von $output:
    total 168
    drwxrwxrwx 5 web1 ftponly 4096 Jun 1 04:07 ..
    drwxr-xr-x 2 web1 ftponly 4096 Jun 1 04:09 .
    -rwxrwxrwx 1 web1 ftponly 157059 Jun 1 04:16 22.zip


    Aufruf des Commands direkt in der Shell:


    h78227:/srv/www/htdocs/web1/html/2k5/admin # unzip "../gallery/locations/10/22.zip" -d "../gallery/locations/10"
    Archive: ../gallery/locations/10/22.zip
    inflating: ../gallery/locations/10/22.jpg
    inflating: ../gallery/locations/10/23.jpg
    inflating: ../gallery/locations/10/24.jpg
    inflating: ../gallery/locations/10/25.jpg
    inflating: ../gallery/locations/10/26.jpg
    inflating: ../gallery/locations/10/27.jpg
    inflating: ../gallery/locations/10/28.jpg
    inflating: ../gallery/locations/10/29.jpg
    inflating: ../gallery/locations/10/21.jpg


    Weiss jemand warum und weshalb der das nid übers phpscript macht?

    error_reporting(E_ALL) sagt auch nichts =(

    Bin mit meinem Latein am Ende.
    Zuletzt geändert von Skaschy; 01.06.2005, 04:30.

  • #2
    Hatte mal ein ähnliches Problem,

    im Kontext in dem PHP unzip starten will befindet sich unzip nicht im Pfad - ich empfehle dir nich einfach nur unzip aufzurufen sonder (zB) /usr/bin/unzip.

    Eine weiter Möglichkeit ist die Ausgabe von "set" auf der shell und die von "exec('set');" zu vergleichen.

    Vielleicht isses ja das bei dir auch.

    Kommentar


    • #3
      Ausgeführt wird es ja wie man sieht

      Ausgabe von $unzip:
      Archive: ../gallery/locations/10/22.zip



      aber danke, werds mal Probieren =)

      EDIT:

      Zum Thema exec('set'); vs shell_exec('set');:

      Ausgabe gleich, auch nochmal passthru(); probiert, pfad auch geändert -> /usr/bin/unzip, nichts...

      Mhh ich weiss langsam echt nicht mehr weiter.

      Zuletzt geändert von Skaschy; 01.06.2005, 13:31.

      Kommentar


      • #4
        Hi,

        so genau kenne ich mich nicht aus - aber es ist möglich, das unzip die ausgabe des entpackens (also inflating...) nicht über stdout zurück gibt und daher du es in PHP nicht siehst.

        Wird der Kram entpackt wenn du unzip per PHP ausführst?

        Kommentar


        • #5
          Neinwird nicht entpacket, habs per FTP und Shell überprüft. Und "ls -lart" (Kontrolle) Zeigt die Dateien ja auch nicht an.

          Kommentar


          • #6
            Hmm, dann hab ich leider auch keine Idee mehr... sorry

            Kommentar


            • #7
              Mal die Komplette Funktion:


              PHP-Code:
              /* unzip a zip-file
               * 
               * @param string $dir => directory (bsp: "gallery/id_12")
               * @param string $file => filename of the zip-file (bsp: "file.zip")
               *
               */
              function decompress_withoutziplib($dir,$file)
              {
                  
              /** Set cmd -> start **/
                  /**/ 
              $command 'set';
                  
              /**/ $shell    passthru($command$shell);
                  
              /**/ if (DEBUG==true) {
                  
              /**/ $status .= $this->debug->debug_passthru($shell,$command,"shell",$dir);
                  
              /**/ }
                  
              /**/ 
                  /**/ 
              $command 'set';
                  
              /**/ $shell    shell_exec($command);
                  
              /**/ if (DEBUG==true) {
                  
              /**/     $status .= $this->debug->debug_shell_exec($shell,$command,"shell",$dir);
                  
              /**/ }
                  
              /** Set cmd -> end **/
                      
                  /** Unzip the file -> start **/
                  /**/ 
              $command '/usr/bin/unzip "../'.$dir.'/'.$file.'" -d "../'.$dir.'"';
                  
              /**/ $unzip shell_exec($command);
                  
              /**/ if (DEBUG==true) {
                  
              /**/     $status .= $this->debug->debug_shell_exec($unzip,$command,"unzip",$dir);
                  
              /**/ }
                  
              /** Unzip the file -> end **/
                      
                  
              $handle opendir("../".$dir);
                  while (
              $data readdir ($handle)) {
                      if (
              $data != "." && $data != ".." && $data!=$file) {
                              
                          
              /** Set Owner of unzipped file to web1:ftponly -> start **/
                          /**/ 
              $command 'chown web1:ftponly ../'.$dir.'/'.$data;
                          
              /**/ $chown shell_exec($command);
                          
              /**/ if (DEBUG==true) {
                          
              /**/     $status .= $this->debug->debug_shell_exec($chown,$command,"chown",$dir);
                          
              /**/ }
                          
              /** Set Owner of unzipped file to web1:ftponly -> end **/
                              
                          /** Resize image to thumb_"file".(ext) -> start /
                          /**/ 
              $gdstatus $this->gd2->resize("../".$dir."/",$data,"150","106");
                          
              /** Resize image to thumb_"file".(ext) -> end */
                      
              }
                  }
                  
              closedir($handle);
                      
                  if (
              DEBUG==true) {
                      
              $command 'ls -lart ../'.$dir;
                      
              $output shell_exec($command);
                      
              $status .= $this->debug->debug_shell_exec($output,$command,"output",$dir);
                  }
                  return 
              $status;

              Zuletzt geändert von Skaschy; 01.06.2005, 14:33.

              Kommentar


              • #8
                soo habs endlich

                einfach mal

                PHP-Code:
                $command '/usr/bin/unzip "/srv/www/htdocs/web1/html/2k5/'.$dir.'/'.$file.'" -d "/srv/www/htdocs/web1/html/2k5/'.$dir.'" 2>&1'
                ausprobiert und der leitet das dann von stderr nach stdout, und gibt mögliche error's aus =)

                Ausgabe war:
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/22.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/23.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/24.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/25.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/26.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/27.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/28.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/29.jpg
                error: cannot create /srv/www/htdocs/web1/html/2k5/gallery/locations/1/21.jpg


                Nun, einfach in der FTP Class ein ftp_site($this->con, 'CHMOD 0777 '.$dir); rein gepackt, wo das verzeichniss erstellt wird und ende aus.


                Funktioniert jetzt.

                Vielen dank!

                Kommentar

                Lädt...
                X