Skip to content

Commit ebad07e

Browse files
committed
- added fast-cgi switch in web form.
- added missing language file for subdomains.
1 parent ecb8730 commit ebad07e

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

interface/web/sites/form/web_domain.tform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
'datatype' => 'VARCHAR',
170170
'formtype' => 'SELECT',
171171
'default' => 'y',
172-
'value' => array('' => 'Disabled', 'cgi' => 'CGI', 'mod' => 'Mod-PHP', 'suphp' => 'SuPHP')
172+
'value' => array('' => 'Disabled', 'fast-cgi' => 'Fast-CGI', 'cgi' => 'CGI', 'mod' => 'Mod-PHP', 'suphp' => 'SuPHP')
173173
),
174174
'active' => array (
175175
'datatype' => 'VARCHAR',
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
$wb["ssl_state_txt"] = 'State';
3+
$wb["ssl_locality_txt"] = 'Locality';
4+
$wb["ssl_organisation_txt"] = 'Organisation';
5+
$wb["ssl_organisation_unit_txt"] = 'Organisation Unit';
6+
$wb["ssl_country_txt"] = 'Country';
7+
$wb["ssl_request_txt"] = 'SSL Request';
8+
$wb["ssl_cert_txt"] = 'SSL Certificate';
9+
$wb["ssl_bundle_txt"] = 'SSL Bundle';
10+
$wb["ssl_action_txt"] = 'SSL Action';
11+
$wb["btn_save_txt"] = 'Save';
12+
$wb["btn_cancel_txt"] = 'Cancel';
13+
$wb["server_id_txt"] = 'Server';
14+
$wb["domain_txt"] = 'Domain';
15+
$wb["type_txt"] = 'Type';
16+
$wb["parent_domain_id_txt"] = 'Parent Website';
17+
$wb["redirect_type_txt"] = 'Redirect Type';
18+
$wb["redirect_path_txt"] = 'Redirect Path';
19+
$wb["active_txt"] = 'Active';
20+
$wb["document_root_txt"] = 'Documentroot';
21+
$wb["system_user_txt"] = 'Linux User';
22+
$wb["system_group_txt"] = 'Linux Group';
23+
$wb["ip_address_txt"] = 'IP-Address';
24+
$wb["vhost_type_txt"] = 'VHost Type';
25+
$wb["hd_quota_txt"] = 'Harddisk Quota';
26+
$wb["traffic_quota_txt"] = 'Traffic Quaota';
27+
$wb["cgi_txt"] = 'CGI';
28+
$wb["ssi_txt"] = 'SSI';
29+
$wb["ssl_txt"] = 'SSL';
30+
$wb["suexec_txt"] = 'SuEXEC';
31+
$wb["php_txt"] = 'PHP';
32+
$wb["client_txt"] = 'Client';
33+
$wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.';
34+
$wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.';
35+
$wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.';
36+
$wb["apache_directives_txt"] = 'Apache directives';
37+
$wb["domain_error_empty"] = 'Domain is empty.';
38+
$wb["domain_error_unique"] = 'Domain must be unique.';
39+
$wb["domain_error_regex"] = 'Domain name invalid.';
40+
?>

0 commit comments

Comments
 (0)