Menu

Change User Privileges of a Rep = blank page

Help
Anonymous
2013-03-21
2013-08-27
  • Anonymous

    Anonymous - 2013-03-21

    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?

     
  • arzachel

    arzachel - 2013-05-05

    Yes, this happen to me too. I see my apache log. It returns 500 error. Maybe wrong configuration permissions. Any idea ?

     
  • Fufi

    Fufi - 2013-07-17

    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

    • line 251: replace "config_dir" with "config-dir" (underscore to dash)
    • line 262:

    replace

    if($entry['type']=='D')$subfolders[]=$entry['name'];
    

    with

    if (isset($entry['type'])) {
        if($entry['type']=='D')$subfolders[]=$entry['name'];
    }
    

    You should do the same changes in GroupPrivilegesEditPage.php to be able to edit group privileges.

     
    • Fufi

      Fufi - 2013-07-29

      I forgot one thing: you have to add an include to the files.

      require_once 'PEAR/ErrorStack.php';

       
  • Patch Logan

    Patch Logan - 2013-08-27

    Thx Fufi, this resolved my problem.

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.