coder
coder

Reputation: 17

How to fix MySQL password error when installing Social Engine

"Please fill in the MySQL Password."

Mysql Host : localhost  
Mysql Username : root  
Mysql Password : 

If I'm not using a MySQL password, then how can I fix this problem? What can I change in install script of Social Engine?

Upvotes: 0

Views: 116

Answers (1)

KRONWALLED
KRONWALLED

Reputation: 1442

How about just creating an user? It's safer anyway.

CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';
GRANT SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, EXECUTE ON schema.* TO    'user'@'localhost';
FLUSH PRIVILEGES;

Note: I guessed the rights as I don't know what SocialEngine needs but I think these are all it will need.

Upvotes: 2

Related Questions