Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Helmo
ISPConfig 3
Commits
6a596ea1
Commit
6a596ea1
authored
7 years ago
by
Marius Burkard
Browse files
Options
Downloads
Patches
Plain Diff
- fixed parent domain not reset on databases when it is deleted, fixes #4760
parent
1083ffcd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
install/sql/incremental/upd_dev_collection.sql
+2
-1
2 additions, 1 deletion
install/sql/incremental/upd_dev_collection.sql
interface/web/sites/web_vhost_domain_del.php
+7
-1
7 additions, 1 deletion
interface/web/sites/web_vhost_domain_del.php
with
9 additions
and
2 deletions
install/sql/incremental/upd_dev_collection.sql
+
2
−
1
View file @
6a596ea1
...
...
@@ -17,4 +17,5 @@ CHANGE `warnbadhrecip` `warnbadhrecip` ENUM('N','Y') CHARACTER SET utf8 COLLATE
ALTER
TABLE
`dns_rr`
CHANGE
`data`
`data`
TEXT
NOT
NULL
;
ALTER
TABLE
`web_database`
CHANGE
`database_quota`
`database_quota`
INT
(
11
)
NULL
DEFAULT
NULL
;
ALTER
TABLE
`web_domain`
ADD
`log_retention`
INT
NOT
NULL
DEFAULT
'30'
;
ALTER
TABLE
spamfilter_policy
CHANGE
spam_tag_level
spam_tag_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_tag2_level
spam_tag2_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_kill_level
spam_kill_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_dsn_cutoff_level
spam_dsn_cutoff_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_quarantine_cutoff_level
spam_quarantine_cutoff_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
;
\ No newline at end of file
ALTER
TABLE
spamfilter_policy
CHANGE
spam_tag_level
spam_tag_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_tag2_level
spam_tag2_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_kill_level
spam_kill_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_dsn_cutoff_level
spam_dsn_cutoff_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_quarantine_cutoff_level
spam_quarantine_cutoff_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
;
UPDATE
`web_database`
as
d
LEFT
JOIN
`web_domain`
as
w
ON
(
w
.
domain_id
=
d
.
parent_domain_id
)
SET
d
.
parent_domain_id
=
0
WHERE
w
.
domain_id
IS
NULL
AND
d
.
parent_domain_id
!=
0
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
interface/web/sites/web_vhost_domain_del.php
+
7
−
1
View file @
6a596ea1
...
...
@@ -120,8 +120,14 @@ class page_action extends tform_actions {
}
}
}
//* Remove parent_domain_id from databases
$records
=
$app
->
db
->
queryAllRecords
(
"SELECT database_id FROM web_database WHERE parent_domain_id = ?"
,
$this
->
id
);
foreach
(
$records
as
$rec
)
{
$app
->
db
->
datalogUpdate
(
'web_database'
,
array
(
'parent_domain_id'
=>
0
),
'database_id'
,
$rec
[
'database_id'
]);
}
}
//* Delete all web folders
$records
=
$app
->
db
->
queryAllRecords
(
"SELECT web_folder_id FROM web_folder WHERE parent_domain_id = ?"
,
$this
->
id
);
foreach
(
$records
as
$rec
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment