Skip to content
Snippets Groups Projects
Commit 0bd188f1 authored by Thom's avatar Thom :tools:
Browse files

Make client protection configurable (#4048)

parent 6a108683
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,7 @@ class page_action extends tform_actions { ...@@ -96,7 +96,7 @@ class page_action extends tform_actions {
if($available_dashlets_txt == '') $available_dashlets_txt = '------'; if($available_dashlets_txt == '') $available_dashlets_txt = '------';
$app->tpl->setVar("available_dashlets_txt", $available_dashlets_txt); $app->tpl->setVar("available_dashlets_txt", $available_dashlets_txt);
// Logo // Logo
$sys_ini = $app->db->queryOneRecord("SELECT * FROM sys_ini WHERE sysini_id = ?", $this->id); $sys_ini = $app->db->queryOneRecord("SELECT * FROM sys_ini WHERE sysini_id = ?", $this->id);
if($sys_ini['custom_logo'] != ''){ if($sys_ini['custom_logo'] != ''){
...@@ -156,6 +156,11 @@ class page_action extends tform_actions { ...@@ -156,6 +156,11 @@ class page_action extends tform_actions {
*/ */
$new_config = $app->tform->encode($this->dataRecord, $section); $new_config = $app->tform->encode($this->dataRecord, $section);
if($section == 'sites' && $new_config['client_protection'] != 'y' && $server_config_array['sites']['client_protection'] == 'y') {
$app->db->query("UPDATE web_domain sys_perm_group = 'riud' WHERE added_by = admin");
} elseif($section == 'sites' && $new_config['client_protection'] != 'n' && $server_config_array['sites']['client_protection'] == 'n') {
$app->db->query("UPDATE web_domain sys_perm_group = 'ru' WHERE added_by = admin");
}
if($section == 'sites' && $new_config['vhost_subdomains'] != 'y' && $server_config_array['sites']['vhost_subdomains'] == 'y') { if($section == 'sites' && $new_config['vhost_subdomains'] != 'y' && $server_config_array['sites']['vhost_subdomains'] == 'y') {
// check for existing vhost subdomains, if found the mode cannot be disabled // check for existing vhost subdomains, if found the mode cannot be disabled
$check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE `type` = 'vhostsubdomain'"); $check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE `type` = 'vhostsubdomain'");
...@@ -198,13 +203,13 @@ class page_action extends tform_actions { ...@@ -198,13 +203,13 @@ class page_action extends tform_actions {
"FROM dns_soa"; "FROM dns_soa";
$app->db->query($sql); $app->db->query($sql);
} }
//die(print_r($_FILES)); //die(print_r($_FILES));
// Logo // Logo
/* /*
if(isset($_FILES['file']['name']) && is_uploaded_file($_FILES['file']['tmp_name'])){ if(isset($_FILES['file']['name']) && is_uploaded_file($_FILES['file']['tmp_name'])){
//print_r($_FILES); //print_r($_FILES);
$path= $_FILES['file']['tmp_name']; $path= $_FILES['file']['tmp_name'];
$type = pathinfo($path, PATHINFO_EXTENSION); $type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path); $data = file_get_contents($path);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment