Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ovh 共享服务器上使用 laravel 5.3 上传大文件时遇到问题?
我收到以下消息:“连接已重置。请尝试以下建议:检查连接检查代理和防火墙运行网络诊断 ERR_CONNECTION_RESET”
请问我该如何处理?
您所拥有的可能不是 Laravel 问题,而是上传大文件的 PHP 限制。所以你必须配置你的php.ini文件以允许更大的文件,并且,也许给它更多的时间来上传你的文件:
php_value upload_max_filesize 10M php_value post_max_size 10M php_value max_input_time 300 php_value max_execution_time 300