我对laravel有一个奇怪的问题。我正在处理一个带有文件上传的项目。一切正常,除了我的机器上有一个pdf文件。使用该pdf文件,我得到了TokenMismatchException。我在其他项目上尝试了它并且完全一样的错误。
这是我的 HTML :
<form method="POST" action="" enctype="multipart/form-data">
{!! csrf_field() !!}
<div class="form-group{{ $errors->has('file') ? ' has-error' : '' }} row">
<label class="col-md-2 control-label" for="file">Bestand</label>
<div class="col-md-4">
<input type="file" name="file">
@if ($errors->has('file'))
<span class="help-block">
<strong>{{ $errors->first('file') }}</strong>
</span>
@endif
</div>
</div>
<div class="row">
<div class="pull-right">
<button type="submit" class="btn btn-primary btn-orange">
Opslaan
</button>
</div>
</div>
</form>
这是我的路线:
Route::post('footer-toevoegen', function () {
dd(\Request::all());
});
pdf:
答案 0 :(得分:1)
你能查看php.ini config吗?
的php.ini
post_max_size=20M
upload_max_filesize=20M