Page 1 of 1

Errors of the version 1.4.1

PostPosted: 29 Feb 2016, 12:24
by support
Error: After editing a page from "Information" area, an error occurs ["MainController can't find "view" file]

Solution:
In the file protected\modules\info\controllers\backend\MainController.php
after:
Code: Select all
public $defaultAction = 'admin'; 

add:
Code: Select all
public function actionView($id) {
    $this->redirect('admin');
}
 

Re: Errors of the version 1.4.1

PostPosted: 29 Feb 2016, 12:25
by support
Error: After editing a separator in 'Price list' an error occurs ["MainController can't find "view" file]

Solution:
In the file protected\modules\price\controllers\backend\CatController.php
until:
Code: Select all
public function actionAdmin() {
    
$this->getMaxSorter();
    
$this->getMinSorter();
    
parent::actionAdmin();

add:
Code: Select all
public function actionView($id) {
    
$this->redirect('admin');
}