Open jenszahner opened 7 years ago
There is at least one issue when using php 5.6. I had to update ods.php in line 1087 and replace the old one: if ($zip->open($file, \ZipArchive::OVERWRITE)!==TRUE) { with if ($zip->open($file, \ZipArchive::CREATE | \ZipArchive::OVERWRITE)!==TRUE) {
if ($zip->open($file, \ZipArchive::OVERWRITE)!==TRUE) {
if ($zip->open($file, \ZipArchive::CREATE | \ZipArchive::OVERWRITE)!==TRUE) {
Thanks for this comment. I had to make the same correction after upgrading from php 5.4.24 to 7.1.3
There is at least one issue when using php 5.6. I had to update ods.php in line 1087 and replace the old one:
if ($zip->open($file, \ZipArchive::OVERWRITE)!==TRUE) {
withif ($zip->open($file, \ZipArchive::CREATE | \ZipArchive::OVERWRITE)!==TRUE) {