Article:
 |
|
Custom-Compiling Apache and Subversion
|
| Subject: |
|
thank you! |
| Date: |
|
2005-09-09 13:26:13 |
| From: |
|
gregg_tavares
|
|
|
|
You RULE! I would never have figured out how to get it all working without this article. I also never understood until now why fedora/redhat always had stuff installed in someplace other than the default for most programs.
I did notice a typo I think
[root@localhost trunk]# /usr/local/apache2/bin/htpasswd -c -m
-b /www/svn_repository/conf/htpasswd user1 password1
[root@localhost trunk]# /usr/local/apache2/bin/htpasswd -m
-b /www/svn_repository/conf/htpasswd user2 password2
[root@localhost trunk]# /usr/local/apache2/bin/htpasswd -m
-b /www/svn_repository/conf/htpasswd user3 password3
should be
[root@localhost trunk]# /usr/local/apache2/bin/htpasswd -c -m
-b /usr/local/svn_repository/conf/htpasswd user1 password1
[root@localhost trunk]# /usr/local/apache2/bin/htpasswd -m
-b /usr/local/svn_repository/conf/htpasswd user2 password2
[root@localhost trunk]# /usr/local/apache2/bin/htpasswd -m
-b /usr/local/svn_repository/conf/htpasswd user3 password3
|
Showing messages 1 through 1 of 1.
-
Good Catch!
2005-09-09 16:10:21
manni_lee_wood
[View]
That is indeed a typo: the system where I did my testing had /usr/local/svn_repository and /www/svn_repository symlinked, and I failed to catch that one.
-Manni