Fatal error: Class ‘ZipArchive’ not found in
I have a problem that I install ‘Archive_Zip 0.1.1’ on Linux server, but when I try to run the script to create the … Read more
I have a problem that I install ‘Archive_Zip 0.1.1’ on Linux server, but when I try to run the script to create the … Read more
I’m creating an application that will allow a user to fill out a form and then have a customized zip file downloaded for … Read more
I’m thinking of doing up a couple of premium themes, and selling copies of them. I’ve never done anything like this before, so … Read more
I have been trying to use the unzip_file() function. It says undefined so I looked into it and the WP_Filesystem() must be called … Read more
To allow extra file types for upload, we use: add_filter(‘mime_types’, ‘my_mimes’); function my_mimes($all) { $all[‘zip’] = ‘application/zip’; return $all; } But how to … Read more