Home > Article > Backend Development > How to solve "your server does not support php zip" problem
Solution to "Your server does not support php zip": First find and open the "php.ini" file; then search for ";extension=php_zip.dll" and modify it to "extension=php_zip.dll" ;Finally save the file and restart IIS.
Recommended: "PHP Video Tutorial"
A template for installing emlog in a PHP space built under the WINDONW system of a certain user . Tip: "Template installation failed. It may be that the server does not support the zip module. Please download and install it manually."
This problem is caused by the php_zip.dll extension not being enabled in the php.ini configuration file. Open PHP.ini and search for;extension=php_zip.dll. Remove the leading semicolon and change it to extension=php_zip.dll. Then save the file and restart IIS.
The above is the detailed content of How to solve "your server does not support php zip" problem. For more information, please follow other related articles on the PHP Chinese website!