mikeymizrahi Posted August 2, 2006 Share Posted August 2, 2006 i am using apache v. 2.0.55 with php 5.1.4i am using authtype basic and require valid-user in my httpd fileeverytime i create a new user, it overwrites the other passwordfile.therefore, i am only able to have one user at a timehow can i stop this? Quote Link to comment Share on other sites More sharing options...
youcantoo Posted August 11, 2006 Share Posted August 11, 2006 [quote author=mikeymizrahi link=topic=102795.msg408496#msg408496 date=1154560306]i am using apache v. 2.0.55 with php 5.1.4i am using authtype basic and require valid-user in my httpd fileeverytime i create a new user, it overwrites the other passwordfile.therefore, i am only able to have one user at a timehow 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 informationhttp://httpd.apache.org/docs/1.3/programs/htpasswd.htmlHope it help ::) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.