CakePHP 1.3 を使用しており、このメッセージを変更したい:
その場所にアクセスする権限がありません。
に (例):
あ、ごめんなさい
メッセージは次のコードから表示されます。
echo $this->Session->flash('auth');
私は app_controller をに変更します
class AppController extends Controller {
var $components = array('Auth', 'Session', 'Acl');
function beforeFilter() {
$this->Auth->authorize = 'actions';
$this->Auth->autoRedirect = false;
if ($this->params['controller'] == 'pages') {
$this->Auth->allow('*');
}
$this->Auth->allow('pages');
$this->Auth->loginError = "This message shows up when the wrong credentials are used";
$this->Auth->authError = "This error shows up with the user tries to access a part of the website that is protected.";
}
}
しかし、私は同じメッセージに直面しています。