Errors of the version 1.4.1
Posted: 29 Feb 2016, 12:24
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:
add:
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');
}