VisualSVN website provided a method to install trac 0.12 on top of VisualSVN 2.6.4 (apache web server) with Subversion authentication. this is described at: http://www.visualsvn.com/server/trac/ This works well but recently I had to update to VisualSVN 2.7.3 that includes and update to SVN 1.8.5 and had to also update to Trac 1.0.1. i was able to replace the trac files in the folder and the pages for trac are serving but i get the following error on the wiki:
"Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": DLL load failed: The specified procedure could not be found.). Look in the Trac log for more information."
The Trac Log file contains the following error:
2013-12-23 00:24:13,892 Trac[svn_fs] INFO: Failed to load Subversion bindings
Traceback (most recent call last):
File "build\bdist.win32\egg\tracopt\versioncontrol\svn\svn_fs.py", line 273, in __init__
_import_svn()
File "build\bdist.win32\egg\tracopt\versioncontrol\svn\svn_fs.py", line 72, in _import_svn
from svn import fs, repos, core, delta
File "C:\VisualSVN Server\trac\python\lib\site-packages\svn\fs.py", line 26, in
from libsvn.fs import *
File "C:\VisualSVN Server\trac\python\lib\site-packages\libsvn\fs.py", line 86, in
import core
File "C:\VisualSVN Server\trac\python\lib\site-packages\libsvn\core.py", line 25, in
_core = swig_import_helper()
File "C:\VisualSVN Server\trac\python\lib\site-packages\libsvn\core.py", line 21, in swig_import_helper
_mod = imp.load_module('_core', fp, pathname, description)
ImportError: DLL load failed: The specified procedure could not be found.
I doubt i am the first to have this issue but I could not find any fixes for this issue. I also emailed VisualSVN about the unsupported plug-in but received no help (understandably so). If anyone has dealt with this issue, knows of a walk-thru for these versons please post.
As a last hope, any one knowing of an alternative way to setup Trac to work with VisulSVN (apache web server) for the mentioned versions, your help is appreciated as well.
from svn import fs, repos, core, delta. If you get errors, then you most likely have a SVN/Python library problem. - btaimportcommand that worked for you. Follow the Windows troubleshooting steps from trac.edgewall.org/wiki/TracSubversion#checklist-windows. That guide appears to describe your exact error. - bta