Apr 1, 2004 #1 UKmichael Programmer Mar 29, 2004 13 GB I am using php version 4.1.2 and get a Fatal error: Call to undefined function: zip_open() in.... when I run this code. <?php $zip = zip_open("price.zip"); ..... I thought that Zip File Archive was ncluded (PHP 4 >= 4.1.0) Any ideas? Thanks
I am using php version 4.1.2 and get a Fatal error: Call to undefined function: zip_open() in.... when I run this code. <?php $zip = zip_open("price.zip"); ..... I thought that Zip File Archive was ncluded (PHP 4 >= 4.1.0) Any ideas? Thanks
Apr 1, 2004 #2 sleipnir214 Programmer May 6, 2002 15,350 US It's available, but not enabled by default. According to the PHP online manual page section on Zip functions, you have to use a 3rd-party library and compile PHP to activate these functions. Want the best answers? Ask the best questions! TANSTAAFL!! Upvote 0 Downvote
It's available, but not enabled by default. According to the PHP online manual page section on Zip functions, you have to use a 3rd-party library and compile PHP to activate these functions. Want the best answers? Ask the best questions! TANSTAAFL!!