我正在尝试将图片文件上传到网络服务器。我正在使用Yii2框架。我能够上传小文件没有任何问题,而如果我上传大文件,它没有上传。当文件上传时,我能够在浏览器中看到进度条。但文件上传完成后,文件不保存在服务器上,浏览器显示空白屏幕而不是index.php,但调试消息(检查点1 **)记录在日志文件中。
以下是供您参考的代码片段。
if ($model->load($_POST) && $model->save()) {
$arrFile = UploadedFile::getInstance($model, 'file_location');
if (!empty($arrFile)) {
$model->file_location = $arrFile;
$strFileName = $model->file_location->baseName . '.' . $model->file_location->extension;
Yii::error('Check point 1 ************* '. $strFileName);
if ($model->file_location->saveAs('uploads/newsletters/' . $strFileName)) {
$model->file_location = $strFileName;
$model->save();
return $this->redirect('index');
//return $this->redirect(['view', 'id' => $model->id]);
}
} else {
return $this->redirect('index'); //$this->redirect(['view', 'id' => $model->id]);
}
} else {
return $this->render('create', [
'model' => $model,
]);
}
答案 0 :(得分:1)
您需要在php.ini中更改此内容:
max_execution_time = 30
或
在你的php脚本中:
set_time_limit(180); // Set max execution time 3 minutes.
答案 1 :(得分:1)
请在你的php.ini
中查看 upload_max_filesize = 64M
并根据需要编辑为