0
對於一些原因,範圍條件不工作,我無法弄清楚爲什麼這麼需要你的幫助CakePHP的驗證限制
我的AppController
public $components = array(
'Acl',
'Auth' => array(
'authenticate' => array(
'Form' => array(
'fields' => array('username' => 'email'),
'scope' => array('User.is_active' => 1)
)
)
),
'Session'
);
用戶可以登錄無論是他主動或不
也試過
array('User.is_active' => '1')
array('User.is_active' => true)
array('User.is_active' => 'true')
這個問題不能被複制的工作搞亂,並應關閉 – user3708642