RE: [PHP-WIN] crypt() on windows

2002-06-20 Thread Christian Leberfinger
]] > Sent: Friday, June 21, 2002 12:12 AM > To: Christian Leberfinger; [EMAIL PROTECTED] > Subject: Re: [PHP-WIN] crypt() on windows > > > I actually remember reading a tutorial on using the htpasswd.exe > that comes > with apache to emulate its *nix twin. It is supposed to let

Re: [PHP-WIN] crypt() on windows

2002-06-20 Thread Ben Davis
I actually remember reading a tutorial on using the htpasswd.exe that comes with apache to emulate its *nix twin. It is supposed to let you create htpasswd files on Windows and it works well. I got it to work and encrypt strings, but for some reason, I could never get Apache to recognize the .ht

RE: [PHP-WIN] crypt() on windows

2002-06-20 Thread Dash McElroy
sday, June 20, 2002 1:17 PM To: PHP-List Subject: RE: [PHP-WIN] crypt() on windows Crypt() is supported by windows systems, but it uses other encryption mechanisms than crypt() on unix-systems...that means it returns other encrypted strings. So when Apache compares the crypt()ed string with the

RE: [PHP-WIN] crypt() on windows

2002-06-20 Thread Christian Leberfinger
Crypt() is supported by windows systems, but it uses other encryption mechanisms than crypt() on unix-systems...that means it returns other encrypted strings. So when Apache compares the crypt()ed string with the one stored in the .htpasswd, it fails and you can't gain access... Is there no way