tags:

views:

524

answers:

2

Hey Guys,

I've done a bit of searching around and was unsuccessful in finding an ample solution.

Specs are: OS X 10.5 with Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.7l DAV/2 PHP/5.2.8

Error: Fatal error: Call to undefined function zip_open() in /includes/admin_functions.php on line 18

Thank you for your help!

+1  A: 

Do you have the ZIP module installed?

MiffTheFox
Yes, I just installed it and it keeps spitting out these errors
askon
+4  A: 

Check your phpinfo();

The only reason the function would be undefined is if the extension was not properly installed. Ensure that it appears when you run your phpinfo() page.

Kekoa
askon
You can contact your host for help. It requires the library to actually be installed on the server, just enabling it in php.ini does not necessarily mean it is installed. Gzip is different from the Zzip library. You can use the gzip functions to do .gz compression if you would like.
Kekoa
Thanks Kekoa! I'll give this a try.
askon