Since Plesk modifies the Apache configuration files automatically, it is good to make changes in apache, how to change or configure open_basedir for subversion webdav using configuration files you find already created.
You must create one in the path / var / www / vhosts / dominio.com / conf / vhost.conf
or is a subdomain / var / www / vhosts / dominio.com / subdomains / subdomain / conf / vhost. conf
For example, to end the horrible error "open_basedir restriction" if you want to put off the public folder your code, add this:
\u0026lt;Directory / Var / www / vhosts / dominio.com / httpdocs>
php_admin_flag engine on
php_admin_value open_basedir "/ var / www / vhosts / dominio.com / httpdocs: / var / www / vhosts / dominio.com / private_directory: / tmp"
\u0026lt;/ Directory>
But the first time will not work until plesk regenerate its configuration files. This is because Plesk need to make a link in httpd.include is in that same folder, so read the file. The best way to get apache to read that file Plesk is telling you to scan your directory conf / in search of your vhost.conf, and that you can get it running the command:
# / usr / local / psa / admin / sbin / websrvmng -U - vhost-name = dominio.com
And then, of course, restarting apache:
# / etc / init.d / httpd restart
If you want to install subversion, see this link ( English)