Skip to content

Instantly share code, notes, and snippets.

@firstval
Last active November 1, 2015 23:54
Show Gist options
  • Select an option

  • Save firstval/85d992f32f12fc91562c to your computer and use it in GitHub Desktop.

Select an option

Save firstval/85d992f32f12fc91562c to your computer and use it in GitHub Desktop.
How to add library PHP GD on your PHP
apt-get install php5-gd
simnle use
# yum search php-
#Different Editing on php.ini
vim /etc/php5/apache2/php.ini
or
vim /etc/php5/cli/php.ini
or
vim /etc/php5/fpm/php.ini
#Add this extensions on your php.ini
extension=gd.so
#Restart your Server
service apache2 restart
or
service nginx restart
service php5-fpm restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment