As the title says im trying to install a php extension (zip.so) that is missing from php7.1 version in ampps 3.8. I have searched for an answer but no luck so far.
Also using php5.6 and going to the php extensions list im able to see the zip extension, but since the software that im trying to intstall requires php 7.X im unable to simply use php5.6.
Thanks for the help in advance.
I finally found a way to do it:
$ cd my/extension
/usr/local/ampps/php-7.1/bin/phpize
./configure --with-php-config=/path/to/my/php-config
for example ./configure --with-php-config=/usr/local/ampps/php-7.1/bin/php-config
make
and sudo make install
sudo make install
log you will find this Installing shared extensions: /usr/local/ampps/php-7.1/lib/extensions/no-debug-non-zts-20160303/
file path.zip.so
/usr/local/ampps/php-7.1/lib/extensions/ext
and you will be able to see it on the list of extensions in ampps, dont forget to enable it and restart apache2!Hope it helps!