简体   繁体   中英

how to fix /login_check “this page isn't working” on hosted symfony 3.4 project

i created this website and used FOS_user bundle as user Manager, while developing the application everything worked fine, i can log in and register and everything on local machine using wampserver, but when i uploaded it to a hosting server the problem started, i can login on admin.domain on both dev and prod environments but not on www.domain, i get www.domain/login_check and "this page isn't working" any help will be appreciated

security.yml

security:

encoders:
    FOS\UserBundle\Model\UserInterface: bcrypt

role_hierarchy:
    ROLE_ADMIN:       ROLE_USER
    ROLE_SUPER_ADMIN: ROLE_ADMIN

# https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
providers:
    fos_userbundle:
        id: fos_user.user_provider.username

firewalls:
    # disables authentication for assets and the profiler, adapt it according to your needs
    dev:
        pattern: ^/(_(profiler|wdt)|css|images|js)/
        security: false

    main:
        pattern: ^/
        user_checker: security.user_checker
        form_login:
            provider:             fos_userbundle
            login_path:           fos_user_security_login
            check_path:           fos_user_security_check
            csrf_token_generator: security.csrf.token_manager
            # default_target_path: homepage 
            # always_use_default_target_path: true
        logout:
            path:        fos_user_security_logout
            target:      homepage
        anonymous: true
        http_basic: true

access_control:
    - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
    - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
    - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
    - { path: ^/admin/, role: ROLE_ADMIN }
    - { path: ^/ar/admin/, role: ROLE_ADMIN }
    - { path: ^/en/admin/, role: ROLE_ADMIN }
    - { path: ^/fr/admin/, role: ROLE_ADMIN }

经过三天的尝试,尝试了所有可能的解决方案后,这是服务器问题,他们需要添加权限才能从www.domain访问用户表

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM