Skip to content
Snippets Groups Projects
Commit c6d48b0f authored by tbrehm's avatar tbrehm
Browse files

Fixed a bug with default index and error file file permissions.

parent a172b753
No related branches found
No related tags found
No related merge requests found
...@@ -243,9 +243,11 @@ class apache2_plugin { ...@@ -243,9 +243,11 @@ class apache2_plugin {
// Copy the error pages // Copy the error pages
$error_page_path = escapeshellcmd($data["new"]["document_root"])."/web/error/"; $error_page_path = escapeshellcmd($data["new"]["document_root"])."/web/error/";
exec("cp /usr/local/ispconfig/server/conf/error/".substr(escapeshellcmd($conf["language"]),0,2)."/* ".$error_page_path); exec("cp /usr/local/ispconfig/server/conf/error/".substr(escapeshellcmd($conf["language"]),0,2)."/* ".$error_page_path);
exec("chmod -R +r ".$error_page_path);
// copy the standard index page // copy the standard index page
exec("cp /usr/local/ispconfig/server/conf/index/standard_index.html_".substr(escapeshellcmd($conf["language"]),0,2)." ".escapeshellcmd($data["new"]["document_root"])."/web/index.html"); exec("cp /usr/local/ispconfig/server/conf/index/standard_index.html_".substr(escapeshellcmd($conf["language"]),0,2)." ".escapeshellcmd($data["new"]["document_root"])."/web/index.html");
exec("chmod +r ".escapeshellcmd($data["new"]["document_root"])."/web/index.html");
} }
// Create group and user, if not exist // Create group and user, if not exist
...@@ -280,6 +282,7 @@ class apache2_plugin { ...@@ -280,6 +282,7 @@ class apache2_plugin {
// Chown and chmod the directories // Chown and chmod the directories
exec("chown -R $username:$groupname ".escapeshellcmd($data["new"]["document_root"])); exec("chown -R $username:$groupname ".escapeshellcmd($data["new"]["document_root"]));
// Create the vhost config file // Create the vhost config file
$app->load('tpl'); $app->load('tpl');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment