Posted by:
bat Slavi
February 25, 2013 05:55PM
Hi,
When adding alias, the scripts checks if alias name contains the name of any of the subdirectories in www, so if you have directory named c you won't be able to add any alias containing 'c'. The fix is trivial.
alias.inc.php:78
- if (stristr($_POST['alias_name'], $value) != FALSE) {
+ if (strcasecmp($_POST['alias_name'], $value) == 0) {
Cheers,
Slavi