WebSVN Installation
Posted: August 12th, 2008 | Author: Administrator | Filed under: PHP | 2 Comments »If you recently downloaded and installed WebSVN and have followed the Installation Guide only to receive this error:
Please set up a repository path in include/config.php using $config->parentPath or $config->addRepository
See the installation guide for more details
you need to do one of two things.
1) Move include/config.php into the WebSVN root OR
2) Edit include/setup.php by changing:
require_once 'config.php';
To
require_once 'include/config.php';
For some reason, WebSVN is looking for config.php in the root folder, even though it resides under the include directory by default.