照亮 \ Http \ 异常 \ PostTooLargeException - Laravel 5
Illuminate \ Http \ Exceptions \ PostTooLargeException - Laravel 5
我使用 PHP 7.0,我也在我的 Ubunutu 服务器上使用 Apache。
我已经更新了 php.ini
cat /etc/php/7.2/fpm/php.ini
post_max_size = 2000M
upload_max_filesize = 2000M
memory_limit = 4000M
我已经重启了服务
service php7.2-fpm restart
我还在
Illuminate \ Http \ Exceptions \ PostTooLargeException
我还想念什么? Apache
有什么我应该做的吗?
Note: I was updating the wrong file as I would have use Nginx
.
因为我使用 Apache,所以我应该更新这个文件
/etc/php/7.2/apache2/php.ini
对正确的文件进行更改并重新启动后,现在一切都按预期工作。
cat /etc/php/7.2/apache2/php.ini | grep -E 'post_max_size|upload_max_filesize|memory_limit'
memory_limit = 500M
post_max_size = 500M
upload_max_filesize = 500M
我使用 PHP 7.0,我也在我的 Ubunutu 服务器上使用 Apache。
我已经更新了 php.ini
cat /etc/php/7.2/fpm/php.ini
post_max_size = 2000M
upload_max_filesize = 2000M
memory_limit = 4000M
我已经重启了服务
service php7.2-fpm restart
我还在
Illuminate \ Http \ Exceptions \ PostTooLargeException
我还想念什么? Apache
有什么我应该做的吗?
Note: I was updating the wrong file as I would have use
Nginx
.
因为我使用 Apache,所以我应该更新这个文件
/etc/php/7.2/apache2/php.ini
对正确的文件进行更改并重新启动后,现在一切都按预期工作。
cat /etc/php/7.2/apache2/php.ini | grep -E 'post_max_size|upload_max_filesize|memory_limit'
memory_limit = 500M
post_max_size = 500M
upload_max_filesize = 500M