Codeigniter error when trying to connect to database using mysqli

后端 未结 10 991
陌清茗
陌清茗 2020-12-21 09:39

I am getting Following error in my CodeIgniter application which is live on server.

Here is the output of the error:

A PHP Error was encounte

10条回答
  •  既然无缘
    2020-12-21 09:49

    u can add new user and pass and give it all privileges, like below:

    CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
    GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'localhost';
    FLUSH PRIVILEGES;
    

    then, u should update your config.php file, with new user and pass.

提交回复
热议问题