Note Submitter: lace at gta dot hu
----
To get gdlib working on the windows installation of php do
this:
(info from: gdlib site: http://www.boutell
.com/gd/faq.html)
[..]
php 4.3.x is available, and it includes a version of gd as
"standard equipment." php_gd2.dll is included in
a standard PHP installation for Windows, it's just not
enabled by default. To turn it on, the user may simply
uncomment the line "extension=php_gd2.dll" in
php.ini and restart the PHP extension. Change:
#extension=php_gd2.dll
To:
extension=php_gd2.dll
You may also have to correct the extension directory setting
from:
extension_dir = "./"
Or:
extension_dir = "./extensions"
To (FOR WINDOWS):
extension_dir = "c:/php/extensions" NOTE:
SUBSTITUTE THE ACTUAL PHP INSTALLATION DIRECTORY ON *YOUR*
COMPUTER.
Thanks to Benoit Blais for this last point. Thanks also to
Alan MacDougall and Perculator.
[..]
--
PHP Notes Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|