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
Guilherme Filippo
ISPConfig 3
Commits
4369754a
Commit
4369754a
authored
Jul 21, 2009
by
tbrehm
Browse files
Fixed: FS#782 - issue with moving of web to other client
parent
9851f94e
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/web/sites/web_domain_edit.php
View file @
4369754a
...
...
@@ -346,10 +346,10 @@ class page_action extends tform_actions {
// Set the values for document_root, system_user and system_group
$system_user
=
'web'
.
$this
->
id
;
$system_group
=
'client'
.
$client_id
;
//
$document_root = str_replace("[client_id]",$client_id,$document_root);
$document_root
=
str_replace
(
"[client_id]"
,
$client_id
,
$document_root
);
//
$sql = "UPDATE web_domain SET system_user = '$system_user', system_group = '$system_group', document_root = '$document_root' WHERE domain_id = ".$this->id;
$sql
=
"UPDATE web_domain SET system_user = '
$system_user
', system_group = '
$system_group
' WHERE domain_id = "
.
$this
->
id
;
$sql
=
"UPDATE web_domain SET system_user = '
$system_user
', system_group = '
$system_group
', document_root = '
$document_root
' WHERE domain_id = "
.
$this
->
id
;
//
$sql = "UPDATE web_domain SET system_user = '$system_user', system_group = '$system_group' WHERE domain_id = ".$this->id;
$app
->
db
->
query
(
$sql
);
}
...
...
server/plugins-available/apache2_plugin.inc.php
View file @
4369754a
...
...
@@ -261,7 +261,7 @@ class apache2_plugin {
// Remove trailing slash
if
(
substr
(
$tmp_symlink
,
-
1
,
1
)
==
'/'
)
$tmp_symlink
=
substr
(
$tmp_symlink
,
0
,
-
1
);
// create the symlinks, if not exist
if
(
!
is_link
(
$tmp_symlink
))
{
if
(
is_link
(
$tmp_symlink
))
{
exec
(
"rm -f "
.
escapeshellcmd
(
$tmp_symlink
));
$app
->
log
(
"Removed Symlink: rm -f "
.
$tmp_symlink
,
LOGLEVEL_DEBUG
);
}
...
...
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