when i want to "Change User Privileges of a Repository" or " Change Group Privileges of a Repository" I can select the repository but when hitting the "select" link the browser turns blank. What did I miss?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The problem is originated to the incompatibility with the new PEAR lib.
To fix the problem you have edit [svnmanager_dir]/svnmanager/RepositoryModule/UserPrivilegesEditPage.php
line 251: replace "config_dir" with "config-dir" (underscore to dash)
Hi,
when i want to "Change User Privileges of a Repository" or " Change Group Privileges of a Repository" I can select the repository but when hitting the "select" link the browser turns blank. What did I miss?
Yes, this happen to me too. I see my apache log. It returns 500 error. Maybe wrong configuration permissions. Any idea ?
Hi,
The problem is originated to the incompatibility with the new PEAR lib.
To fix the problem you have edit [svnmanager_dir]/svnmanager/RepositoryModule/UserPrivilegesEditPage.php
replace
with
You should do the same changes in GroupPrivilegesEditPage.php to be able to edit group privileges.
I forgot one thing: you have to add an include to the files.
require_once 'PEAR/ErrorStack.php';
Thx Fufi, this resolved my problem.