gpt4 book ai didi

php - Symfony 4 未登录生产模式

转载 作者:行者123 更新时间:2023-12-02 05:16:03 25 4
gpt4 key购买 nike

我正在 symfony 4.2 中开发一个网站。将它放到生产服务器后,我将 APP_ENV 修改为 prod,然后运行 ​​composer update --no-dev。

这样做后,我无法登录。我没有登录错误。日志文件为空。我不知道,我做错了什么。我也尝试设置 APP_DEBUG=1 但什么都没有...它只是重新加载登录页面,无论我在做什么

这是我的 security.yaml:

security:
access_decision_manager:
strategy: affirmative
encoders:
App\Entity\Account: bcrypt

# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
providers:
database_users:
entity: { class: App\Entity\Account, property: username }

firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
main:
anonymous: true

# activate different ways to authenticate

# http_basic: true
# https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate

form_login:
check_path: security_login
login_path: security_login
csrf_token_generator: security.csrf.token_manager
default_target_path: home_index
logout:
path: security_logout
target: security_login

# https://symfony.com/doc/current/security/form_login_setup.html

# Easy way to control access for large sections of your site
# Note: Only the *first* access control that matches will be used
access_control:
# - { path: ^/admin, roles: ROLE_ADMIN }
# - { path: ^/profile, roles: ROLE_USER }

role_hierarchy:
ROLE_ADMIN: ROLE_USER
ROLE_SUPERIOR: ROLE_USER
ROLE_SUPERVISOR: ROLE_USER
ROLE_WORKER: ROLE_USER

登录表格:
<form action="{{ path('security_login') }}" method="post" class="panel-body">
{% if error %}
<div class="alert alert-danger">
{{ error.messageKey|trans(error.messageData, 'security') }}
</div>
{% endif %}
<div class="form-group">
<input class="form-control" placeholder="{{ "login.username"|trans }}" type="text" name="_username" id="_username" autofocus />
</div>
<div class="form-group">
<input class="form-control" placeholder="{{ "login.password"|trans }}" type="password" name="_password" id="_password" />
</div>
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}" />

<input id="login" type="submit" class="btn btn-lg btn-secondary btn-block" value="{{ "common.button.login"|trans }}" />
<a href="{{ path('security_register') }}" id="register" class="btn btn-lg btn-secondary btn-block">{{ "common.button.registration"|trans }}</a>
</form>

安全 Controller :
<?php

namespace App\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;

class SecurityController extends AbstractController
{
/**
* @Route("/login", name="security_login")
* @param AuthenticationUtils $authenticationUtils
* @return \Symfony\Component\HttpFoundation\Response
*/
public function index(AuthenticationUtils $authenticationUtils)
{
if ($this->get('security.authorization_checker')->isGranted(["ROLE_USER"])) {
return new RedirectResponse(
$this->generateUrl('home_index')
);
}

$error = $authenticationUtils->getLastAuthenticationError();
$lastUsername = $authenticationUtils->getLastUsername();

return $this->render('security/login.html.twig', [
'last_username' => $lastUsername,
'error' => $error
]);
}

/**
* @Route("/logout", name="security_logout")
*/
public function logout()
{
}
}

谢谢您的帮助!

最佳答案

如果您的用户表包含登录名和密码,请检查您的数据库。

关于php - Symfony 4 未登录生产模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54624272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com