Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Webslice
ISPConfig 3
Commits
37d75569
Commit
37d75569
authored
Jul 10, 2008
by
tbrehm
Browse files
Changed symlink for apache logfile as vlogger is not able to log in a directory that is a symlink.
parent
35bcf208
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/apache2_plugin.inc.php
View file @
37d75569
...
...
@@ -217,6 +217,20 @@ class apache2_plugin {
if
(
!
is_dir
(
$data
[
"new"
][
"document_root"
]
.
"/cgi-bin"
))
exec
(
"mkdir -p "
.
$data
[
"new"
][
"document_root"
]
.
"/cgi-bin"
);
// 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
[
"old"
][
"document_root"
]
.
"/log"
))
unlink
(
$data
[
"old"
][
"document_root"
]
.
"/log"
);
}
// Create the symlink for the logfiles
if
(
!
is_dir
(
'/var/log/ispconfig/httpd/'
.
$data
[
"new"
][
"domain"
]))
exec
(
'mkdir -p /var/log/ispconfig/httpd/'
.
$data
[
"new"
][
"domain"
]);
if
(
!
is_link
(
$data
[
"new"
][
"document_root"
]
.
"/log"
))
{
exec
(
"ln -s /var/log/ispconfig/httpd/"
.
$data
[
"new"
][
"domain"
]
.
" "
.
$data
[
"new"
][
"document_root"
]
.
"/log"
);
$app
->
log
(
"Creating Symlink: ln -s /var/log/ispconfig/httpd/"
.
$data
[
"new"
][
"domain"
]
.
" "
.
$data
[
"new"
][
"document_root"
]
.
"/log"
,
LOGLEVEL_DEBUG
);
}
/*
// Create the symlink for the logfiles
// This does not work as vlogger can not log trogh symlinks.
if($this->action == 'update' && $data["old"]["domain"] != '' && $data["new"]["domain"] != $data["old"]["domain"]) {
if(is_dir($data["old"]["document_root"]."/log")) exec('rm -rf '.$data["old"]["document_root"]."/log");
if(is_link('/var/log/ispconfig/httpd/'.$data["old"]["domain"])) unlink('/var/log/ispconfig/httpd/'.$data["old"]["domain"]);
...
...
@@ -228,6 +242,7 @@ class apache2_plugin {
exec("ln -s ".$data["new"]["document_root"]."/log /var/log/ispconfig/httpd/".$data["new"]["domain"]);
$app->log("Creating Symlink: ln -s ".$data["new"]["document_root"]."/log /var/log/ispconfig/httpd/".$data["new"]["domain"],LOGLEVEL_DEBUG);
}
*/
// Get the client ID
$client
=
$app
->
db
->
queryOneRecord
(
"SELECT client_id FROM sys_group WHERE sys_group.groupid = "
.
intval
(
$data
[
"new"
][
"sys_groupid"
]));
...
...
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