x64architecture / wnmp

An easy Nginx, MariaDB and PHP environment for Windows.
https://wnmp.x64architecture.com
GNU General Public License v3.0
509 stars 110 forks source link

php without GD #113

Closed antzhi closed 5 years ago

antzhi commented 5 years ago

Some apllication like 'Grav' need php extension GD

chang-zhao commented 5 years ago

@antzhi If you need additional php extensions,

(1) download them (for example, php_gd2.dll) and put them in php/ext in your wnmp directory.

(2) In your php.ini, find and uncomment the string:

;extension=php_gd2.dll

or just add a new string:

extension=php_gd2.dll

(3) Restart WNMP & restart PHP.

antzhi commented 5 years ago

thanks