I have the same problem. The problem is in the php script /var/lib/dokuwiki/plugins/acl/ajax.php (acl plugin)
In the following line if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../'); ajax.php defines path to 'DOKU_INC' wrongly (DOKU_INC is not defined at this point). DOKU_INC is not located at /var/lib/dokuwiki/plugins/acl/../../../ where ajax.php searches for it. In the ubunut installed dokuwiki, inc directory is located at /usr/share/dokuwiki/ It is possible to temporarily work around this problem by modifing ajax.php (first make a backup copy of ajax.php, just in case something goes wrong) Replace the line if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../'); with if(!defined('DOKU_INC')) define('DOKU_INC','/usr/share/dokuwiki/'); -- ACL Management doesn't work https://bugs.launchpad.net/bugs/589469 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs