-1

I have an Azure Web App with a Symfony site installed and a separate Azure MySQL ClearDB. I can connect from my local computer to ClearDB using a MySql client but I can't manage to make connection from Symfony even though the connection details are identical. Anyone had this issue and knows how to get there?

Koen
  • 3,626
  • 1
  • 34
  • 55

1 Answers1

1

I can't reproduce this.

Maybe you could clear cache after editing parameters.yml file by running the following command:

php bin/console cache:clear --env={dev|prod}
Aaron Chen
  • 9,835
  • 1
  • 16
  • 28
  • Silly me. "If you have a problem, always try clear the cache first!" Thanks man :-) – Koen Oct 23 '17 at 07:27