mv useracl useracl-prev
cp ../useracl-prev/config.php ./config/
vim -d config_sample.php config.php
If and only if you are positive that things work as before (or, even, better), then delete the old directory!
To enable the display of a link to useracl in each folder listing, you have to add an extra plugin hook in functions/page_header.php:
Search for "pagetop" (around line 271) and add the following lines, just before the line echo " </td>\n
:
$pagetop_string = ' ';
$ret = concat_hook_function('pagetop', $pagetop_string);
if($ret != '') {
$pagetop_string = $ret;
}
echo $pagetop_string;