Skip to content
Snippets Groups Projects
Commit 6a2e36ec authored by vogelor's avatar vogelor
Browse files

It is now possible to have customized html-pages in...

It is now possible to have customized html-pages in /usr/local/ispconfig/server/conf-custom (with or without language-informations)
parent 1e74ea59
No related branches found
No related tags found
No related merge requests found
...@@ -300,14 +300,34 @@ class apache2_plugin { ...@@ -300,14 +300,34 @@ class apache2_plugin {
if($this->action == 'insert' && $data["new"]["type"] == 'vhost') { if($this->action == 'insert' && $data["new"]["type"] == 'vhost') {
// Copy the error pages // Copy the error pages
if($data["new"]["errordocs"]){ if($data["new"]["errordocs"]){
$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); if (file_exists("/usr/local/ispconfig/server/conf-custom/error/".substr(escapeshellcmd($conf["language"]),0,2))){
exec("chmod -R +r ".$error_page_path); exec("cp /usr/local/ispconfig/server/conf-custom/error/".substr(escapeshellcmd($conf["language"]),0,2)."/* ".$error_page_path);
} }
else {
if (file_exists("/usr/local/ispconfig/server/conf-custom/error/fileNotFound.html")){
exec("cp /usr/local/ispconfig/server/conf-custom/error/*.html ".$error_page_path);
}
else {
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"); if (file_exists("/usr/local/ispconfig/server/conf-custom/index/standard_index.html_".substr(escapeshellcmd($conf["language"]),0,2))){
exec("cp /usr/local/ispconfig/server/conf-custom/index/standard_index.html_".substr(escapeshellcmd($conf["language"]),0,2)." ".escapeshellcmd($data["new"]["document_root"])."/web/index.html");
}
else {
if (file_exists("/usr/local/ispconfig/server/conf-custom/index/standard_index.html")){
exec("cp /usr/local/ispconfig/server/conf-custom/index/standard_index.html ".escapeshellcmd($data["new"]["document_root"])."/web/index.html");
}
else {
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"); exec("chmod +r ".escapeshellcmd($data["new"]["document_root"])."/web/index.html");
} }
......
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