我知道這個問題已經被問過,但我已經通過幾乎每一篇文章我能找到在互聯網和沒事就消失瞭解決我的問題-.-登錄CakePHP中使用電子郵件和密碼2.1
我試圖讓我的CakePHP 2.1應用程序使用他們的電子郵件(而不是用戶名)和密碼登錄用戶。另外,考慮到我使用的控制器稱爲「配置文件」,而不是「用戶」。這有什麼區別嗎?總之,這裏是我的代碼...
AppController.php
<?php
class AppController extends Controller {
public $components = array(
'Session',
'Auth'=>array(
'authorize => array('Controller'),
'Form'=>array(
'fields' => array('username' => 'email'),
'userModel' => 'Profile'
)
)
);
}
?>
ProfilesController.php
<?php
class ProfilesController extends AppController {
function login() {
if ($this->request->is('post')) {
if ($this->Auth->login()) {
$this->Session->setFlash('You have been signed in.', 'flash_success');
$this->redirect($this->Auth->redirect());
} else {
$this->Session->setFlash('Login failed. Your username/password was incorect.');
}
}
}
}
?>
login.ctp
<?php
echo $this->Form->create();
echo $this->Form->input('email');
echo $this->Form->input('password');
echo $this->Form->submit('Sign In');
?>
任何意見/建議,爲什麼這仍然登錄不工作!?我很困惑。
謝謝!
嘿那裏:),謝謝你回到我身邊!我已經在我的AppController.php中,我也只是把它放在我的ProfilesController.php以及...仍然沒有區別。它不斷返回我的「登錄失敗」的消息!任何其他想法? –
「登錄失敗」?這可能是密碼問題... 檢查您的表單發送的密碼字符串以及數據庫中的值。他們是否是實例? – Matthieu
是的,密碼都很好。我使用我的註冊表單創建了3個額外的用戶帳戶,並且他們都正確地進行了散列處理。仍然沒有登錄。 –