0

我知道这个问题是重复的,但我要描述的场景是(非常)奇怪的:

  1. 注册一个新用户
  2. 更新个人资料
  3. 重新连接但凭据错误

    • 捆绑包在开发模式下正常工作,但在生产模式下堆叠

使用 fosuser_bundle

security:
    encoders:
        "Application\Sonata\UserBundle\Entity\User":
            algorithm: sha512
            encode_as_base64: false
            iterations: 1


firewalls : 
        main:
            pattern:      .*
            context:        user
            form_login:
                provider:       fos_userbundle
                login_path:     /login
                use_forward:    false
                check_path:     /login_check
                csrf_provider:   form.csrf_provider
                use_referer: true

一个月前一切都很好,如果您需要一些代码,请让我帮忙,谢谢

4

1 回答 1

0

我找到了解决方案,我想知道为什么它在开发模式下工作而不是在生产模式下工作?解决方案是在 .ovhconfig 中配置ovh应该从 5.4 => 5.5 替换 php 版本

; pour plus d'informations sur ce fichier:
; http://www.ovh.com/fr/g1175.format_du_point_ovhconfig

app.engine=php
app.engine.version=5.5
;apc.enabled = 1
http.firewall=none
environment=production
于 2015-10-27T09:13:39.527 回答