How to enable PHP GD Library
GD is not present - image manipulation disabled
so I can't work with images the way I worked on old server, before I moved site to Linode.
I followed this instruction
I also read that I might need to enable it in php.ini how do I that?
I have Ubuntu 9.10 Latest 2.6 (2.6.39.1) php5.
Thanks!
4 Replies
root:/etc/php5/conf.d# cat gd.ini
; configuration for php GD module
extension=gd.so
I searched /etc/php5/apache2/php.ini and did not found extension=gd.so or anything that has gd in it…
EDIT: actually, I found only this:
[gd]
; Tell the jpeg decode to libjpeg warnings and try to create
; a gd image. The warning will then be displayed as notices
; disabled by default
;gd.jpegignorewarning = 0
If not, you can create it or put "extension=gd.so" in your php.ini.
PD: remember to restart apache
Thanks a lot!!! You saved my day!