I'm hosting a symfony3 application and I have the parameters all set up correctly in parameters.yml:
database_host: 'localhost'
database_port: '3306'
database_name: 'matthe93_portfolio'
database_user: 'matthe93_matthew'
database_password: '******'
I am 100% sure I have the password set up correctly, as I've set the password multiple times.
But whenever I go to a page that uses MySQL, I get 500 Internal Server Error. I don't get that with pages that do not use MySQL, so I know this is a MySQL problem.
Am I doing something wrong or is there something I'm missing?
database_host: 'localhost'
database_port: '3306'
database_name: 'matthe93_portfolio'
database_user: 'matthe93_matthew'
database_password: '******'
I am 100% sure I have the password set up correctly, as I've set the password multiple times.
But whenever I go to a page that uses MySQL, I get 500 Internal Server Error. I don't get that with pages that do not use MySQL, so I know this is a MySQL problem.
Am I doing something wrong or is there something I'm missing?