|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
enabling gd libraries on local system
Dear all;
I installed WampServer software( this software installs PHP & Apache & MySQL & SQLite & PHPMyAdmin easily). I can't work with graphical functions because GD Libraries are not enable. how should I do it? tnx |
|
#2
|
|||
|
|||
|
RE: enabling gd libraries on local system
go to your PHP directory/folder, then open file php.ini with your favorit text editor.
then, search for GD text using the editor. you'll see something like: Code:
......... ;extension=php_filter.dll ;extension=php_fribidi.dll ;extension=php_gd2.dll ;extension=php_gettext.dll ;extension=php_gmp.dll ......... remove ";" in front of GD library: Code:
......... ;extension=php_filter.dll ;extension=php_fribidi.dll extension=php_gd2.dll ;extension=php_gettext.dll ;extension=php_gmp.dll ......... your GD library should work now. |
![]() |
| Viewing: Codewalkers Forums > PHP Related > PHP Installation > enabling gd libraries on local system |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|