How to install gd on my version of windows php server

I am running Windows Server 2003 and you need to install the GD version.

Can someone provide some instructions or tips?

+7
source share
3 answers

Check php_gd2.dll in your extensions directory and uncomment ;extension=php_gd2.dll your php.ini .

+17
source

You need to edit php.ini (found in the C: / PHP folder if you installed PHP here). Add the following line (or delete it before it, if it exists there):

extension = php_gd2.dll

+3
source

On Windows, the bundled Debug Pack is downloaded on the php.net download page, it contains the most useful modules. After that, the extension associated with uncomment, for example, with gd2:; ;extension=php_gd2.dll on php.ini and uncomment extension_dir = "ext" .

+1
source

Source: https://habr.com/ru/post/899800/