php - Laravel 4, upload_max_filezise directive how increase? -
i use laravel 4
development. creating file uploading after upload file size > 2 mb, receive next error:
the file "downloads.zip" exceeds upload_max_filesize ini directive (limit 2048 kb).
how can increase limit?
you need increase value in php.ini. because using built in webserver going need specify php.ini file using -c flag
below:
php -s localhost:4000 -c /home/username/php.ini
and update value in file.
Comments
Post a Comment