ZipArchive doen't create archive at all!
I tried:
$zip = new ZipArchive($this->name, ZIPARCHIVE::CREATE); $zip = new ZipArchive($this->name, ZIPARCHIVE::OVERWRITE); $zip = new ZipArchive(); $zip->open($this->name, ZIPARCHIVE::CREATE); $zip = new ZipArchive(); $zip->open($this->name, ZIPARCHIVE::OVERWRITE); but all doesn't create an archive and return true!
If I try to creat file with fopen it normally works so it's not a permissions problem
Some ideas?