I\'ve just downloaded PHPExcel package and I tried to import an Excel spreadsheet, but all I get is an error ZipArchive not found. I work on Windows, but server
ZipArchive not found
The easy way is to insert : PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP); in your script just before calling $objWriter->save();
PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP);
$objWriter->save();
This worked for me.
regards!