I configured my Zend Framework virtualhost environment, but now my files cannot access the MySQL database. Getting an error:
SQLSTATE[28000] [1045] Access denied for user ‘root’@’localhost’.
Where should I configure my MySQL so that it matches my virtualhost?
You need to make sure you are using
Zend_Dband you have configured MySQL as you adapter in Zend DB AdapterAlso, in your
application.inifile underconfigsfolder,you must write:
Enjoy coding 🙂