ivytony Posted October 28, 2008 Share Posted October 28, 2008 I've created a db user and given it full privileges: mysql>CREATE USER 'user10'@'localhost' IDENTIFIED BY 'password' mysql>create database database_10; GRANT ALL PRIVILEGES ON database_10.* TO 'user10'@'localhost' IDENTIFIED BY 'password10' WITH GRANT OPTION; But this user cannot remove any entry from the database anymore! This is a new problem arised today, it used to be able to delete any entry in the database. I wonder what I need to do to enable this user to do its job. Another problem is about logging in to phpmyadmin. Say the user10 is the owner of a database used by domainA.com, I used to access phpmyadmin by using this url http://www.domainA.com/phpmyadmin and was able to log in using 'user10' and 'password'. But now, I cannot even log in phpmyadmin from http://www.domainA.com/phpmyadmin, instead I have to use this url http://www.domainB.com/phpmyadmin to access the database user10 owns. I wonder what causes this weird weird problem??? These are all new problem due to no reason today. thanks Quote Link to comment https://forums.phpfreaks.com/topic/130383-solved-mysql-user-cannot-remove-a-database-entry-help/ Share on other sites More sharing options...
fenway Posted October 29, 2008 Share Posted October 29, 2008 Have you been run FLUSH PRIVILEGES? Quote Link to comment https://forums.phpfreaks.com/topic/130383-solved-mysql-user-cannot-remove-a-database-entry-help/#findComment-677767 Share on other sites More sharing options...
ivytony Posted October 29, 2008 Author Share Posted October 29, 2008 yes, I've flushed privileges. It turned out that my APF blocks the port '3306'. LOL Quote Link to comment https://forums.phpfreaks.com/topic/130383-solved-mysql-user-cannot-remove-a-database-entry-help/#findComment-677771 Share on other sites More sharing options...
fenway Posted October 30, 2008 Share Posted October 30, 2008 So, solved? Quote Link to comment https://forums.phpfreaks.com/topic/130383-solved-mysql-user-cannot-remove-a-database-entry-help/#findComment-678537 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.