phpmyadmin mysql root user no privileges error
Run mysql server using “mysqld_safe –skip-grant-tables &” from command prompt. or update mysql config with mysql/my.cnf or my.ini with [mysqld] skip-grant-tables Now create a new user with mysqladmin -u USERNAME password ‘password’ Then login to mysql with mysql -u USERNAME -p Enter password Enter command “flush privileges;” Then enter command “GRANT ALL on *.* to […]