Unable to connect to database: Access denied for user ''@'localhost' to database 'socialdb'

后端 未结 6 1184
野趣味
野趣味 2021-01-21 11:07

I\'ve seen a few errors like this, but I found no answer.

Unable to connect to database: Access denied for user \'\'@\'localhost\' to database \'socialdb\'
         


        
6条回答
  •  甜味超标
    2021-01-21 11:48

    You did not specify a user in neither mysql_connect or your PHP configuration.

    Either set mysql.default_user and mysql.default_password in your PHP configuration or use the appropriate arguments for mysql_connect.

提交回复
热议问题