我正在使用zf2和zfcuser模塊與教義的項目。我創建了一個自定義用戶模塊,它擴展了zfcuser,也是用戶表的一個自定義實體,並對集成進行了所有必要的更改。但我的問題是,試圖對自己進行身份驗證時,我得到這個錯誤: An alias "Zend\Db\Adapter\Adapter" was requested but no service could be found.
這種情況zfcus
我在我的應用程序中實現了ZfcUser。問題是即使密碼正確,驗證也會失敗。 我已經深入瞭解了這個問題。我注意到的是,應用程序從密碼中檢索密碼哈希並將其傳遞給Bcrypt驗證方法。 下面是Zend的代碼 if (!$bcrypt->verify($credential, $userObject->getPassword())) {
// Password does not match