I'm having problems with the ZipArchive module while extracting files. The module manage to extract one file but empty.

My Zip files were created with the 7-Zip.Zip type.

You can get the example file from: http://sphpf.coldstarstudios.com/forge/main/download?id=1

My PHP code to get and extract the files:

<?php
namespace controller;

class packageController extends \Application {

    static function getAllPackages(){
        $data = file_get_contents('http://sphpf.coldstarstudios.com/forge/main/getFree');

        // Avoid strange error :S
        $data = preg_replace('/\\[/', '[', $data);

        return json_decode($data);
    }

    function listAll() {
        $packages = self::getAllPackages();

        foreach($packages as $num => $package){
            echo '<div style="background-color: lightgray; border-radius: 5px; padding: 10px; margin: 5px;">';
            echo "<img src=\"$package->icon\" width=\"30\" align=\"left\"><b>$package->name</b><br/>$package->description<br/>";
            // Check if installed
            echo '<a href="'.$this->path.'package/install?id='.$num.'">Install</a>';
            echo '</div>';
        }
    }

    function install() {
        $zip_file = 'tmp.zip';
        $n = $_GET['id'];
        $packages = self::getAllPackages();

        $package = file_get_contents($packages[$n]->url);
        file_put_contents($zip_file, $package, FILE_BINARY);

        echo $packages[$n]->url;

        $zip = new \ZipArchive;
        $res = $zip->open($zip_file);
        if ($res === TRUE) {
            $zip->extractTo('vendors/'.$packages[$n]->main_class);
            $zip->close();
            echo 'All OK or... not :S';
        }
        unlink($zip_file);
    }
}

I would appreciate any support/help/ideas.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.