используйте эти коды для макета, но он не работает:
my siteControlle:
Код: Выделить всё
public function actionError()
{
$exception = Yii::$app->errorHandler->exception;
if ($exception !== null) {
$this->layout = 'main';
return $this->render('error', ['exception' => $exception]);
}
}
Код: Выделить всё
public function actions() {
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
'captcha' => [
'class' => 'yii\captcha\CaptchaAction',
'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
],
];
}
Код: Выделить всё
'errorHandler' => [
'errorAction' => 'site/error',
],
Код: Выделить всё
The above error occurred while the Web server was processing your request.
Please contact us if you think this is a server error. Thank you.
Я тестирую свой сайт с другой ошибкой и понимаю, что другие ошибки действительно отображаются в моем макете представления, но просто ошибка доступа не в макете
Подробнее здесь: https://stackoverflow.com/questions/453 ... r-not-work
Мобильная версия