I use PHP Version 5.1.2 and Apache 2.0.55 and I try to install php_gd2.dll library.
I uncomment ;extension=php_gd2.dll , now (extension=php_gd2.dll)
Put extension=php_gd2.dll file in extension directory (extension_dir = "./")
restart apache,and GD library still not work.
Thanks
[SOLVED] problem with php_gd2.dll
Moderator: General Moderators
Are you sure that ./ is the path to your extensions? Look in your phpinfo() to find the extensions path then place php_gd2.dll in that path. (often times it is C:\Windows)
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
- ambivalent
- Forum Contributor
- Posts: 173
- Joined: Thu Apr 14, 2005 8:58 pm
- Location: Toronto, ON
You probably need to specify the path to the extensions directory in your php.ini
Code: Select all
; Directory in which the loadable extensions (modules) reside.
extension_dir = "c:\path\to\ext\dir"