On Tue, Mar 1, 2011 at 1:18 PM, Yoyo Zhao <
lww_y...@yahoo.com> wrote:
> I'm student of Fontys Hogeschool, the company I'm working at is a
> dutch company and the system they use are also in dutch that is why I
> got a dutch error back xD;
>
> about the password for the new user, I had converted the password to
> MD5 hash but I still can't login to that account
If you're using Digest authentication, the password is not just an md5 hash.
If the username is 'user' and the password is 'password', the hash
looks like this:
MD5('user:SabreDAV:password');
'SabreDAV' is the authentication realm. Don't forget the colons :. In
Digest terms this is called the A1 or HA1 hash.
Evert