Can someone please tell me exactly how to determine whether ZIP support is enabled in PHP config?
I would like to know very specifically what to look for in the phpinfo details.
What happens when I try to upload a zip file is that I don't get an error, the screen goes white/blank, and it never returns. Eventually, the status bar at bottom will say Done. The file is not uploaded, though. I'm able to upload non-zipped files fine.
I already asked my host if zip support was enabled and they said Yes. I would like to see it in the config, though.
Comments
zip
Zip support | enabled
I do not have that. I see bzip and bz, closer up at the top. That will give me something to respond to the Tech Support folks with.
Anything else you can think of that might cause this? Thumbnails are fine, uploading's fine (except zip), no error message on upload (it just never finishes/responds with anything...). Everything else looks great, I just can't upload zips.
in the php config file there should be a line like this
extension=php_zip.dll
if there is a semi-colin(;) before it then it is not enabled. no semicolin = enabled
or create a php file called phpinfo.php put this in it
<?php
phpinfo();
?>
browse to http://host.com/phpinfo.php. it should be under zip and it should say enabled or disabled
and as far as zip goes.. mine doesnt work either. it is enabled using the latest zip php extension but no beans...(IIS)
I am about to install it on my other webhost which is linux and ill see how/if it works there.
And, now I have the magical:
zip
zip support | enabled
bit that was mentioned earlier. So, I learned that bzip doesn't necessary mean zip support. And, I tested the upload with zip, and it worked!