0
我試圖在Symfony 3.0.9中使用FOSUserBundle。FOSUserBundle只能登錄一次
在完成教程here之後,我能夠在昨天註冊一個用戶並使用它登錄。問題是今天早上我無法用相同的憑證登錄。經過一些測試後,我發現當我關閉窗戶時,無法與用戶一起登錄。
所以我必須從數據庫中刪除用戶並創建一個新的。 任何人都可以幫我解決這個問題嗎? 當然,用戶應該能夠登錄,註銷並關閉brwoser而無需註銷。
我SecurityController.php:
class SecurityController extends Controller
{
/**
* @Route("/login", name="login")
*/
public function loginAction(Request $request)
{
$authenticationUtils = $this->get('security.authentication_utils');
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render(
'security/login.html.twig',
array(
// last username entered by the user
'last_username' => $lastUsername,
'error' => $error,
)
);
}
}