When i run that sql statement manually I get:
mysql> SELECT person.id,person.password FROM person,member WHERE
    ->  person.username='admin' AND person.sitegroup=0 AND member.uid =
person.id AND member.gid=0;
+----+----------+
| id | password |
+----+----------+
|  1 | password |
+----+----------+
1 row in set (0.00 sec)

Which seems correct, though I'm not sure. I searched google and went through the
list archive, but haven't found anything. Has anyone seen this ([unset] -7)
error before? Any ideas?


Cleartext passwords must be preceded by ** in the datebase, run the following SQL command:


UPDATE person SET username="admin",password="**password" WHERE id=1;

to reset the password correctly.

/Rambo


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to