Last active
December 19, 2018 15:53
-
-
Save dleone81/de311bee44c44a7ce8813cd17a5e9af9 to your computer and use it in GitHub Desktop.
To update upload_max_filesize && post_max_size on Ubuntu 14.04 LTS with PHP Version 5.5.9-1ubuntu4.24 with PHP5-FPM support you've to update /etc/php5/fpm/pool.d/www.conf
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
# add at bottom file | |
# /etc/php5/fpm/pool.d/www.conf | |
php_value[upload_max_filesize] = 8M | |
php_value[post_max_size]=10M | |
# after reboot the service | |
sudo service php5-fpm restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment