I have a problem with svnmanger-1.03. I have an empty screen. The page source code is empty. Can somebody point me in the right direction? I have no idea to search...
//If the following is set, removing a repository will cause it to be
//moved to this location rather than being deleted.
$svn_trash_loc = "";
// If $svnserve_user_file is defined, then SVNManager will create a
// user/password file suitable for use with SVNSERVE
//
// When not set, this feature isn't enabled.
//
// Warning: When enabled, this mode requires that passwords are stored in the database readable!
//
// Note: When is feature is enabled later, passwords need to be re-set before they are included in
// the svnserve user file.
//
//$svnserve_user_file = "/var/www/repos/svnserve_passwd_file";
$svnserve_user_file="";
//SMTP Server for outgoing mail
$smtp_server = "localhost";
//Data Source Name (only tested with mysql and sqlite!!)
//
// Use the createtables.sql script to build the tables in a mysql database
//
// An empty SQLite database will automatically be generated with the first
// startup!
//
//Please note that if you change the directory for a SQLite database that you
//choose a location that is not accessible via web!!
//
$dsn = "mysqli://svnmanager:**password**@localhost/svnmanager";
//The following location is not readable from internet by means of an .htaccess file
//$dsn = "sqlite://svnmanager/svnmanager.db";
// If $post_create_script is defined, then this script / command will be
// executed after a repository is created.
// When the script/command is executed the one and only parameter will be
// the physical location of the repository.
// This might copy a default set of hooks or config files
//
// $post_create_script = "newrepo-script";
?>
Thank you for your help!
Steffen
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am facign the same issue in SVNManager loading. Can you please let me know how I can check mysqli extension of php on my server. What is the command for this check
Regards
Asif Shams
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I have a problem with svnmanger-1.03. I have an empty screen. The page source code is empty. Can somebody point me in the right direction? I have no idea to search...
Iam using debian Etch, with apache2, php5
I followed this HowTo:
http://redimp.de/index.php?url=archives/11-Howto-Debian-Etch-+-Apache2-+-SVNManager.html
Here is my config file
<?php
//
// SVNManager config.php file for Linux based servers
//
//Shell command's
$htpassword_cmd = "/usr/bin/htpasswd";
$svn_cmd = "/usr/bin/svn";
$svnadmin_cmd = "/usr/bin/svnadmin";
//Subversion locations
$svn_repos_loc = "/var/lib/svn/repos";
$svn_passwd_file = "/var/lib/svn/htpasswd";
$svn_access_file = "/var/lib/svn/accessfile";
//If the following is set, removing a repository will cause it to be
//moved to this location rather than being deleted.
$svn_trash_loc = "";
// If $svnserve_user_file is defined, then SVNManager will create a
// user/password file suitable for use with SVNSERVE
//
// When not set, this feature isn't enabled.
//
// Warning: When enabled, this mode requires that passwords are stored in the database readable!
//
// Note: When is feature is enabled later, passwords need to be re-set before they are included in
// the svnserve user file.
//
//$svnserve_user_file = "/var/www/repos/svnserve_passwd_file";
$svnserve_user_file="";
//SMTP Server for outgoing mail
$smtp_server = "localhost";
//Data Source Name (only tested with mysql and sqlite!!)
//
// Use the createtables.sql script to build the tables in a mysql database
//
// An empty SQLite database will automatically be generated with the first
// startup!
//
//Please note that if you change the directory for a SQLite database that you
//choose a location that is not accessible via web!!
//
$dsn = "mysqli://svnmanager:**password**@localhost/svnmanager";
//The following location is not readable from internet by means of an .htaccess file
//$dsn = "sqlite://svnmanager/svnmanager.db";
//Administrator account
$admin_name = "admin";
$admin_temp_password = "admin";
// If $post_create_script is defined, then this script / command will be
// executed after a repository is created.
// When the script/command is executed the one and only parameter will be
// the physical location of the repository.
// This might copy a default set of hooks or config files
//
// $post_create_script = "newrepo-script";
?>
Thank you for your help!
Steffen
Are you sure the mysqli extension of php is installed?
Marijn
Hey Marijn,
thanks alot! You are right the package was missing. Now it works!
Steffen!
Hi,
I am facign the same issue in SVNManager loading. Can you please let me know how I can check mysqli extension of php on my server. What is the command for this check
Regards
Asif Shams