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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -