0
respostas

Instalação com mensagens de erro

Fiz a instalação seguindo o vídeo, mas recebi no navegador essa visualização Insira aqui a descrição dessa imagem para ajudar na acessibilidade

Dessa maneira, busquei algumas formas de resolver 1ª

  • Inseri as linhas entre deprecation e formatter do arquivo monolog.yaml (config/packages/monolog.yaml)
  • Retirei o comentário de firephp: e chromephp
monolog:
    channels:
        - deprecation # Deprecations are logged in the dedicated "deprecation" channel when it exists

when@dev:
    monolog:
        handlers:
            main:
                type: stream
                path: "%kernel.logs_dir%/%kernel.environment%.log"
                level: debug
                channels: ["!event"]
            deprecation:
                type: stream
                channels: [deprecation]
                path: "%kernel.logs_dir%/deprecation.log"  # Caminho para registrar depreciações
                level: debug
                formatter: monolog.formatter.json
            # uncomment to get logging in your browser
            # you may have to allow bigger header sizes in your Web server configuration
            firephp:
                type: firephp
                level: info
            chromephp:
                type: chromephp
                level: info
            console:
                type: console
                process_psr_3_messages: false
                channels: ["!event", "!doctrine", "!console"]

Como não deu certo 2ª Tentativa Alterei no arquivo php.ini para

display_errors = Off
display_startup_errors = Off
error_reporting = E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED

Mas continuo com a mesma tela no navegador. Como resolver isso? Obrigada