Проверка видео файла запроса (Laravel) - PullRequest
0 голосов
/ 04 июня 2018

Вопрос. У меня проблема с загрузкой видео в правильном формате.ошибка говорит об этом. Не удалось загрузить ресурсы содержимого.

Имя файла, которое я загружаю, равно history_legend.mp4

, формат видео которого правильный.

Я уже пытаюсь настроить мой php.ini для max_upload_size до 500M

, но все равно выдает ошибку, не удалось загрузить

В контроллере:

public function content_inserting_home(Request $request)
{

    $content_bothimagevideo = $request->input('content_assets');
    $file_upload = $request->file('content_assets');

     $validatedData = $request->validate([
    'content_assets' => 'required|mimes:mp4,x-flv,x-mpegURL,MP2T,3gpp,quicktime,x-msvideo,x-ms-wmv',

    ]);


}

в клинке:

<form action="/previllage/content_inserting_home" method="post" enctype="multipart/form-data"> 
         {{csrf_field()}}
        <div class="collection">
            <a href="#!" class="collection-item active " style="border-left:5px solid black;">Home</a>
            <a href="#!" class="collection-item" style="cursor: default;">
                <div class="row">

                    <div class="input-field col s12 m4 l4">
                        <select name="content_page">
                          <option value="" disabled selected>Select the page where you publish</option>
                          <option value="Home">Home</option>
                        </select>
                        <label>Choose the page</label>
                    </div>
                    <div class="input-field col s12 m4 l4">
                        <select name="content_section">
                          <option value="" disabled selected>Select section where you put it in</option>
                          <option value="Sec1">Section 1</option>
                          <option value="Sec2">Section 2</option>
                          <option value="Sec3">Section 3</option>
                          <option value="Sec4">Section 4</option>
                          <option value="Sec5">Section 5</option>
                        </select>
                        <label>Choose the page</label>
                    </div>
                    <div class="input-field col s12 m4 l4">

                      <input placeholder="Title" name="content_header" id="title" type="text" class="validate">
                      <label for="first_name">Header</label>

                    </div>


                    <br>

                </div>      
            </a>
                <div class="row">
                    <a href="#!" class="collection-item" style="cursor: default;">
                        **<div class="file-field input-field col s12 m10 l10">
                          <div class="btn">
                            <span>File</span>
                            <input type="file"  name="content_assets"  >
                          </div>
                          <div class="file-path-wrapper">
                            <input class="file-path validate" name="content_assets" placeholder="Upload Here the video & Image" type="text">
                          </div>
                           @if ($errors->has('content_assets'))
                          <span class="help-block">
                                  <strong style="color:red;">{{ $errors->first('content_assets') }}</strong>
                              </span>
                          @endif**

                        </div>
                        <img id="image-viewer" src="http://placehold.it/150" alt="your image" />
                    </a>
                </div>
                         {{-- <img id="image-viewer" src="http://placehold.it/250" alt="your image" /> --}}



            <a href="#!" class="collection-item" style="cursor: default;">
                <div class="input-field col s12 m6 l6">
                   <textarea  name="content_article" id="test"  maxlength="6000" required style="resize:none; position: relative; top:5px; border-top:0px; border-left:0px; border-right:0px;"></textarea>
                   <label>Article</label>
                </div>

            </a>

        </div>
         <button class="btn waves-effect btn-large waves-light red darken-4 right" type="submit">Publish & Save
            <i class="material-icons right">send</i>
         </button>
    </form>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...