Page 1 of 1
Error on Backup page
Posted: Sat Jun 18, 2016 6:36 pm
by ashras99
On the backup page of Opencart 2.0.1.2 getting this error..
Undefined variable: entry_export in /public_html/admin/view/template/tool/backup.tpl on line 43
pls. suggest what to do, so this can work. ??
Re: Error on Backup page
Posted: Sat Jun 18, 2016 7:24 pm
by straightlight
In admin/controller/tool/backup.php file,
find:
Code: Select all
$data['entry_import'] = $this->language->get('entry_import');
add below:
Code: Select all
$data['entry_export'] = $this->language->get('entry_export');
Re: Error on Backup page
Posted: Sat Jun 18, 2016 8:03 pm
by ashras99
there is no Entry_import in whole backup.php
Code: Select all
<?php
class ControllerToolBackup extends Controller {
private $error = array();
public function index() {
$this->load->language('tool/backup');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('tool/backup');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->user->hasPermission('modify', 'tool/backup')) {
if (is_uploaded_file($this->request->files['import']['tmp_name'])) {
$content = file_get_contents($this->request->files['import']['tmp_name']);
} else {
$content = false;
}
if ($content) {
$this->model_tool_backup->restore($content);
$this->session->data['success'] = $this->language->get('text_success');
$this->response->redirect($this->url->link('tool/backup', 'token=' . $this->session->data['token'], 'SSL'));
} else {
$this->error['warning'] = $this->language->get('error_empty');
}
}
$data['heading_title'] = $this->language->get('heading_title');
$data['text_select_all'] = $this->language->get('text_select_all');
$data['text_unselect_all'] = $this->language->get('text_unselect_all');
$data['entry_restore'] = $this->language->get('entry_restore');
$data['entry_backup'] = $this->language->get('entry_backup');
$data['button_export'] = $this->language->get('button_export');
$data['button_import'] = $this->language->get('button_import');
if (isset($this->session->data['error'])) {
$data['error_warning'] = $this->session->data['error'];
unset($this->session->data['error']);
} elseif (isset($this->error['warning'])) {
$data['error_warning'] = $this->error['warning'];
} else {
$data['error_warning'] = '';
}
if (isset($this->session->data['success'])) {
$data['success'] = $this->session->data['success'];
unset($this->session->data['success']);
} else {
$data['success'] = '';
}
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], 'SSL')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('tool/backup', 'token=' . $this->session->data['token'], 'SSL')
);
$data['restore'] = $this->url->link('tool/backup', 'token=' . $this->session->data['token'], 'SSL');
$data['backup'] = $this->url->link('tool/backup/backup', 'token=' . $this->session->data['token'], 'SSL');
$data['tables'] = $this->model_tool_backup->getTables();
$data['header'] = $this->load->controller('common/header');
$data['column_left'] = $this->load->controller('common/column_left');
$data['footer'] = $this->load->controller('common/footer');
$this->response->setOutput($this->load->view('tool/backup.tpl', $data));
}
public function backup() {
$this->load->language('tool/backup');
if (!isset($this->request->post['backup'])) {
$this->session->data['error'] = $this->language->get('error_backup');
$this->response->redirect($this->url->link('tool/backup', 'token=' . $this->session->data['token'], 'SSL'));
} elseif ($this->user->hasPermission('modify', 'tool/backup')) {
$this->response->addheader('Pragma: public');
$this->response->addheader('Expires: 0');
$this->response->addheader('Content-Description: File Transfer');
$this->response->addheader('Content-Type: application/octet-stream');
$this->response->addheader('Content-Disposition: attachment; filename=' . DB_DATABASE . '_' . date('Y-m-d_H-i-s', time()) . '_backup.sql');
$this->response->addheader('Content-Transfer-Encoding: binary');
$this->load->model('tool/backup');
$this->response->setOutput($this->model_tool_backup->backup($this->request->post['backup']));
} else {
$this->session->data['error'] = $this->language->get('error_permission');
$this->response->redirect($this->url->link('tool/backup', 'token=' . $this->session->data['token'], 'SSL'));
}
}
}
Re: Error on Backup page
Posted: Sat Jun 18, 2016 8:38 pm
by straightlight
Simply add this line as well in the same location as my previous post. This should resolved the problem.
Re: Error on Backup page
Posted: Sat Jun 18, 2016 9:12 pm
by ashras99
ok, thanks a lot