Strange mod_dav_svn error
October 5th, 2009 by George Notaras
mod_dav_svn lets you serve subversion repositories through the Apache HTTP Server. mod_dav.so is a requirement for mod_dav_svn.so. If while setting up mod_dav_svn you see the error “undefined symbol: dav_register_provider“, make sure you check the order that the aforementioned modules are loaded. mod_dav must precede mod_dav_svn:
LoadModule dav_module modules/mod_dav.so LoadModule dav_svn_module modules/mod_dav_svn.so
This will resolve the issue.
The Strange mod_dav_svn error by George Notaras, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. Terms and conditions beyond the scope of this license may be available at www.g-loaded.eu.
Related Articles
- Creative Commons v3.0 Licenses Launched
- Using the mod_dav_svn SVNParentPath directive with multiple authz files
- Script for Apache Error Report
- When it comes to error messages…
- Error when using old run/bin installers under Linux
Tags: Apache, Errors, Subversion