I have a problem installing "Archive_Zip 0.1.1" on a Linux server, but when I try to run a script to create a zip file, it gives a fatal error " Fatal error: class" ZipArchive "was not found in --- " where I put the code
$zip = new ZipArchive; var_dump($zip); $res = $zip->open($filename, ZipArchive::OVERWRITE); if($res !== TRUE){ echo 'Error: Unable to create zip file'; exit; } if(is_file($src)){ $zip->addFile($src); }else{ //echo "<br>".dirname(__FILE__).$src;//'/install1'; if(!is_dir($src)){ $zip->close(); @unlink($filename); echo 'Error: File not found'; exit; } recurse_zip($src,$zip,$path_length); } $zip->close(); echo "<br>file name ".$filename;
but he did not find the class file.
Please tell me the solution, what should I do to solve the problem. I also put the php.ini file in the folder where the script is, but it does not work.
php zip ziparchive
Parag Chaure 06 Oct 2018-10-06 12:47
source share