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
6724a4eb
Commit
6724a4eb
authored
Apr 14, 2008
by
tbrehm
Browse files
No commit message
No commit message
parent
318ace2f
Changes
1
Show whitespace changes
Inline
Side-by-side
server/plugins-available/apache2_plugin.inc.php
View file @
6724a4eb
...
...
@@ -219,7 +219,7 @@ class apache2_plugin {
// Remove the symlink for the site, if site is renamed
if
(
$this
->
action
==
'update'
&&
$data
[
"old"
][
"domain"
]
!=
''
&&
$data
[
"new"
][
"domain"
]
!=
$data
[
"old"
][
"domain"
])
{
if
(
is_dir
(
'/var/log/ispconfig/httpd/'
.
$data
[
"old"
][
"domain"
]))
exec
(
'rm -rf /var/log/ispconfig/httpd/'
.
$data
[
"old"
][
"domain"
]);
if
(
is_link
(
$data
[
"
new
"
][
"document_root"
]
.
"/log"
))
exec
(
"rm -f "
.
$data
[
"
new
"
][
"document_root"
]
.
"/log"
);
if
(
is_link
(
$data
[
"
old
"
][
"document_root"
]
.
"/log"
))
exec
(
"rm -f "
.
$data
[
"
old
"
][
"document_root"
]
.
"/log"
);
}
// Create the symlink for the logfiles
...
...
@@ -389,11 +389,14 @@ class apache2_plugin {
$app
->
log
(
"Removing symlink:
$vhost_symlink
=>
$vhost_file
"
,
LOGLEVEL_DEBUG
);
}
// remove old symlink, if domain name of the site has changed
// remove old symlink
and vhost file
, if domain name of the site has changed
if
(
$this
->
action
==
'update'
&&
$data
[
"old"
][
"domain"
]
!=
''
&&
$data
[
"new"
][
"domain"
]
!=
$data
[
"old"
][
"domain"
])
{
$vhost_symlink
=
escapeshellcmd
(
$web_config
[
"vhost_conf_enabled_dir"
]
.
'/'
.
$data
[
"old"
][
"domain"
]
.
'.vhost'
);
unlink
(
$vhost_symlink
);
$app
->
log
(
"Removing symlink:
$vhost_symlink
=>
$vhost_file
"
,
LOGLEVEL_DEBUG
);
$vhost_file
=
escapeshellcmd
(
$web_config
[
"vhost_conf_dir"
]
.
'/'
.
$data
[
"old"
][
"domain"
]
.
'.vhost'
);
unlink
(
$vhost_file
);
$app
->
log
(
"Removing File
$vhost_file
"
,
LOGLEVEL_DEBUG
);
}
// request a httpd reload when all records have been processed
...
...
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