| | |
| | | } |
| | | |
| | | // get the primitive folder for document_root and the filesystem, will need it later. |
| | | $df_output=explode(" ", exec("df -T $document_root|awk 'END{print \$2,\$NF}'")); |
| | | $df_output=explode(" ", exec("df -T " . $data['new']['document_root'] . "|awk 'END{print \$2,\$NF}'")); |
| | | $file_system = $df_output[0]; |
| | | $primitive_root = $df_output[1]; |
| | | |
| | |
| | | if(is_array($aliasdomains)) { |
| | | foreach($aliasdomains as $aliasdomain) { |
| | | $temp_domains[] = $aliasdomain['domain']; |
| | | if(isset($aliasdomain['subdomain']) && (! empty($aliasdomain['subdomain']) && $aliasdomain['subdomain']) != "none" ) { |
| | | $temp_domains[] = $aliasdomain['subdomain'] . "." . $aliasdomain['domain']; |
| | | if(isset($aliasdomain['subdomain']) && ($aliasdomain['subdomain'] != "none")) { |
| | | $temp_domains[] = "www." . $aliasdomain['domain']; |
| | | } |
| | | } |
| | | } |