Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
719aa784
Commit
719aa784
authored
Jan 11, 2009
by
vogelor
Browse files
Fixed the handling of the custom-files because the default-files are renamed some days ago.
parent
443d7e06
Changes
1
Show whitespace changes
Inline
Side-by-side
server/plugins-available/apache2_plugin.inc.php
View file @
719aa784
...
...
@@ -323,7 +323,7 @@ class apache2_plugin {
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"
)){
if
(
file_exists
(
"/usr/local/ispconfig/server/conf-custom/error/
400
.html"
)){
exec
(
"cp /usr/local/ispconfig/server/conf-custom/error/*.html "
.
$error_page_path
);
}
else
{
...
...
@@ -334,12 +334,12 @@ class apache2_plugin {
}
// copy the standard index page
if
(
file_exists
(
"/usr/local/ispconfig/server/conf-custom/index/"
.
substr
(
escapeshellcmd
(
$conf
[
"language"
]),
0
,
2
)
.
"/index.html"
)){
exec
(
"cp /usr/local/ispconfig/server/conf-custom/index/"
.
substr
(
escapeshellcmd
(
$conf
[
"language"
]),
0
,
2
)
.
"
/*
"
.
escapeshellcmd
(
$data
[
"new"
][
"document_root"
])
.
"/web/"
);
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/
default/
index.html"
)){
exec
(
"cp /usr/local/ispconfig/server/conf-custom/index/
default/*
"
.
escapeshellcmd
(
$data
[
"new"
][
"document_root"
])
.
"/web/"
);
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"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment