在我Laravel 5的應用,存在用於管理員上傳的產品形象和產品的PDF文件製作。所以,形式有2個輸入字段這樣的:Laravel 5 TokenMismatchException對多文件上傳
<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
文件,該文件位於/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
,我上傳的是文件(工作):
- 圖片:名稱:花1.JPG,尺寸:
51.6kb
- PDF:名稱:productInfo.pdf,尺寸:
777.2kB
,我上傳的文件(不工作 - 在VerifyCsrfToken.php在第46行給出TokenMismatchException):
- 圖片:名稱:花1.JPG,尺寸:
51.6kb
- PDF:名稱:productInfo-次數1.pdf,尺寸:
5.00MB
控制器
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);
}
編輯1: 我使用Form Model Binding
,這樣既create
和edit
文件具有相同的形式:
<div class="container">
@include('errors.list')
{!! Form::open(['url' => '/admin/products', 'autocomplete' => 'off', 'files' => true]) !!}
@include('admin.products.product_general_form', ['submitButtonText' => 'Add Product'])
{!! Form::close() !!}
</div>
編輯2: 只是爲了信息,我在Ubuntu 14.04 LTS x64位架構上使用LAMP。這是一個本地主機。我還沒有託管該應用程序。
請幫助我。謝謝。
您可以在您的視圖中打開表單的位置添加代碼嗎? –
您是否使用Former處理您的表單?我無法理解你如何將文件上傳到2 MB,但不能再更新。你在這裏使用什麼網絡服務器? (抱歉回答遲了) –
您是否嘗試過類似'ini_get('upload_max_filesize')'來檢查您的最大上傳文件大小是否已由conf文件正確設置? –