Instale o pacote php-xml
:
sudo apt install php-xml
Reinicie o apache depois e verifique se está tudo bem.
Eu preciso criar um servidor websvn
para meus programas.
Eu instalei o websvn no servidor e trabalhei, mas mostrei esta mensagem.
Please set up a repository in include/config.php using $config->parentPath or $config->addRepository. See the installation guide for more details.
Então eu fiz um nano include / config.php
<?php
$config->parentPath("/var/lib/svn");
$config->addRepository("FirstRepo", "file:///var/lib/svn/FirstRepo");
$config->setEnscriptPath("/usr/bin");
$config->setSedPath("/bin");
$config->useEnscript();
?>
Em seguida, um sudo /etc/init.d/apache2 restart
Agora, se eu for o URL http://192.168.x.xxx/websvn/
, o site ficará em branco e a exibição perderá
Aqui está a rota onde eu tenho meus repos /var/lib/svn
e dentro disso eu tenho que pasta FirstRepo
Não sei se fiz algo errado ou não.
apt list php-xml
Listing... Done
php-xml/xenial-updates,xenial-updates 1:7.0+35ubuntu6.1 all
N: There is 1 additional version. Please use the '-a' switch to see it
ls -la /var/lib/svn/FirstRepo
drwxrwxr-x 6 root root 4096 Aug 20 10:52 .
drwxrwxr-x 5 www-data root 4096 Aug 20 10:52 ..
drwxrwxr-x 2 root root 4096 Aug 20 10:52 conf
drwxrwsr-x 6 root root 4096 Aug 20 10:52 db
-rwxrwxr-x 1 root root 2 Aug 20 10:52 format
drwxrwxr-x 2 root root 4096 Aug 20 10:52 hooks
drwxrwxr-x 2 root root 4096 Aug 20 10:52 locks
-rwxrwxr-x 1 root root 246 Aug 20 10:52 README.txt
Tags ubuntu subversion