svn 使用 PHP 管理用户、存储库、空间
我使用 SVN 的全部经验都是使用 tortoise SVN 客户端,并且从未设置过服务器。我的老板要我安装一个 SVN 服务器。安装SVN服务器没什么大不了的,但真正的问题是他想要一个PHP基础脚本来控制SVN用户、他们的访问、存储库/空间等?
my whole experience with SVN is using tortoise SVN client, and have never setup the server. My boss wants me to setup a SVN server. Installing SVN server is no big deal, but the real problem is that he wants a PHP base script to control SVN users, their access, repositories/spaces etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现配置 apache 基本身份验证是管理 svn 用户的一种简单明了的方法。
以下链接描述了如何设置:
http:// svnbook.red-bean.com/en/1.5/svn.serverconfig.httpd.html
一旦你完成了这些,创建一个 php 脚本来管理 .htpasswd 文件应该不会太困难。我快速谷歌了一下,这里有一个可能有帮助的链接:
http://www.hawkee.com/snippet /7168/
I've found that configuring apache basic authentication is a straightforward and easy way to manage svn users.
Here's a link that describes how to set it up:
http://svnbook.red-bean.com/en/1.5/svn.serverconfig.httpd.html
Once you have that up, it shouldn't be too difficult to create a php script to manage the .htpasswd file. I did a quick google and here's a link that might help:
http://www.hawkee.com/snippet/7168/