Jump to content

Need code for making htpasswd


perficut

Recommended Posts

I've gotten stuck and need a little help.

 

I a variable (LastName) that I need to convert to an htaccess crypted password to put into the htpasswd file.  The code I am getting is similar to TG3UomYd9nEOgGary:V2/EvyXHE8h.Q   sometimes even longer.  Not to mention it doesnt work.

 

When I use some of the online htpasswd creators i found on google, I am getting crypted passwords such as cwIgR6n88Pt3E  much shorter. This crypted password works fine when I put it into the htpasswd file.  The one I am getting does not.

 

As you can see, the FirstName is the LOGIN ID, the LastName is the Password

Heres what I have.

// OPEN PASSWORD DATA FILE AND STORE USE NAME & PASSWORD //

$myFile = "../private/.htpasswd";
$fh = fopen($myFile, 'a') or die("can't open file");
$prepassword = ($LastName);
$password = crypt($prepassword, base64_encode($prepassword)); 
$stringData = "$FirstName:$password";
fwrite($fh, $stringData);
fclose($fh);

// CLOSE PASSWORD DATA FILE .HTPASSWD //

 

Link to comment
https://forums.phpfreaks.com/topic/66978-need-code-for-making-htpasswd/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.