- Improved http monitor function.
- Added ispconfigend user and group when user to webid connection is activated.
| | |
| | | * So we can do a deepter test and try to get data over this connection. |
| | | * (if apache hangs, we get a connection but a timeout by trying to GET the data!) |
| | | */ |
| | | fwrite($fp, "GET / HTTP/1.0\r\n\r\n"); |
| | | // fwrite($fp, "GET / HTTP/1.0\r\n\r\n"); |
| | | $out = "GET / HTTP/1.1\r\n"; |
| | | $out .= "Host: localhost\r\n"; |
| | | $out .= "Connection: Close\r\n\r\n"; |
| | | fwrite($fp, $out); |
| | | stream_set_timeout($fp, 5); // Timeout after 5 seconds |
| | | $res = fread($fp, 10); // try to get 10 bytes (enough to test!) |
| | | $info = stream_get_meta_data($fp); |
| | |
| | | $app->uses('system'); |
| | | |
| | | if($web_config['connect_userid_to_webid'] == 'y') { |
| | | //* Calculate the uid and gid |
| | | $connect_userid_to_webid_start = ($web_config['connect_userid_to_webid_start'] < 1000)?1000:intval($web_config['connect_userid_to_webid_start']); |
| | | $fixed_uid_gid = intval($connect_userid_to_webid_start + $data['new']['domain_id']); |
| | | $fixed_uid_param = '--uid '.$fixed_uid_gid; |
| | | $fixed_gid_param = '--gid '.$fixed_uid_gid; |
| | | |
| | | //* Check if a ispconfigend user and group exists and create them |
| | | if(!$app->system->is_group('ispconfigend')) { |
| | | exec('groupadd --gid '.($connect_userid_to_webid_start + 10000).' ispconfigend'); |
| | | } |
| | | if(!$app->system->is_user('ispconfigend')) { |
| | | exec('useradd -g ispconfigend -d /usr/local/ispconfig --uid '.($connect_userid_to_webid_start + 10000).' ispconfigend'); |
| | | } |
| | | } else { |
| | | $fixed_uid_param = ''; |
| | | $fixed_gid_param = ''; |