Last active
November 1, 2015 23:54
-
-
Save firstval/85d992f32f12fc91562c to your computer and use it in GitHub Desktop.
How to add library PHP GD on your PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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