| | |
| | | //* Fill the IPv6 select field with the IP addresses that are allowed for this client |
| | | $sql = "SELECT ip_address FROM server_ip WHERE server_id IN ? AND ip_type = 'IPv6' AND (client_id = 0 OR client_id=?)"; |
| | | $ips = $app->db->queryAllRecords($sql, explode(',', $client['web_servers']), $_SESSION['s']['user']['client_id']); |
| | | $ip_select = ($web_config[$server_id]['enable_ip_wildcard'] == 'y')?"<option value='*'>*</option>":""; |
| | | //$ip_select = ($web_config[$server_id]['enable_ip_wildcard'] == 'y')?"<option value='*'>*</option>":""; |
| | | //$ip_select = ""; |
| | | $ip_select = "<option value=''></option>"; |
| | | if(is_array($ips)) { |
| | | foreach( $ips as $ip) { |
| | | $selected = ($ip["ip_address"] == $this->dataRecord["ipv6_address"])?'SELECTED':''; |
| | |
| | | |
| | | // Letsencrypt can not be activated before the website has been created |
| | | // So we deactivate it here and add a datalog update in onAfterInsert |
| | | if(isset($this->dataRecord['ssl_letsencrypt']) && $this->dataRecord['ssl_letsencrypt'] == 'y') { |
| | | if(isset($this->dataRecord['ssl_letsencrypt']) && $this->dataRecord['ssl_letsencrypt'] == 'y' && isset($this->dataRecord['ssl']) && $this->dataRecord['ssl'] == 'y') { |
| | | $this->dataRecord['ssl_letsencrypt'] = 'n'; |
| | | $this->dataRecord['ssl'] = 'n'; |
| | | $this->_letsencrypt_on_insert = true; |
| | | } |
| | | } |
| | |
| | | if($this->_letsencrypt_on_insert == true) { |
| | | $tmp = $web_rec; |
| | | $tmp['ssl_letsencrypt'] = 'y'; |
| | | $tmp['ssl'] = 'y'; |
| | | $app->db->datalogUpdate('web_domain', $tmp, 'domain_id', $this->id); |
| | | unset($tmp); |
| | | } |