"Justin Best" writes:
> First, my congratulations to Craig for creating a truly useful and unique
> piece of software. I am very impressed.
You sure know how to get your questions answered :).
The problem is that the regexp that matches CgiAdminUsers
isn't robust to special characters in the string. That's
actually a bug.
Try this change. In lib/BackupPC/CGI/Lib.pm, change this line:
$Privileged ||= ($Conf{CgiAdminUsers} =~ /\b$User\b/);
to:
$Privileged ||= ($Conf{CgiAdminUsers} =~ /\b\Q$User\E\b/);
A single backslash inside single quotes should be ok, ie:
$Conf{CgiAdminUsers} = 'PDXMISSION\Administrator';
Tell me if this works and I'll make this fix permanent.
Craig
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
BackupPC-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/