Im a programmer and used to use gd library on Windows with PHP. Now, I installed Fedora linux distro on my computer, too. I just saw that I have to install gd library. How I can do that? Also I wanted to ask next: gd library on Windows started to cause running out of the memory PHP script. Why?
To install gd library to Fedora (this distro doesnt has gd compiled into PHP) write following command:
yum install php-gd
and then:
service httpd restart
Regarding problem - PHP script running out of the memory:
Maybe you are open very big pictures (thy can cause that problem) or memory_limit parameter in php.ini is set on slightly megabytes. Just go there and increase value.