Small file get uploaded but not large file in Laravel

后端 未结 6 1531
無奈伤痛
無奈伤痛 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 09:59

    Check max_file_uploads and max_post_size in php.ini. It shows from phpinfo()

提交回复
热议问题