From 698a4d49516cf461e03ba0bc0a94960a550c151e Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Fri, 07 Aug 2009 06:11:45 -0400 Subject: [PATCH] Updated permissions for secure mode. --- interface/lib/config.inc.php | 2 +- server/plugins-available/apache2_plugin.inc.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/lib/config.inc.php b/interface/lib/config.inc.php index 4a79254..6384d3c 100644 --- a/interface/lib/config.inc.php +++ b/interface/lib/config.inc.php @@ -44,7 +44,7 @@ //** Application define('ISPC_APP_TITLE', 'ISPConfig'); -define('ISPC_APP_VERSION', '3.0.0.9'); +define('ISPC_APP_VERSION', '3.0.1.4'); //** Database diff --git a/server/plugins-available/apache2_plugin.inc.php b/server/plugins-available/apache2_plugin.inc.php index 1a962ec..30e4aed 100644 --- a/server/plugins-available/apache2_plugin.inc.php +++ b/server/plugins-available/apache2_plugin.inc.php @@ -472,8 +472,8 @@ // If the security level is set to high if($web_config['security_level'] == 20) { - exec("chmod 711 ".escapeshellcmd($data["new"]["document_root"]."/")); - exec("chmod 711 ".escapeshellcmd($data["new"]["document_root"])."/*"); + exec("chmod 751 ".escapeshellcmd($data["new"]["document_root"]."/")); + exec("chmod 751 ".escapeshellcmd($data["new"]["document_root"])."/*"); exec("chmod 710 ".escapeshellcmd($data["new"]["document_root"]."/web")); // make temp direcory writable for the apache user and the website user -- Gitblit v1.9.1