0

Cakephp 2.6とxamp Webサーバーを実行しており、Digest Authをcakephpで動作させようとしています。

私が使用すると、ユーザー名とパスワードを何度も要求し続けます。何が間違っているのか、これを修正する方法がわかりません。Cakephp でダイジェスト認証を使用する方法に関するチュートリアルは見つかりませんでした。

Cakephp マニュアルのガイドに従いました。

http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html

アプリ コントローラー。

public $components=array(
'Session',  'Security',
'Auth'=>array(
    'loginRedirect'=>array('controller'=>'users','action'=>'index'),
    'logoutRedirect'=>array('controller'=>'users','action'=>'index'),
    'authError'=>'Access Denied: You are not authorized to view that page.',
    'authorize'=>array('Controller'),       
    'authenticate' => array('Digest')
    )
);

何が間違っているのですか?

4

1 に答える 1