在我的Laravel 5应用程序中,管理员可以上传产品图像和产品的pdf文件。因此,表单有2个输入字段,如下所示:
<div class="col-md-4 col-sm-6">
<div class="form-group">
{!! Form::label('image', 'Image File:') !!}
{!! Form::file('image', ['class' => 'form-control input-sm'] ) !!}
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="form-group">
{!! Form::label('leaflet', 'Leaflet:') !!}
{!! Form::file('leaflet', ['class' => 'form-control input-sm'] ) !!}
</div>
</div>
当我上传小于2MB的图像和传单时,它会成功上传。但是当使用时,传单超过2MB,我得到TokenMismatchException at line 46
在位于php.ini
的{{1}}文件中,我的配置如下:
/etc/php5/apache2/php.ini
我上传的文件是(正常工作):
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 2G
; Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
post_max_size = 6G
51.6kb
我上传的文件是(无法正常工作 - 在VerifyCsrfToken.php第46行给出TokenMismatchException ):
777.2kB
51.6kb
控制器
5.00MB
编辑1:
我使用的是public function update( $id, UpdateProductRequest $request ) {
$product = $this->prod->findProductById($id);
$this->prod->updateProductOfId($product->id, $request);
Flash::success('product_general_info_updated', 'The product general information has been successfully updated.');
return redirect()->back();
}
/**
* Coming from ProductRespository.php
*/
public function updateProductOfId($id, Request $request)
{
$prd = $this->findProductById($id);
$getAllInput = $request->all();
if($request->file('image'))
{
$imageType = array(
'product' => array(
'height' => 347,
'width' => 347
),
'category' => array(
'height' => 190,
'width' => 190
)
);
$imageFileName = $request->file( 'image' )->getClientOriginalName();
foreach ( $imageType as $key => $value )
{
$currentFile = Input::file( 'image' );
$fileName = $currentFile->getClientOriginalName();
$image = Image::make( $request->file( 'image' ) );
$name = explode( '.', $fileName );
$destinationPath = public_path().'/images/products/uploads';
if ( $key === 'product' ) {
$image->resize( $value[ 'width' ], $value[ 'height' ] );
$image->save( $destinationPath . '/' . $name[ 0 ] . "-" . $value[ 'width' ] . "-" . $value[ 'height' ] . ".jpg", 100 );
} elseif ( $key === 'category' ) {
$image->resize( $value[ 'width' ], $value[ 'height' ] );
$image->save( $destinationPath . '/' . $name[ 0 ] . "-" . $value[ 'width' ] . "-" . $value[ 'height' ] . ".jpg", 100 );
}
}
$getAllInput['image'] = $imageFileName;
}
if($request->file('leaflet'))
{
$currentFile = Input::file( 'leaflet' );
$fileName = $currentFile->getClientOriginalName();
$destinationPath = public_path().'/leaflets/products/uploads';
$currentFile->move($destinationPath, $fileName);
$getAllInput['leaflet'] = $fileName;
}
return $prd->update($getAllInput);
}
,因此Form Model Binding
和create
文件的格式相同:
edit
编辑2: 仅供参考,我在Ubuntu 14.04 LTS x64位架构上使用LAMP。它是一个本地主机。我还没有托管这个应用程序。
请帮助我。感谢。
答案 0 :(得分:5)
我有同样的问题,并且能够通过增加UPLOAD_MAX_FILESIZE和POST_MAX_SIZE PHP设置来解决它。前者应该大于您上传的单个文件,后者应该大于上传的两个(或更多)文件的总和。
对于这对$ _POST变量的作用有一个更好的解释,导致此呈现为令牌不匹配异常:
http://laravel.io/forum/02-20-2014-l40-csrf-tokenmismatchexception-when-uploading-large-files
希望如果你还没有解决这个问题,这对你有用!
答案 1 :(得分:-3)
添加 {!!表单中的csrf_token()!!} ,用于生成CSRF令牌。
{!! Form::open(['url' => '/admin/products', 'autocomplete' => 'off', 'files' => true]) !!}
@include('admin.products.product_general_form', ['submitButtonText' => 'Add Product'])
<input type="hidden" name="_token" value="{!! csrf_token() !!}">
{!! Form::close() !!}
目前,在提交表单时,由于 VerifyCsrfToken.php 中间件,Laravel没有提供任何CSRF令牌。