Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
It looks like the “Remi” third party repository you added has a newer version of php, but not a corresponding version of php-gd. You have php 5.4 installed, but only php-gd 5.3 is available.
Hi, I finally managed to install php-gd, although I’m still not able to make it work. <br> <br>If I run the command: rpm -qa | grep php <br> <br>I get the following: <br>php-common-5.4.27-1.el6.remi.i686 <br>php-pdo-5.4.27-1.el6.remi.i686 <br>php-fpm-5.4.27-1.el6.remi.i686 <br>php-gd-5.4.27-1.el6.remi.i686 <br>php-mysql-5.4.27-1.el6.remi.i686 <br> <br>So I’m guessing it should be installed. <br> <br>I also added a swap file: <br> <br>Command: swapon -s <br>Result: <br>Filename Type Size Used Priority <br>/swapfile file 524280 0 -1 <br> <br>I restarted nginx and there is still no sign of gd when in run phpinfo(). Any ideas why this is happening? <br> <br>Thanks in advance!
You might need to restart php-fpm for it to take effect: <br> <br><pre> <br>/etc/rc.d/init.d/php-fpm restart <br></pre>