Hi,
I really need help with this, please. I am trying to insert users from external file (.csv) directly into couch db, which is the only way since they are created there... and I don't know if I am doing it correctly and how actually complicated it really is...
So far I can insert all the other fields but the issue (I hope that's the only one) is encoding the password, with Phpass (I'm sorry, but
), which isn't encoded properly. I can tell as it does not resemble the others created in the backend. This way:
$hasher = new PasswordHash(8, false);
$hash = $hasher->HashPassword($password);
Is this doable at all?
thank you,
malax
I really need help with this, please. I am trying to insert users from external file (.csv) directly into couch db, which is the only way since they are created there... and I don't know if I am doing it correctly and how actually complicated it really is...
So far I can insert all the other fields but the issue (I hope that's the only one) is encoding the password, with Phpass (I'm sorry, but

$hasher = new PasswordHash(8, false);
$hash = $hasher->HashPassword($password);
Is this doable at all?
thank you,
malax