Загрузить файл более 2M в laravel 5

У меня есть форма загрузки в laravel 5, и я хочу отправить файл размером более 2M, и я изменяю php.ini для максимального размера загрузки и размера сообщения, но это тоже работает!! когда мой csrf включен, я получаю несоответствие токена csrf и когда я отключаю его после отправки всех полей в форме, отправьте на контроллер пустой!! мой взгляд:

<div class="col-lg-6" style="float:right">
{!! Form::open(array('url'=>'admin/uploadtmp','method'=>'POST', 'files'=>true)) !!}


                            <div class="form-group col-md-12 pull-right">

                                 {!! Form::text('title', Input::old('title'), array('class' => 'form-control', 'placeholder' => 'نام قالب')) !!}

                                    <div style="color:red">
                                        {!!$errors->first('title')!!}
                                    </div>
                            </div>

                            <div class="form-group col-md-12">
                                {!! Form::textarea('description', Input::old('description'), array('class' => 'form-control', 'rows' =>'8', 'placeholder' => 'توضیحات')) !!}

                                <div style="color:red">
                                        {!!$errors->first('description')!!}
                                    </div>
                            </div>
                            <div class="form-group col-md-6" style="float:right">

                                <select name="brandid" class="form-control" placeholder="برند قالب">
                                    <option value="">برند قالب خود را انتخاب کنید</option>
                                    @foreach($brands as $brand)
                                    <option value="{{$brand->id}} ">{{$brand->title}} </option>
                                    @endforeach
                                  </select>
                            </div>
                            <div class="form-group col-md-6" style="float:right">
                               <select name="categoryid" class="form-control">
                                    <option value="">دسته بندی قالب خود را انتخاب کنید</option>
                                    @foreach($categories as $category)
                                    <option value="{{$category->id}} ">{{$category->title}} </option>
                                    @endforeach
                                  </select>
                            </div>
                            </div> 

                            <div class="form-group col-md-6">
                                <div class="form-group">
                                     {!! Form::label('لطفا فایل قالب خود را به صورت زیپ شده از طریق دکمه ی زیر انتخاب کنید') !!}    
                                     {!! Form::file('zip' , Input::old('zip')) !!}
                                     <div style="color:red">
                                        {!!$errors->first('zip')!!}
                                    </div>
                                </div>
                                <div class="form-group">
                                     {!! Form::label('لطفا فایل اسکرین شات قالب خود را با فرمت jpg و حجم کمتر از پنجاه کیلوبایت از طریق دکمه ی زیر انتخاب کنید') !!}
                                     {!! Form::file('image') !!}
                                     <div style="color:red">
                                        {!!$errors->first('image')!!}
                                    </div>
                                </div>

                                <input type="submit" name="submit" class="btn btn-primary pull-left" value="ارسال" >


                        {!! Form::close() !!}

                        @if(Session::has('error'))
                            <div class="col col-lg-12 alert alert-success alert-dismissable"> 
                                <button style="float:left" type="button" class="close" data-dismiss="alert" aria-hidden="true">&times; </button>
                                    {!! Session::get('error') !!}
                            </div>
                        @endif
                        @if(Session::has('success'))
                            <div class="col col-lg-12 alert alert-success alert-dismissable"> 
                                <button style="float:left" type="button" class="close" data-dismiss="alert" aria-hidden="true"> &times; </button> 
                                    {!! Session::get('success') !!}
                            </div>
                        @endif
                        </div>
              </div>

мой контроллер:

class TemplateController extends Controller
{
    public function newtemplate(){
        // getting all of the post data
        $files = array(
          'zip'   => Input::file('zip'),
          'image' => Input::file('image'),
          'title' => Input::input('title'),
          'description' => Input::input('description'),
          'brandid' =>Input::input('brandid'),
          'categoryid' =>Input::input('categoryid'),
          );
        $rules = array(
          'image' => 'mimes:jpeg,jpg | max:5000 | required',
          'zip'   => 'mimes:zip,rar | max:40000 | required',
          'title'   => 'required',
          'description'   => 'required',
          ); //mimes:jpeg,bmp,png and for max size max:10000
         $messages =[

              'image.mimes' => 'فرمت فایل ارسالی شما صحیح نمی باشد',
              'image.max' => 'حداکثر اندازه ی فایل ارسالی شما باید 50 کیلو بایت باشد',
              'zip.mimes' => 'فرمت فایل ارسالی شما باید حتما zip باشد',
              'required' => 'این فیلد نباید خالی باشد'
          ];
          $validator = Validator::make($files, $rules,$messages);
          if ($validator->fails()) {
            // send back to the page with the input data and errors
            return Redirect::to('admin/templates')->withInput()->withErrors($validator);
          }
          else{
                if (Input::file('zip')->isValid() && Input::file('image')->isValid()) {


                      $template = new Template;
                      $template->creator_id = Auth::user()->id;
                      $template->title = Input::input('title');
                      $template->description = Input::input('description');
                      $template->category_id = Input::input('categoryid');
                      $template->brand_id = Input::input('brandid');
                      $template->save();

                      $lastid = $template->id;

                      //$destinationPath = 'uploads'; // upload path
                      $extension = Input::file('zip')->getClientOriginalExtension(); // getting image extension
                      $extension2 = Input::file('image')->getClientOriginalExtension(); // getting image extension
                      $filename = $lastid.'.'.$extension; // renameing image
                      $filename2 = $lastid.'.'.$extension2; // renameing image

                      //Storage::disk('local')->put('screenshots/'.$filename, Input::file('image'));
                      Input::file('zip')->move(storage_path().'/zipfiles', $filename);
                      Input::file('image')->move(storage_path().'/screenshots', $filename2);
                      //Storage::disk('local')->put('zipfiles/'.$filename2,Input::file('zip'));
                      // sending back with message
                      Session::flash('success', 'عملیات با موفقیت صورت گرفت'); 
                      return Redirect::back();

              }

               else {
                  // sending back with error message.
                  Session::flash('error', 'مشکل در آپلود فایل ها');
                  return Redirect::back();
                }
            }
       }
}

1 ответ

Прежде всего, вы запускаете приложение с помощью команды php artisan serve?

если да, то ваш файл php.ini должен быть изменен с/etc/php-<version>/cli/ вместо того /etc/php-<version>/apache/. потому что эта команда запускается из cli, поэтому она использует свою собственную конфигурацию php.

так что открывайте с помощью gedit или возвышенного, что вам нравится. и измените upload_max_filesize и post_max_size и memory_limit

memory_limit = 1024M
upload_max_filesize = 512M
post_max_size = 512M

затем перезапустите через service apache2 restart.

Вам нужно изменить upload_max_filesize и post_max_size в конфигурации php.ini, расположение конфигурации зависит от вашей среды, но вы можете поместить переменную Loaded Configuration File, содержащую полный путь к ini, затем вы измените

upload_max_filesize = 50M
post_max_size = 50M

Наконец перезапустите Apache и вуаля

Вы можете увидеть этот вопрос для более подробной информации, это не проблема laravel, а конфигурация php

Другие вопросы по тегам