Improve PR #3038
This commit is contained in:
@@ -207,7 +207,7 @@ class ConfigController extends BaseController
|
||||
*/
|
||||
public function uploadDb()
|
||||
{
|
||||
$this->response->html($this->helper->layout->config('config/upload_db', array()));
|
||||
$this->response->html($this->template->render('config/upload_db'));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -215,14 +215,16 @@ class ConfigController extends BaseController
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
public function uploadDbSave()
|
||||
public function saveUploadedDb()
|
||||
{
|
||||
$filename = $this->request->getFilePath('file');
|
||||
|
||||
if (!file_exists($filename) || !$this->configModel->uploadDatabase($filename)) {
|
||||
$this->flash->failure(t('Unable to read your file'));
|
||||
$this->flash->failure(t('Unable to read uploaded file.'));
|
||||
} else {
|
||||
$this->flash->success(t('Database upload done.'));
|
||||
}
|
||||
|
||||
$this->response->redirect($this->helper->url->to('ConfigController', 'index'));
|
||||
}
|
||||
|
||||
|
||||
@@ -52,14 +52,13 @@ class ConfigModel extends SettingModel
|
||||
* Replace database file with uploaded one
|
||||
*
|
||||
* @access public
|
||||
* @return boolean
|
||||
* @param string $file
|
||||
* @return bool
|
||||
*/
|
||||
public function uploadDatabase($file)
|
||||
{
|
||||
|
||||
$this->db->closeConnection();
|
||||
$result = file_put_contents(DB_FILENAME, gzdecode(file_get_contents($file)));
|
||||
return $result == false? false: true;
|
||||
return file_put_contents(DB_FILENAME, gzdecode(file_get_contents($file))) !== false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
</div>
|
||||
|
||||
<div class="alert">
|
||||
<ul>
|
||||
<li><?= t('You can upload Gzip compressed Sqlite database you previously downloaded') ?></li>
|
||||
</ul>
|
||||
<p>
|
||||
<?= t('You can upload the Gzip compressed Sqlite database previously downloaded.') ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<form action="<?= $this->url->href('ConfigController', 'uploadDbSave') ?>" method="post" enctype="multipart/form-data">
|
||||
<form action="<?= $this->url->href('ConfigController', 'saveUploadedDb') ?>" method="post" enctype="multipart/form-data">
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
<?= $this->form->label(t('Database file'), 'file') ?>
|
||||
|
||||
Reference in New Issue
Block a user