queenpictoria:
Kim,
That is quite a blow-off.
You must not know.
I don't need your advice.
I need help.
I already read that. Can't you tell by my notes.
Please leave me alone.
queenpictoria, your attitude & manner are pompous and not deserved.
Have you never had someone misunderstand what 'you' were trying to tell them?
Perhaps you were having a bad day?
Anyway, for your benefit and those reading this thread in the future, this looks like where you went wrong.
You put:
DELETE FROM admin WHERE batteryb = 'Admin';
INSERT INTO admin (batteryb)
VALUES ('Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Open your phpMyAdmin (supplied by your hosting company), click the "SQL" tab and run this query:
DELETE FROM admin WHERE admin_name = 'Admin';
INSERT INTO admin (admin_name, admin_email, admin_pass, admin_level)
VALUES ('Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Although the Tutorial could state that you do not change anything, except if there is a prefix used which it does mention, your presumption that you needed to change "admin_name" to "batteryb" was incorrect.
If, for example, one is using a prefix of "zen" then they would run this query:
DELETE FROM zen_admin WHERE admin_name = 'Admin';
INSERT INTO zen_admin (admin_name, admin_email, admin_pass, admin_level)
VALUES ('Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Other than the prefix, nothing else is changed.
The results of running the above query:
- if there was a login using Admin, the password has now been changed
- if there was no login using Admin, then one has been one created