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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.