hi, got same error. fix it this way :
1. Tried to put 777 aka write rights to everyone to folder wp-content/dml-logs/ where the plugin is tring to create the archine – result still error 🙂
2. downml_settings_page.php
Replace :
if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
with
if($zip->open($destination, ZIPARCHIVE::CREATE) !== true) {
Results : works! Enjoy and hope it helps. I didt check if it still needs 777 folder rights or not.
-
This reply was modified 9 years, 1 month ago by spacedev.