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.
我laravel 4用于开发。我创建文件上传但上传大小> 2 mb的文件后,我收到下一个错误:
laravel 4
文件“Downloads.zip”超出了您的 upload_max_filesize ini 指令(限制为 2048 kb)。
我怎样才能增加限制?
您需要增加 php.ini 中的值。因为您使用的是内置网络服务器,所以您需要使用-c flag以下命令指定 php.ini 文件:
-c flag
php -S localhost:4000 -c /home/username/php.ini
并更新该文件中的值。