Small file get uploaded but not large file in Laravel

后端 未结 6 1519
無奈伤痛
無奈伤痛 2020-12-09 09:28

I have this action in controler

    public function upload() {
  // getting all of the post data
  $file = array(\'image\' => Input::file(\'image\'));
  /         


        
6条回答
  •  庸人自扰
    2020-12-09 10:15

    edit your php.ini file and set:

    memory_limit = 32M
    upload_max_filesize = 70M
    post_max_size = 100M
    

    and restart apache.

提交回复
热议问题