ho effettuato l'aggiornamento in oggetto.
il lato backoffice tt ok.
quando cerco di aprire il sito front office viene visualizzato il seguente errore:
Fatal error: Call to undefined method ControllerErrorNotFound::render() in /web/htdocs/www.shopbudella.com/home/admin/controller/error/not_found.php on line 32
il file not_found.php contiene:
- Codice: Seleziona tutto
<?php
class ControllerErrorNotFound extends Controller {
public function index() {
$this->language->load('error/not_found');
$this->document->setTitle($this->language->get('heading_title'));
$data['heading_title'] = $this->language->get('heading_title');
$data['text_not_found'] = $this->language->get('text_not_found');
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => false
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('error/not_found', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => ' :: '
);
$this->template = 'error/not_found.tpl';
$this->children = array(
'common/header',
'common/footer'
);
$this->response->setOutput($this->render());
}
}
?>
come posso risolvere?
grazie