WebSVNをインストールしようとしています。これまでのところすべて正常に動作しましたが、私のリポジトリは認識されません。WebSVNがリポジトリを認識しない
私のユーザフォルダの中に/home/svn
(svn
はユーザ名です)私はいくつかのリポジトリを持っており、それらはすべてWebSVNに表示されます。
これは私のconfig.php
です:
<?php
$config->setSVNCommandPath('/usr/bin');
$config->setDiffPath('/usr/bin');
$config->setEnscriptPath('/usr/bin');
$config->setSedPath('/bin');
$config->setTarPath('/bin');
$config->setGZipPath('/bin');
$config->parentPath('/home/svn');
$config->addTemplatePath($locwebsvnreal.'/templates/calm/');
$config->addTemplatePath($locwebsvnreal.'/templates/BlueGrey/');
$config->addTemplatePath($locwebsvnreal.'/templates/Elegant/');
$config->addInlineMimeType('text/plain');
$config->setMinDownloadLevel(2);
$config->useGeshi();
set_time_limit(0);
$config->expandTabsBy(8);
$extEnscript[".pl"] = "perl";
$extEnscript[".py"] = "python";
$extEnscript[".sql"] = "sql";
$extEnscript[".java"] = "java";
$extEnscript[".html"] = "html";
$extEnscript[".xml"] = "html";
$extEnscript[".thtml"] = "html";
$extEnscript[".tpl"] = "html";
$extEnscript[".sh"] = "bash";
私はブラウザでwebsvnの開いている場合、それはHTTP ERROR 500
を示しています。私は$config->parentPath('/home');
にライン$config->parentPath('/home/svn');
を変更した場合、それは私に言って続けて:
$ CONFIG-> parentPathまたは$ CONFIG-> addRepositoryを使用して/ config.phpのを含んでリポジトリを設定してください。詳細は、インストール ガイドを参照してください。
何か不足していますか?