Hi all
Today I have to exclude one web from ISPConfig daily backup. It is wery easy but maybe useful for someone. I don't know if this feature will be included in ISPConfig 3 but it will be very helpful
1. Find number of web needed for exclusion .. for example for web56 it is 56
2. Edit /ispconfig/scripts/shell/backup.php
change line:
Code:
$webs = $mod->db->queryAllRecords("SELECT * FROM isp_isp_web");
to:
Code:
$webs = $mod->db->queryAllRecords("SELECT * FROM isp_isp_web where doc_id != 56");
Thats all
If you need more than one web .. for example web56 and web74 .. solution is easy too:
Code:
$webs = $mod->db->queryAllRecords("SELECT * FROM isp_isp_web where doc_id != 56 and doc_id != 74");
Hope it helps somebody
SupuS
Recent comments
15 hours 15 min ago
21 hours 56 min ago
1 day 1 hour ago
1 day 3 hours ago
1 day 11 hours ago
1 day 21 hours ago
1 day 22 hours ago
2 days 1 hour ago
2 days 6 hours ago
2 days 6 hours ago