Jump to content

htpasswd help


mikeymizrahi

Recommended Posts

  • 2 weeks later...
[quote author=mikeymizrahi link=topic=102795.msg408496#msg408496 date=1154560306]
i am using apache v. 2.0.55 with php 5.1.4

i am using authtype basic and require valid-user in my httpd file

everytime i create a new user, it overwrites the other passwordfile.

therefore, i am only able to have one user at a time

how can i stop this?
[/quote]

use the following:
htpasswd /path/to/your/.htpasswd  username

[b]note[/b] the missing -c after the htpasswd.........

using the command htpasswd /path/to/your/.htpasswd  username  -- will read your existing .htpasswd file and add (append) a new name to it.

using htpasswd -c  will create the .htpasswd file overwriting the any existing .htpasswd file.

if you are on a linux/unix machine from the command prompt type
'man htpasswd' or 'htpasswd --help' or try this webpage for more information
http://httpd.apache.org/docs/1.3/programs/htpasswd.html

Hope it help  ::)
Link to comment
https://forums.phpfreaks.com/topic/16388-htpasswd-help/#findComment-73413
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.