Jump to content

*SOLVED* Installing GD


Recommended Posts

You need to enable the gd extension. You can do this by editting the php.ini file. Find and open you php.ini file and find the following line:
[code];extension=php_gd2.dll[/code]
Now remove the semi-colon from the stat of the line.

Now you'll need to setup the extension_dir directive. You'll need to scroll up a bit an ffind the following line:
[code]extension_dir = "./"[/code]
Change ./ to the actuall location of the PHP extension folder. BY defualt it will be C:\php\ext for PHP5 or C:\php\extension for PHP4.

Once you setup the extension_dir and removed the semi-colon save your php.in iand restart yout Apache server. If you have setup the extension_dir correctly GD should be now be available.

Also Did you use the PHP installer? If you did download the zipped binaries package instead and extract the contents to where you have installed PHP to. As the installer doesn't have that many extensions/files.
Link to comment
https://forums.phpfreaks.com/topic/13406-solved-installing-gd/#findComment-51932
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.