Trac 和 Subversion 不能一起工作
我在我的 VPS 上安装了 Trac。它加载页面很好,除了读取 svn 存储库,它在我的 subversion 客户端上运行良好
我得到的错误是
警告:无法与 存储库(不支持的版本 控制系统“svn”: “libsvn_fs-1.so.0:无法打开共享 目标文件:没有这样的文件或 目录”)。查看 Trac 日志 了解更多信息。
更新:
关于GrayWizardx的回答 :当我尝试使用以下命令安装或修复 python svn 绑定时:
yum 安装 python-subversion
我收到交易错误:
文件 /usr/lib/libsvn_swig_py-1.so.0.0.0 从安装 颠覆-1.6.6-0.1.el5.rf.i386 与包中的文件冲突 颠覆-python-1.6.0-1.i386
I installed Trac on my VPS. It loads the pages fine except for reading the svn repository which is working fine on my subversion client
The error i get is
Warning: Can't synchronize with the
repository (Unsupported version
control system "svn":
"libsvn_fs-1.so.0: cannot open shared
object file: No such file or
directory" ). Look in the Trac log
for more information.
Update:
Regarding GrayWizardx's answer: when I tried to install or fix python svn bindings with:
yum install python-subversion
I get a transaction error:
file
/usr/lib/libsvn_swig_py-1.so.0.0.0
from install of
subversion-1.6.6-0.1.el5.rf.i386
conflicts with file from package
subversion-python-1.6.0-1.i386
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在 trac-users 档案中找到了这个。 “另一个不受支持的 SVN 错误”。它看起来很相似,但海报所报道的是不同的图书馆。已经解决了,第一次回复。
I found this in the trac-users archive. "Another unsupported SVN error". it looks similar but it is a different library being reported by the poster. It does have a fix, first reply.
您需要将 subversion-python 绑定升级到与您的 subversion 相同的版本,即 1.6.6
You need to upgrade subversion-python bindings to the same version as your subversion, i.e. 1.6.6
[进一步的问题作为答案合并到OP的问题中]
[Further question as answer merged into OP's question]