I forgot the root password, so followed a few different methods to reset, which eventually worked.
Now I am unable to create new databases on PHPmyAdmin, the message "no privileges" is displayed.
So I try to add all the permissions to ROOT again using:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
But then I get the error:
#1290 - The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
So I remove the "skip-grant-tables" from my.ini, then my MySQL based sites stop working.
Have I officially fudged it up?