look, someone didn't read the readme :P
INSERT INTO login_authchange (account_id, ip) values(usersid,'usersip');
From Loginreadme.txt:
"Change usersid to equal the id number you got when you selected the id number (second step) and put the users ip where it has 'usersip'"
Soo I guess this says:
INSERT INTO login_authchange (account_id, ip) values(1,'127.0.0.1');
127.0.0.1 is the ip, 1 is the user id
|