1
我將CakePHP 1.3應用程序升級到2.0.3。CakePHP 2.0身份驗證和基本身份驗證
以前,我能夠使用Auth組件來登錄用戶,並使用Security組件模擬Basic HTTP身份驗證。 (我彷彿設置.htaccess文件密碼保護的網頁)
我曾經這樣做:
$this->Security->loginOptions = array('type'=>'basic','realm'=>'training');
$this->Security->loginUsers = array("student"=>"student2010");
$this->Security->requireLogin();
現在看來,即使我用:
public $components = array(
'Auth' => array(
'authenticate' => array('Basic')
)
);
它仍然想要使用我的用戶模型和數據庫。我錯過了什麼嗎?
是的,這是一個考慮因素。我可能最終會這樣做。 –