bradgrafelman;10973250 wrote:Also note that you can run "php -i | grep configure" to find the previous "./configure" line used when you last compiled PHP.
That's an extremely helpful tip. If you look at the contents of [man]phpinfo[/man] the value of 'configure command' should be the exact command you ran last time when you were installing PHP.
You'll want to add something like --enable-zip or --enable-gzip or something like that to it.
If you want more information about your available options, cd into the php source directory and type ./configure --help like so:
$prompt: cd ~/src/php-5.3.5
$prompt: ./configure --help | grep zip
for me that returns " --enable-zip Include Zip read/write support"