- don't create absolut paths additionally as relative paths in customers docroot, fixes #259

This commit is contained in:
Michael Kaufmann (d00p)
2010-06-04 05:50:23 +00:00
parent d256ddfcbc
commit 323e2210c3
3 changed files with 22 additions and 12 deletions

View File

@@ -677,7 +677,7 @@ class apache
}
}
mkDirWithCorrectOwnership($domain['customerroot'], $domain['documentroot'], $domain['guid'], $domain['guid'], true);
mkDirWithCorrectOwnership($domain['customerroot'], $domain['documentroot'], $domain['guid'], $domain['guid'], true, true);
$vhost_content.= $this->getWebroot($domain);
$vhost_content.= $this->composePhpOptions($domain);
$vhost_content.= $this->getStats($domain);

View File

@@ -368,7 +368,7 @@ class lighttpd
}
else
{
mkDirWithCorrectOwnership($domain['customerroot'], $domain['documentroot'], $domain['guid'], $domain['guid'], true);
mkDirWithCorrectOwnership($domain['customerroot'], $domain['documentroot'], $domain['guid'], $domain['guid'], true, true);
$vhost_content.= $this->getWebroot($domain, $ssl_vhost);
$vhost_content.= $this->create_htaccess($domain);