我最近试图得到trac和svn在centOS 5上通过一些谷歌search与Apache的工作,我发现我需要安装mod_dav_svn。 我用yum来安装它,它列出了一个依赖的httpd 2.2.3(以前安装的版本是2.2.16)。 我让它安装,现在没有什么似乎工作…有什么办法来撤消这个安装? 或者只是为了使它与2.2.3一起工作会更好?
我正在为我正在开发的一个软件项目构build一个Subversion版本库服务器,我想使用trac。 我已经成功安装trac,并使用tracd工具运行 – 但我猜这不是很安全。 我很担心evesdropping,我想通过HTTPS / TLS连接使用trac。 是唯一的方法来完成这个使用像Apache这样的Web服务器? 谢谢!
我一直在尝试设置trac,以便在apache上部署一段时间,而我正在跑进一堵墙。 这是我从我的服务器收到的响应 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available […]
我尝试在我的suse根服务器上安装trac 。 所以首先我使用yast安装所有svn软件包。 之后,我在软件pipe理中search了python,因为我必须安装以下软件包 Apache2的-MOD-python LIB-XML2,python python python-devel的 python,元史 python,setuptool python-TK python的XML 的PyXML 但python-genshi没有在那里列出。 它不见了。 我如何安装? 因为当我尝试easy_install trac我得到以下错误: 有任何想法吗?
我不确定在Trac安装之后这是否正确,或者是一些错误configuration的结果。 下面是在编辑模式下的一个Wikipage的screecapture,在那里标准的所见即所得的控件(预计会出现在文本input的左上angular)缺失。 为了解决这个问题,安装了TracWysiwygPlugin ,但这并没有改变这种情况。 什么可能是缺less所见即所得控制的原因,如何解决?
我们是一个小团队,与TRAC + SubVersion ,后提交钩和所有:) 最近,我们有一些开发者需要离线工作的情况,所以我们一起决定迁移到GIT因为它与发布的事实是完全一样的。 我们成功地转换了所有项目的所有存储库。 但无法将GIT存储库与其TRAC实例集成。 1 – 在Windows 7 Apache 2.2服务器上设置GIT : http : //www.jeremyskinner.co.uk/2010/07/31/hosting-a-git-server-under-apache-on-windows 2 – 转换我们的存储库: http : //john.albin.net/git/convert-subversion-to-git 3 – 使用GIT按照http://trac.edgewall.org/wiki/TracGit设置TRAC 存储库正在工作可以轻松克隆/拉/推/提交任何东西。 将知识库添加到TRAC ,我看不到"Browse Source"和修订版。 当试图trac-admin <ENV> repository resync "(default)" 我收到错误消息: TracError: GIT backend not available 是什么赋予了? 我在哪里可以看到发生了什么? 我错过了什么?
我有两个独立的Ubuntu 12.04服务器。 运行Trac(homeserver / Dyndns) 运行后缀(VPS / staticIP) 我configurationtrac使用TLS并连接到postfix服务器。 Tracconfiguration: admit_domains = always_notify_owner = true always_notify_reporter = true always_notify_updater = true ambiguous_char_width = single email_sender = SmtpEmailSender ignore_domains = mime_encoding = base64 sendmail_path = sendmail smtp_always_bcc = smtp_always_cc = [email protected] smtp_default_domain = smtp_enabled = true smtp_from = [email protected] smtp_from_name = Trac smtp_password = randompassstring== smtp_port […]
我正在TracModWSGI上使用Trac项目 – RHEL7上的Trac项目 : # cat /etc/redhat-release Red Hat Enterprise Linux Server release 7.0 (Maipo) # rpm -q httpd mod_wsgi subversion swig httpd-2.4.6-18.el7_0.x86_64 mod_wsgi-3.4-12.el7_0.x86_64 subversion-1.7.14-6.el7.x86_64 swig-2.0.10-4.el7.x86_64 # grep tracopt.versioncontrol conf/trac.ini tracopt.versioncontrol.git.* = enabled tracopt.versioncontrol.svn.* = enabled # 当试图Browse Source ( Subversion )时,我得到以下错误: Trac Error: – Unsupported version control system "svn": No module named svn Logging […]
如何获得mod_fastcgi.so模块并将其加载到apache2中? 我需要它来部署trac。 谢谢!
我有一个工作后提交钩子bash脚本syncronises Trac实例与SVN提交的最新版本。 #!/bin/sh TRAC="/var/trac/" REPOS="$1" REV="$2" if [[ "$REPOS" = "*TechReader*"]]; then trac-admin $TRAC"techreader" changeset added $REPOS $REV; fi if [[ "$REPOS" = "*InteractEnglish*"]]; then trac-admin $TRAC"interactenglish" changeset added $REPOS $REV; fi trac-admin $TRAC"egloo" changeset added $REPOS $REV 最后的trac-admin调用会根据需要运行并更新内部Trac实例,但是if语句似乎不会触发Trac客户端实例的更新。 同步的命令是一样的,所以是有条件的错误?