Fatal error: Class 'ZipArchive' not found in

sageek

Verified User
Joined
Oct 10, 2006
Messages
5
I'm trying to use the php function ZipArchive, I have zip installed tho still getting the error: Fatal error: Class 'ZipArchive' not found in.

How can I install ZipArchive class?

Thanks a bunch! :confused:
 
ZipArchive only exists as of PHP 5.2. If you're using an earlier version, you must use the zip_ functions.

Good luck,
 
You can try to download precompiled lib and add this to your php.ini:

Code:
extension_dir="/usr/local/lib/php_modules/5-LATEST" // your path is maybe different
extension="zip.so"
 
Back
Top