Merged revisions 3803-3844 from stable branch.
438 files modified
27 files added
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/var/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/var/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/php5/cgi/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/var/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/php5/cgi/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/var/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/var/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/php/cgi-php5'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/var/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/php5/fastcgi/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/srv/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/php5/fastcgi/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/srv/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | |
| | | class installer extends installer_dist { |
| | | |
| | | public function configure_mailman($status = 'insert') { |
| | | global $conf; |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'mm_cfg.py'; |
| | | //* Backup exiting file |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'mm_cfg.py~'); |
| | | } |
| | | |
| | | // load files |
| | | $content = rf('tpl/mm_cfg.py.master'); |
| | | $old_file = rf($full_file_name); |
| | | |
| | | $old_options = array(); |
| | | $lines = explode("\n", $old_file); |
| | | foreach ($lines as $line) |
| | | { |
| | | if (trim($line) != '' && substr($line, 0, 1) != '#') |
| | | { |
| | | @list($key, $value) = @explode("=", $line); |
| | | if (!empty($value)) |
| | | { |
| | | $key = rtrim($key); |
| | | $old_options[$key] = trim($value); |
| | | } |
| | | } |
| | | } |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'virtual_to_transport.sh'; |
| | | |
| | | //* Backup exiting virtual_to_transport.sh script |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'virtual_to_transport.sh~'); |
| | | } |
| | | |
| | | copy('tpl/mailman-virtual_to_transport.sh',$full_file_name); |
| | | chgrp($full_file_name,'mailman'); |
| | | chmod($full_file_name,0750); |
| | | |
| | | if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman'); |
| | | exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman'); |
| | | |
| | | exec('/usr/lib/mailman/bin/genaliases 2>/dev/null'); |
| | | |
| | | $virtual_domains = ''; |
| | | if($status == 'update') |
| | | { |
| | | // create virtual_domains list |
| | | $domainAll = $this->db->queryAllRecords("SELECT domain FROM mail_mailinglist GROUP BY domain"); |
| | | |
| | | if(is_array($domainAll)) { |
| | | foreach($domainAll as $domain) |
| | | { |
| | | if ($domainAll[0]['domain'] == $domain['domain']) |
| | | $virtual_domains .= "'".$domain['domain']."'"; |
| | | else |
| | | $virtual_domains .= ", '".$domain['domain']."'"; |
| | | } |
| | | } |
| | | } |
| | | else |
| | | $virtual_domains = "' '"; |
| | | |
| | | $content = str_replace('{hostname}', $conf['hostname'], $content); |
| | | if(!isset($old_options['DEFAULT_SERVER_LANGUAGE'])) $old_options['DEFAULT_SERVER_LANGUAGE'] = ''; |
| | | $content = str_replace('{default_language}', $old_options['DEFAULT_SERVER_LANGUAGE'], $content); |
| | | $content = str_replace('{virtual_domains}', $virtual_domains, $content); |
| | | |
| | | wf($full_file_name, $content); |
| | | } |
| | | |
| | | public function configure_amavis() { |
| | | global $conf; |
| | | |
| | |
| | | |
| | | class installer extends installer_dist { |
| | | |
| | | public function configure_mailman($status = 'insert') { |
| | | global $conf; |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'mm_cfg.py'; |
| | | //* Backup exiting file |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'mm_cfg.py~'); |
| | | } |
| | | |
| | | // load files |
| | | $content = rf('tpl/mm_cfg.py.master'); |
| | | $old_file = rf($full_file_name); |
| | | |
| | | $old_options = array(); |
| | | $lines = explode("\n", $old_file); |
| | | foreach ($lines as $line) |
| | | { |
| | | if (trim($line) != '' && substr($line, 0, 1) != '#') |
| | | { |
| | | @list($key, $value) = @explode("=", $line); |
| | | if (!empty($value)) |
| | | { |
| | | $key = rtrim($key); |
| | | $old_options[$key] = trim($value); |
| | | } |
| | | } |
| | | } |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'virtual_to_transport.sh'; |
| | | |
| | | //* Backup exiting virtual_to_transport.sh script |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'virtual_to_transport.sh~'); |
| | | } |
| | | |
| | | copy('tpl/mailman-virtual_to_transport.sh',$full_file_name); |
| | | chgrp($full_file_name,'mailman'); |
| | | chmod($full_file_name,0750); |
| | | |
| | | if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman'); |
| | | exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman'); |
| | | |
| | | exec('/usr/lib/mailman/bin/genaliases 2>/dev/null'); |
| | | |
| | | $virtual_domains = ''; |
| | | if($status == 'update') |
| | | { |
| | | // create virtual_domains list |
| | | $domainAll = $this->db->queryAllRecords("SELECT domain FROM mail_mailinglist GROUP BY domain"); |
| | | |
| | | if(is_array($domainAll)) { |
| | | foreach($domainAll as $domain) |
| | | { |
| | | if ($domainAll[0]['domain'] == $domain['domain']) |
| | | $virtual_domains .= "'".$domain['domain']."'"; |
| | | else |
| | | $virtual_domains .= ", '".$domain['domain']."'"; |
| | | } |
| | | } |
| | | } |
| | | else |
| | | $virtual_domains = "' '"; |
| | | |
| | | $content = str_replace('{hostname}', $conf['hostname'], $content); |
| | | if(!isset($old_options['DEFAULT_SERVER_LANGUAGE'])) $old_options['DEFAULT_SERVER_LANGUAGE'] = ''; |
| | | $content = str_replace('{default_language}', $old_options['DEFAULT_SERVER_LANGUAGE'], $content); |
| | | $content = str_replace('{virtual_domains}', $virtual_domains, $content); |
| | | |
| | | wf($full_file_name, $content); |
| | | } |
| | | |
| | | public function configure_amavis() { |
| | | global $conf; |
| | | |
| | |
| | | */ |
| | | |
| | | class installer_dist extends installer_base { |
| | | |
| | | public function configure_mailman($status = 'insert') { |
| | | global $conf; |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'mm_cfg.py'; |
| | | //* Backup exiting file |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'mm_cfg.py~'); |
| | | } |
| | | |
| | | // load files |
| | | $content = rf('tpl/mm_cfg.py.master'); |
| | | $old_file = rf($full_file_name); |
| | | |
| | | $old_options = array(); |
| | | $lines = explode("\n", $old_file); |
| | | foreach ($lines as $line) |
| | | { |
| | | if (trim($line) != '' && substr($line, 0, 1) != '#') |
| | | { |
| | | @list($key, $value) = @explode("=", $line); |
| | | if (!empty($value)) |
| | | { |
| | | $key = rtrim($key); |
| | | $old_options[$key] = trim($value); |
| | | } |
| | | } |
| | | } |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'virtual_to_transport.sh'; |
| | | |
| | | //* Backup exiting virtual_to_transport.sh script |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'virtual_to_transport.sh~'); |
| | | } |
| | | |
| | | copy('tpl/mailman-virtual_to_transport.sh',$full_file_name); |
| | | chgrp($full_file_name,'mailman'); |
| | | chmod($full_file_name,0750); |
| | | |
| | | if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman'); |
| | | exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman'); |
| | | |
| | | exec('/usr/lib/mailman/bin/genaliases 2>/dev/null'); |
| | | |
| | | $virtual_domains = ''; |
| | | if($status == 'update') |
| | | { |
| | | // create virtual_domains list |
| | | $domainAll = $this->db->queryAllRecords("SELECT domain FROM mail_mailinglist GROUP BY domain"); |
| | | |
| | | if(is_array($domainAll)) { |
| | | foreach($domainAll as $domain) |
| | | { |
| | | if ($domainAll[0]['domain'] == $domain['domain']) |
| | | $virtual_domains .= "'".$domain['domain']."'"; |
| | | else |
| | | $virtual_domains .= ", '".$domain['domain']."'"; |
| | | } |
| | | } |
| | | } |
| | | else |
| | | $virtual_domains = "' '"; |
| | | |
| | | $content = str_replace('{hostname}', $conf['hostname'], $content); |
| | | if(!isset($old_options['DEFAULT_SERVER_LANGUAGE'])) $old_options['DEFAULT_SERVER_LANGUAGE'] = ''; |
| | | $content = str_replace('{default_language}', $old_options['DEFAULT_SERVER_LANGUAGE'], $content); |
| | | $content = str_replace('{virtual_domains}', $virtual_domains, $content); |
| | | |
| | | wf($full_file_name, $content); |
| | | } |
| | | |
| | | function configure_postfix($options = '') |
| | | { |
| | |
| | | exec("ln -s $vhost_conf_dir/ispconfig.vhost $vhost_conf_enabled_dir/000-ispconfig.vhost"); |
| | | } |
| | | |
| | | /* |
| | | exec('mkdir -p /var/www/php-fcgi-scripts/ispconfig'); |
| | | exec('cp tpl/apache_ispconfig_fcgi_starter.master /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | exec('chmod +x /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | |
| | | exec('chown -R ispconfig:ispconfig /var/www/php-fcgi-scripts/ispconfig'); |
| | | |
| | | replaceLine('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter','PHPRC=','PHPRC=/etc/',0,0); |
| | | */ |
| | | if(!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | exec('mkdir -p /var/www/php-fcgi-scripts/ispconfig'); |
| | | wf('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', $content); |
| | | exec('chmod +x /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | exec('ln -s /usr/local/ispconfig/interface/web /var/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /var/www/php-fcgi-scripts/ispconfig'); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | |
| | | if ( !is_file($conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter') ) |
| | | { |
| | | $content = rf('tpl/apache_apps_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | mkdir($conf['web']['website_basedir'].'/php-fcgi-scripts/apps', 0755, true); |
| | | copy('tpl/apache_apps_fcgi_starter.master',$conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter'); |
| | | //copy('tpl/apache_apps_fcgi_starter.master',$conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter'); |
| | | wf($conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter', $content); |
| | | exec('chmod +x '.$conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter'); |
| | | exec('chown -R ispapps:ispapps '.$conf['web']['website_basedir'].'/php-fcgi-scripts/apps'); |
| | | |
| | |
| | | $vhost_path = $conf['apache']['vhost_conf_dir'].'/ispconfig.vhost'; |
| | | $this->write_config_file($vhost_path, $content); |
| | | |
| | | if (!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) |
| | | { |
| | | if(!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | mkdir('/var/www/php-fcgi-scripts/ispconfig', 0755, true); |
| | | copy('tpl/apache_ispconfig_fcgi_starter.master', '/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | wf('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', $content); |
| | | exec('chmod +x /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | chmod('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', 0755); |
| | | symlink($install_dir.'/interface/web', '/var/www/ispconfig'); |
| | | symlink($install_dir.'/interface/web','/var/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /var/www/php-fcgi-scripts/ispconfig'); |
| | | } |
| | | } |
| | |
| | | */ |
| | | |
| | | class installer_dist extends installer_base { |
| | | |
| | | public function configure_mailman($status = 'insert') { |
| | | global $conf; |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'mm_cfg.py'; |
| | | //* Backup exiting file |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'mm_cfg.py~'); |
| | | } |
| | | |
| | | // load files |
| | | $content = rf('tpl/mm_cfg.py.master'); |
| | | $old_file = rf($full_file_name); |
| | | |
| | | $old_options = array(); |
| | | $lines = explode("\n", $old_file); |
| | | foreach ($lines as $line) |
| | | { |
| | | if (trim($line) != '' && substr($line, 0, 1) != '#') |
| | | { |
| | | @list($key, $value) = @explode("=", $line); |
| | | if (!empty($value)) |
| | | { |
| | | $key = rtrim($key); |
| | | $old_options[$key] = trim($value); |
| | | } |
| | | } |
| | | } |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'virtual_to_transport.sh'; |
| | | |
| | | //* Backup exiting virtual_to_transport.sh script |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'virtual_to_transport.sh~'); |
| | | } |
| | | |
| | | copy('tpl/mailman-virtual_to_transport.sh',$full_file_name); |
| | | chgrp($full_file_name,'mailman'); |
| | | chmod($full_file_name,0750); |
| | | |
| | | if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman'); |
| | | exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman'); |
| | | |
| | | exec('/usr/lib/mailman/bin/genaliases 2>/dev/null'); |
| | | |
| | | $virtual_domains = ''; |
| | | if($status == 'update') |
| | | { |
| | | // create virtual_domains list |
| | | $domainAll = $this->db->queryAllRecords("SELECT domain FROM mail_mailinglist GROUP BY domain"); |
| | | |
| | | if(is_array($domainAll)) { |
| | | foreach($domainAll as $domain) |
| | | { |
| | | if ($domainAll[0]['domain'] == $domain['domain']) |
| | | $virtual_domains .= "'".$domain['domain']."'"; |
| | | else |
| | | $virtual_domains .= ", '".$domain['domain']."'"; |
| | | } |
| | | } |
| | | } |
| | | else |
| | | $virtual_domains = "' '"; |
| | | |
| | | $content = str_replace('{hostname}', $conf['hostname'], $content); |
| | | if(!isset($old_options['DEFAULT_SERVER_LANGUAGE'])) $old_options['DEFAULT_SERVER_LANGUAGE'] = ''; |
| | | $content = str_replace('{default_language}', $old_options['DEFAULT_SERVER_LANGUAGE'], $content); |
| | | $content = str_replace('{virtual_domains}', $virtual_domains, $content); |
| | | |
| | | wf($full_file_name, $content); |
| | | } |
| | | |
| | | function configure_postfix($options = '') |
| | | { |
| | |
| | | $command = 'groupadd sshusers'; |
| | | if(!is_group('sshusers')) caselog($command.' &> /dev/null 2> /dev/null', __FILE__, __LINE__, "EXECUTED: $command", "Failed to execute the command $command"); |
| | | |
| | | // create PHP-FPM pool dir |
| | | exec('mkdir -p '.$conf['nginx']['php_fpm_pool_dir']); |
| | | |
| | | $content = rf('/etc/php5/fpm/php-fpm.conf'); |
| | | if(stripos($content, 'include=/etc/php5/fpm/pool.d/*.conf') === false){ |
| | | af('/etc/php5/fpm/php-fpm.conf',"\ninclude=/etc/php5/fpm/pool.d/*.conf"); |
| | | } |
| | | unset($content); |
| | | if(!@is_file($conf['nginx']['php_fpm_ini_path'])){ |
| | | if(@is_file('/etc/php5/cli/php.ini')){ |
| | | exec('cp -f /etc/php5/cli/php.ini '.$conf['nginx']['php_fpm_ini_path']); |
| | | } elseif(@is_file('/etc/php5/fastcgi/php.ini')){ |
| | | exec('cp -f /etc/php5/fastcgi/php.ini '.$conf['nginx']['php_fpm_ini_path']); |
| | | } elseif(@is_file('/etc/php5/apache2/php.ini')){ |
| | | exec('cp -f /etc/php5/apache2/php.ini '.$conf['nginx']['php_fpm_ini_path']); |
| | | } |
| | | } |
| | | |
| | | } |
| | | |
| | | public function configure_nginx(){ |
| | |
| | | wf("$vhost_conf_dir/ispconfig.vhost", $content); |
| | | |
| | | if(!is_file('/srv/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | exec('mkdir -p /srv/www/php-fcgi-scripts/ispconfig'); |
| | | exec('cp tpl/apache_ispconfig_fcgi_starter.master /srv/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | wf('/srv/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', $content); |
| | | exec('chmod +x /srv/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | exec('ln -s /usr/local/ispconfig/interface/web /srv/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /srv/www/php-fcgi-scripts/ispconfig'); |
| | |
| | | $tpl_ini_array['jailkit']['jailkit_chroot_app_programs'] = $conf['jailkit']['jailkit_chroot_app_programs']; |
| | | $tpl_ini_array['fastcgi']['fastcgi_phpini_path'] = $conf['fastcgi']['fastcgi_phpini_path']; |
| | | $tpl_ini_array['fastcgi']['fastcgi_starter_path'] = $conf['fastcgi']['fastcgi_starter_path']; |
| | | $tpl_ini_array['fastcgi']['fastcgi_bin'] = $conf['fastcgi']['fastcgi_bin']; |
| | | $tpl_ini_array['server']['hostname'] = $conf['hostname']; |
| | | $tpl_ini_array['server']['ip_address'] = @gethostbyname($conf['hostname']); |
| | | $tpl_ini_array['web']['website_basedir'] = $conf['web']['website_basedir']; |
| | |
| | | if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman'); |
| | | exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman'); |
| | | |
| | | exec('/usr/lib/mailman/bin/genaliases'); |
| | | exec('/usr/lib/mailman/bin/genaliases 2>/dev/null'); |
| | | |
| | | $virtual_domains = ''; |
| | | if($status == 'update') |
| | |
| | | } |
| | | |
| | | if(!is_file($conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_apps_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | mkdir($conf['web']['website_basedir'].'/php-fcgi-scripts/apps', 0755, true); |
| | | copy('tpl/apache_apps_fcgi_starter.master',$conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter'); |
| | | //copy('tpl/apache_apps_fcgi_starter.master',$conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter'); |
| | | wf($conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter', $content); |
| | | exec('chmod +x '.$conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter'); |
| | | exec('chown -R ispapps:ispapps '.$conf['web']['website_basedir'].'/php-fcgi-scripts/apps'); |
| | | |
| | | } |
| | | } |
| | | } |
| | | if($conf['nginx']['installed'] == true){ |
| | | $apps_vhost_user = escapeshellcmd($conf['web']['apps_vhost_user']); |
| | |
| | | } |
| | | } |
| | | if(!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | mkdir('/var/www/php-fcgi-scripts/ispconfig', 0755, true); |
| | | copy('tpl/apache_ispconfig_fcgi_starter.master','/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | wf('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', $content); |
| | | exec('chmod +x /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | symlink($install_dir.'/interface/web','/var/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /var/www/php-fcgi-scripts/ispconfig'); |
| | | |
| | | } |
| | | } |
| | | |
| | |
| | | $tpl_ini_array['jailkit']['jailkit_chroot_app_programs'] = $conf['jailkit']['jailkit_chroot_app_programs']; |
| | | $tpl_ini_array['fastcgi']['fastcgi_phpini_path'] = $conf['fastcgi']['fastcgi_phpini_path']; |
| | | $tpl_ini_array['fastcgi']['fastcgi_starter_path'] = $conf['fastcgi']['fastcgi_starter_path']; |
| | | $tpl_ini_array['fastcgi']['fastcgi_bin'] = $conf['fastcgi']['fastcgi_bin']; |
| | | $tpl_ini_array['server']['hostname'] = $conf['hostname']; |
| | | $tpl_ini_array['server']['ip_address'] = @gethostbyname($conf['hostname']); |
| | | $tpl_ini_array['web']['website_basedir'] = $conf['web']['website_basedir']; |
New file |
| | |
| | | ALTER TABLE `client` CHANGE `limit_aps` `limit_aps` INT( 11 ) NOT NULL DEFAULT '-1'; |
| | |
| | | `limit_shell_user` int(11) NOT NULL DEFAULT '0', |
| | | `ssh_chroot` varchar(255) NOT NULL DEFAULT 'no,jailkit,ssh-chroot', |
| | | `limit_webdav_user` int(11) NOT NULL DEFAULT '0', |
| | | `limit_aps` int(11) NOT NULL DEFAULT '0', |
| | | `limit_aps` int(11) NOT NULL DEFAULT '-1', |
| | | `default_dnsserver` int(11) unsigned NOT NULL DEFAULT '1', |
| | | `limit_dns_zone` int(11) NOT NULL DEFAULT '-1', |
| | | `limit_dns_slave_zone` int(11) NOT NULL DEFAULT '-1', |
| | |
| | | #!/bin/sh |
| | | PHPRC=/etc/php5/cgi/ |
| | | PHPRC={fastcgi_phpini_path} |
| | | export PHPRC |
| | | export PHP_FCGI_MAX_REQUESTS=5000 |
| | | export PHP_FCGI_CHILDREN=1 |
| | | exec /usr/lib/cgi-bin/php -d magic_quotes_gpc=off |
| | | exec {fastcgi_bin} -d magic_quotes_gpc=off |
| | |
| | | #!/bin/sh |
| | | PHPRC=/etc/php5/cgi/ |
| | | PHPRC={fastcgi_phpini_path} |
| | | export PHPRC |
| | | export PHP_FCGI_MAX_REQUESTS=5000 |
| | | export PHP_FCGI_CHILDREN=1 |
| | | exec /usr/bin/php-cgi -d magic_quotes_gpc=off -d session.save_path=/usr/local/ispconfig/server/temp |
| | | exec {fastcgi_bin} -d magic_quotes_gpc=off -d session.save_path=/usr/local/ispconfig/server/temp |
| | |
| | | class ApsCrawler extends ApsBase
|
| | | {
|
| | |
|
| | | public $app_download_url_list = array();
|
| | | //public $app_download_url_list = array();
|
| | |
|
| | | /**
|
| | | * Constructor
|
| | |
| | | foreach($files as $file)
|
| | | {
|
| | | if($file != '.' && $file != '..')
|
| | | if(filetype($dir.'/'.$file) == 'dir') rrmdir($dir.'/'.$file); |
| | | if(filetype($dir.'/'.$file) == 'dir') $this->removeDirectory($dir.'/'.$file); |
| | | else @unlink($dir.'/'.$file);
|
| | | }
|
| | | reset($files);
|
| | |
| | | public function startCrawler()
|
| | | {
|
| | | global $app;
|
| | | |
| | |
|
| | | try
|
| | | {
|
| | | // Make sure the requirements are given so that this script can execute
|
| | |
| | | $local_intf_folder = $this->interface_pkg_dir.'/'.$app_name.'-'.$new_ver.'.app.zip/';
|
| | |
|
| | | // Proceed if a newer or at least equal version has been found with server mode or
|
| | | // interface mode is activated and there's no valid APP-META.xml existing yet
|
| | | if((!$this->interface_mode && version_compare($new_ver, $ex_ver) >= 0)
|
| | | || ($this->interface_mode |
| | | && (!file_exists($local_intf_folder.'APP-META.xml') || filesize($local_intf_folder.'APP-META.xml') == 0)
|
| | | )
|
| | | )
|
| | | {
|
| | | // interface mode is activated and there are no valid APP-META.xml and PKG_URL existing yet
|
| | | if((!$this->interface_mode && version_compare($new_ver, $ex_ver) >= 0) || ($this->interface_mode && (!file_exists($local_intf_folder.'APP-META.xml') || filesize($local_intf_folder.'APP-META.xml') == 0 || !file_exists($local_intf_folder.'PKG_URL') || filesize($local_intf_folder.'PKG_URL') == 0))){
|
| | | // Check if we already have an old version of this app
|
| | | if(!empty($ex_ver) && version_compare($new_ver, $ex_ver) == 1) $apps_updated++;
|
| | |
|
| | |
| | | $app_filesize = parent::getXPathValue($sxe, "entry[position()=1]/link[@a:type='aps']/@length");
|
| | | $app_metafile = parent::getXPathValue($sxe, "entry[position()=1]/link[@a:type='meta']/@href");
|
| | |
|
| | | $this->app_download_url_list[$app_name.'-'.$new_ver.'.app.zip'] = $app_dl;
|
| | |
|
| | | //$this->app_download_url_list[$app_name.'-'.$new_ver.'.app.zip'] = $app_dl;
|
| | | // Skip ASP.net packages because they can't be used at all
|
| | | $asp_handler = parent::getXPathValue($sxe, '//aspnet:handler');
|
| | | $asp_permissions = parent::getXPathValue($sxe, '//aspnet:permissions');
|
| | |
| | |
|
| | | // Create the local folder if not yet existing
|
| | | if(!file_exists($local_intf_folder)) @mkdir($local_intf_folder, 0777, true);
|
| | | |
| | | // Save the package URL in an extra file because it's not part of the APP-META.xml file
|
| | | @file_put_contents($local_intf_folder.'PKG_URL', $app_dl);
|
| | |
|
| | | // Download the meta file
|
| | | $local_metafile = $local_intf_folder.'APP-META.xml';
|
| | |
| | |
|
| | | try
|
| | | {
|
| | | // This method must be used in server mode
|
| | | // This method must be used in interface mode
|
| | | if(!$this->interface_mode) return false;
|
| | |
|
| | | $pkg_list = array();
|
| | |
| | | $pkg_category = parent::getXPathValue($sxe, '//category');
|
| | | $pkg_version = parent::getXPathValue($sxe, 'version');
|
| | | $pkg_release = parent::getXPathValue($sxe, 'release');
|
| | | //$pkg_url = $this->app_download_url_list[$pkg];
|
| | | $pkg_url = @file_get_contents($this->interface_pkg_dir.'/'.$pkg.'/PKG_URL');
|
| | |
|
| | | /*
|
| | | $app->db->query("INSERT INTO `aps_packages`
|
| | |
| | | '".$app->db->quote($pkg_category)."', '".$app->db->quote($pkg_version)."',
|
| | | ".$app->db->quote($pkg_release).", ".PACKAGE_ENABLED.");");
|
| | | */
|
| | | |
| | | $insert_data = "(`path`, `name`, `category`, `version`, `release`, `package_url`, `package_status`) VALUES |
| | | // Insert only if data is complete
|
| | | if($pkg != '' && $pkg_name != '' && $pkg_category != '' && $pkg_version != '' && $pkg_release != '' && $pkg_url){
|
| | | $insert_data = "(`path`, `name`, `category`, `version`, `release`, `package_url`, `package_status`) VALUES |
| | | ('".$app->db->quote($pkg)."', '".$app->db->quote($pkg_name)."',
|
| | | '".$app->db->quote($pkg_category)."', '".$app->db->quote($pkg_version)."',
|
| | | ".$app->db->quote($pkg_release).", '".$app->db->quote($this->app_download_url_list[$pkg])."', ".PACKAGE_ENABLED.");";
|
| | | ".$app->db->quote($pkg_release).", '".$app->db->quote($pkg_url)."', ".PACKAGE_ENABLED.");";
|
| | |
|
| | | $app->db->datalogInsert('aps_packages', $insert_data, 'id');
|
| | | $app->db->datalogInsert('aps_packages', $insert_data, 'id');
|
| | | } else {
|
| | | if(file_exists($this->interface_pkg_dir.'/'.$pkg)) $this->removeDirectory($this->interface_pkg_dir.'/'.$pkg);
|
| | | }
|
| | | }
|
| | | }
|
| | | catch(Exception $e)
|
| | |
| | | return false;
|
| | | }
|
| | | }
|
| | | |
| | | /**
|
| | | * Add missing package URLs to database
|
| | | */
|
| | | public function fixURLs()
|
| | | {
|
| | | global $app;
|
| | | |
| | | try
|
| | | {
|
| | | // This method must be used in interface mode
|
| | | if(!$this->interface_mode) return false; |
| | | |
| | | $incomplete_pkgs = $app->db->queryAllRecords("SELECT * FROM aps_packages WHERE package_url = ''");
|
| | | if(is_array($incomplete_pkgs) && !empty($incomplete_pkgs)){
|
| | | foreach($incomplete_pkgs as $incomplete_pkg){
|
| | | $pkg_url = @file_get_contents($this->interface_pkg_dir.'/'.$incomplete_pkg['path'].'/PKG_URL');
|
| | | if($pkg_url != ''){
|
| | | $app->db->datalogUpdate('aps_packages', "package_url = '".$pkg_url."'", 'id', $incomplete_pkg['id']);
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | | catch(Exception $e)
|
| | | {
|
| | | $app->log($this->log_prefix.$e->getMessage(), LOGLEVEL_ERROR);
|
| | | $app->error($e->getMessage());
|
| | | return false;
|
| | | }
|
| | | }
|
| | | }
|
| | | ?> |
| | |
| | | $app->uses("getconf");
|
| | | $web_config = $app->getconf->get_server_config($app->functions->intval($websrv["server_id"]),'web');
|
| | |
|
| | | //* Set mysql mode to php-fcgi and enable suexec in website on apache servers
|
| | | //* Set PHP mode to php-fcgi and enable suexec in website on apache servers / set PHP mode to PHP-FPM on nginx servers
|
| | | if($web_config['server_type'] == 'apache') {
|
| | | if($websrv['php'] != 'fast-cgi' || $websrv['suexec'] != 'y') {
|
| | | if(($websrv['php'] != 'fast-cgi' || $websrv['suexec'] != 'y') && $websrv['php'] != 'php-fpm') {
|
| | | $app->db->datalogUpdate('web_domain', "php = 'fast-cgi', suexec = 'y'", 'domain_id', $websrv['domain_id']);
|
| | | }
|
| | | } else {
|
| | | // nginx
|
| | | if($websrv['php'] != 'php-fpm' && $websrv['php'] != 'fast-cgi') {
|
| | | $app->db->datalogUpdate('web_domain', "php = 'php-fpm'", 'domain_id', $websrv['domain_id']);
|
| | | }
|
| | | }
|
| | |
|
| | | |
| | | //* Create the MySQL database for the application
|
| | | $pkg = $app->db->queryOneRecord('SELECT * FROM aps_packages WHERE id = '.$app->db->quote($packageid).';');
|
| | | $metafile = $this->interface_pkg_dir.'/'.$pkg['path'].'/APP-META.xml';
|
| | |
| | | else $rec_string .= $recip; |
| | | } |
| | | $to = $this->_encodeHeader($rec_string, $this->mail_charset); |
| | | $result = mail($to, $subject, $this->body, implode($this->_crlf, $headers)); |
| | | //$result = mail($to, $subject, $this->body, implode($this->_crlf, $headers)); |
| | | $result = mail($to, $enc_subject, $this->body, implode($this->_crlf, $headers)); |
| | | } |
| | | |
| | | // Reset the subject in case mail is resent |
| | |
| | | die('Cached file for ' . $identifier_url . ' cannot be found.'); |
| | | } |
| | | |
| | | function fix_protocol($url, $http = 1) |
| | | public static function fix_protocol($url, $http = 1) |
| | | { |
| | | $url = SimplePie_Misc::normalize_url($url); |
| | | $parsed = SimplePie_Misc::parse_url($url); |
| | |
| | | } |
| | | } |
| | | |
| | | function parse_url($url) |
| | | public static function parse_url($url) |
| | | { |
| | | $iri = new SimplePie_IRI($url); |
| | | return array( |
| | |
| | | return $iri->get_iri(); |
| | | } |
| | | |
| | | function normalize_url($url) |
| | | public static function normalize_url($url) |
| | | { |
| | | $iri = new SimplePie_IRI($url); |
| | | return $iri->get_iri(); |
| | |
| | | return strtr($string, $convert_table); |
| | | } |
| | | |
| | | function change_encoding($data, $input, $output) |
| | | public static function change_encoding($data, $input, $output) |
| | | { |
| | | $input = SimplePie_Misc::encoding($input); |
| | | $output = SimplePie_Misc::encoding($output); |
| | |
| | | } |
| | | } |
| | | |
| | | function encoding($charset) |
| | | public static function encoding($charset) |
| | | { |
| | | // Normalization from UTS #22 |
| | | switch (strtolower(preg_replace('/(?:[^a-zA-Z0-9]+|([^0-9])0+)/', '\1', $charset))) |
| | |
| | | } |
| | | } |
| | | |
| | | function get_curl_version() |
| | | public static function get_curl_version() |
| | | { |
| | | if (is_array($curl = curl_version())) |
| | | { |
| | |
| | | * @param string $data XML data |
| | | * @return array Possible encodings |
| | | */ |
| | | function xml_encoding($data) |
| | | public static function xml_encoding($data) |
| | | { |
| | | // UTF-32 Big Endian BOM |
| | | if (substr($data, 0, 4) === "\x00\x00\xFE\xFF") |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Vytvoření uživatele pro adresáře chráněné heslem'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Aktualizace nastavení uživatele pro adresáře chráněné heslem'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Odstranění uživatele pro adresáře chráněné heslem'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | | |
| | |
| | | $wb['top_menu_billing'] = 'Fakturierung'; |
| | | $wb['top_menu_mailuser'] = 'E-Mail Benutzer'; |
| | | $wb['top_menu_domain'] = 'Domains'; |
| | | $wb['top_menu_dashboard'] = 'Home'; |
| | | $wb['top_menu_dashboard'] = 'Übersicht'; |
| | | $wb['latest_news_txt'] = 'Neuigkeiten'; |
| | | $wb['top_menu_vm'] = 'VServer'; |
| | | $wb['top_menu_vm'] = 'vServer'; |
| | | $wb['daynamesmin_su'] = 'So'; |
| | | $wb['daynamesmin_mo'] = 'Mo'; |
| | | $wb['daynamesmin_tu'] = 'Di'; |
| | |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Vorschläge'; |
| | | $wb['global_tabchange_warning_txt'] = 'Die Eingaben in diesem Tab werden gespeichert, wenn Sie OK klicken, bei Abbrechen werden die Änderungen verworfen.'; |
| | | $wb['global_tabchange_discard_txt'] = 'Achtung, Sie haben ungespeicherte Änderungen in diesem Tab. Wenn Sie fortfahren werden die Änderungen verworfen.'; |
| | | $wb['datalog_changes_txt'] = 'Folgende Änderungen wurden noch nicht auf alle Server übernommen:'; |
| | | $wb['datalog_changes_end_txt'] = 'Die Übernahme der Änderungen kann bis zu 1 Minute in Anspruch nehmen.'; |
| | | $wb['datalog_changes_txt'] = 'Folgende Änderungen wurden noch nicht auf alle Server übernommen:'; |
| | | $wb['datalog_changes_end_txt'] = 'Die Übernahme der Änderungen kann bis zu 1 Minute in Anspruch nehmen.'; |
| | | $wb['datalog_status_i_web_database'] = 'Neue Datenbank anlegen'; |
| | | $wb['datalog_status_u_web_database'] = 'Datenbank ändern'; |
| | | $wb['datalog_status_d_web_database'] = 'Datenbank löschen'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Datenbank-Benutzer für Datenbank anlegen'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Datenbank-Benutzer ändern'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Datenbank-Benutzer löschen'; |
| | | $wb['datalog_status_u_web_database'] = 'Datenbank ändern'; |
| | | $wb['datalog_status_d_web_database'] = 'Datenbank löschen'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Datenbank Benutzer für Datenbank anlegen'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Datenbank Benutzer ändern'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Datenbank Benutzer löschen'; |
| | | $wb['datalog_status_i_web_domain'] = 'Neue Webseite anlegen'; |
| | | $wb['datalog_status_u_web_domain'] = 'Webseiten-Einstellungen ändern'; |
| | | $wb['datalog_status_d_web_domain'] = 'Webseite löschen'; |
| | | $wb['datalog_status_i_ftp_user'] = 'FTP-Benutzer anlegen'; |
| | | $wb['datalog_status_u_ftp_user'] = 'FTP-Benutzer ändern'; |
| | | $wb['datalog_status_d_ftp_user'] = 'FTP-Benutzer löschen'; |
| | | $wb['datalog_status_u_web_domain'] = 'Webseiten Einstellungen ändern'; |
| | | $wb['datalog_status_d_web_domain'] = 'Webseite löschen'; |
| | | $wb['datalog_status_i_ftp_user'] = 'FTP Benutzer anlegen'; |
| | | $wb['datalog_status_u_ftp_user'] = 'FTP Benutzer ändern'; |
| | | $wb['datalog_status_d_ftp_user'] = 'FTP Benutzer löschen'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Neue E-Mail Domain anlegen'; |
| | | $wb['datalog_status_u_mail_domain'] = 'E-Mail Domain ändern'; |
| | | $wb['datalog_status_d_mail_domain'] = 'E-Mail Domain löschen'; |
| | | $wb['datalog_status_u_mail_domain'] = 'E-Mail Domain ändern'; |
| | | $wb['datalog_status_d_mail_domain'] = 'E-Mail Domain löschen'; |
| | | $wb['datalog_status_i_mail_user'] = 'Neues E-Mail Konto anlegen'; |
| | | $wb['datalog_status_u_mail_user'] = 'E-Mail Konto ändern'; |
| | | $wb['datalog_status_d_mail_user'] = 'E-Mail Konto löschen'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Spamfilter-Einstellungen anlegen'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Spamfilter-Einstellungen ändern'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Spamfilter-Einstellungen löschen'; |
| | | $wb['datalog_status_u_mail_user'] = 'E-Mail Konto ändern'; |
| | | $wb['datalog_status_d_mail_user'] = 'E-Mail Konto löschen'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Spamfilter Einstellungen anlegen'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Spamfilter Einstellungen ändern'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Spamfilter Einstellungen löschen'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Neue E-Mail Adresse anlegen'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'E-Mail Adresse ändern'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'E-Mail Adresse löschen'; |
| | | $wb['datalog_status_i_dns_rr'] = 'DNS Record anlegen'; |
| | | $wb['datalog_status_u_dns_rr'] = 'DNS Record ändern'; |
| | | $wb['datalog_status_d_dns_rr'] = 'DNS Record löschen'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'E-Mail Adresse ändern'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'E-Mail Adresse löschen'; |
| | | $wb['datalog_status_i_dns_rr'] = 'DNS Eintrag anlegen'; |
| | | $wb['datalog_status_u_dns_rr'] = 'DNS Eintrag ändern'; |
| | | $wb['datalog_status_d_dns_rr'] = 'DNS Eintrag löschen'; |
| | | $wb['datalog_status_i_dns_soa'] = 'DNS Zone anlegen'; |
| | | $wb['datalog_status_u_dns_soa'] = 'DNS Zone ändern'; |
| | | $wb['datalog_status_d_dns_soa'] = 'DNS Zone löschen'; |
| | | $wb['datalog_status_u_dns_soa'] = 'DNS Zone ändern'; |
| | | $wb['datalog_status_d_dns_soa'] = 'DNS Zone löschen'; |
| | | $wb['datalog_status_i_cron'] = 'Cronjob anlegen'; |
| | | $wb['datalog_status_u_cron'] = 'Cronjob ändern'; |
| | | $wb['datalog_status_d_cron'] = 'Cronjob löschen'; |
| | | $wb['datalog_status_i_mail_get'] = 'Mailabruf anlegen'; |
| | | $wb['datalog_status_u_mail_get'] = 'Mailabruf ändern'; |
| | | $wb['datalog_status_d_mail_get'] = 'Mailabruf löschen'; |
| | | $wb['datalog_status_u_cron'] = 'Cronjob ändern'; |
| | | $wb['datalog_status_d_cron'] = 'Cronjob löschen'; |
| | | $wb['datalog_status_i_mail_get'] = 'E-Mailabruf anlegen'; |
| | | $wb['datalog_status_u_mail_get'] = 'E-Mailabruf ändern'; |
| | | $wb['datalog_status_d_mail_get'] = 'E-Mailabruf löschen'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Mailingliste anlegen'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Mailingliste ändern'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Mailingliste löschen'; |
| | | $wb['datalog_status_i_shell_user'] = 'Shell User anlegen'; |
| | | $wb['datalog_status_u_shell_user'] = 'Shell User ändern'; |
| | | $wb['datalog_status_d_shell_user'] = 'Shell User löschen'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Mailingliste ändern'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Mailingliste löschen'; |
| | | $wb['datalog_status_i_shell_user'] = 'Shell Benutzer anlegen'; |
| | | $wb['datalog_status_u_shell_user'] = 'Shell Benutzer ändern'; |
| | | $wb['datalog_status_d_shell_user'] = 'Shell Benutzer löschen'; |
| | | $wb['datalog_status_i_web_folder'] = 'Verzeichnisschutz anlegen'; |
| | | $wb['datalog_status_u_web_folder'] = 'Verzeichnisschutz ändern'; |
| | | $wb['datalog_status_d_web_folder'] = 'Verzeichnisschutz löschen'; |
| | | $wb['datalog_status_u_web_folder'] = 'Verzeichnisschutz ändern'; |
| | | $wb['datalog_status_d_web_folder'] = 'Verzeichnisschutz löschen'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Verzeichnisschutz Benutzer anlegen'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Verzeichnisschutz Benutzer ändern'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Verzeichnisschutz Benutzer löschen'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Verzeichnisschutz Benutzer ändern'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Verzeichnisschutz Benutzer löschen'; |
| | | $wb['login_as_txt'] = 'Anmelden als'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['login_as_txt'] = 'Log in as'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | $wb['Do ISPConfig-Update'] = 'Aktualizovat ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
| | | |
| | |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Verze'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | | |
| | |
| | | $wb['tcp_ports_error_regex'] = 'Znak není povole v definici TCP portu. Povolené symboly jsou čísla, : a ,.'; |
| | | $wb['udp_ports_error_regex'] = 'Znak není povole v definici UDP portu. Povolené symboly jsou čísla, : a ,.'; |
| | | ?> |
| | | |
| | |
| | | $wb['udp_port_txt'] = 'Otevřené UDP porty'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Skupina'; |
| | | $wb['name_err'] = 'Skupina musí mít min. 1, max. 30 znaků.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat skupinu'; |
| | | $wb['warning_txt'] = '<b>VAROVÁNÍ:</b> Zde neupravujte uživatelská nastavení. Užijte klientská a distributorská nastavení v klientském modulu. Úprava uživatelý nebo skupin zde může způsobit ztrátu dat!'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['iptables_error_unique'] = 'Stejný záznam pro firewall je již na tomto serveru použit.'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['iptables_error_unique'] = 'Stejný záznam pro firewall je již na tomto serveru použit.'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Vytvořit novou jazykovou sadu souborů'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Sloučit / doplnit jazykový soubor'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Uložit'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Uložit vybranou jazykovou sadu do souboru'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | $wb['ignore_version_txt'] = 'Přeskočit kontrolu verze ISPConfigu.'; |
| | | ?> |
| | | |
| | |
| | | $wb['lang_file_txt'] = 'Jazykový soubor'; |
| | | $wb['lang_file_date_txt'] = 'Poslední úprava'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['repo_password_txt'] = 'Password (optional)'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | |
| | | $wb['ispconfig_update_title'] = 'ISPConfig pokyny k aktualizaci'; |
| | | $wb['ispconfig_update_text'] = 'Přihlaste se jako uživatel root na terminal (shell) serveru a proveďte příkaz<br /><br /> <strong>ispconfig_update.sh</strong><br /><br />spustí se ISPConfig aktualizace.<br /><br /><a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank>Klikněte zde pro podrobnější informace o provedení aktualizace</a>'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = 'Uživatel'; |
| | | ?> |
| | | |
| | |
| | | $wb['proxy_server_txt'] = 'Proxy-Server'; |
| | | $wb['firewall_server_txt'] = 'Firewall-Server'; |
| | | ?> |
| | | |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Při překročení limitu přenesených dat, poslat oznámení adminovi'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Při překročení limitu přenesených dat, poslat oznámení klientovi'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | $wb['php_ini_check_minutes_txt'] = 'Check system php.ini files for changes each'; |
| | | $wb['php_ini_check_minutes_info_txt'] = 'minutes (0 disables checking)'; |
| | | $wb['php_ini_check_minutes_error_empty'] = 'Invalid value for php.ini checking.'; |
| | | $wb['sendmail_path_txt'] = 'Sendmail Path'; |
| | | $wb['sendmail_path_error_empty'] = 'Sendmail Path is empty.'; |
| | | ?> |
| | | |
| | |
| | | $wb['list_head_txt'] = 'Konfigurace serveru'; |
| | | $wb['server_name_txt'] = 'Server'; |
| | | ?> |
| | | |
| | |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $wb['error_port_syntax'] = 'Invalid chars in port field, please enter only comma separated numbers. Example: 80,443'; |
| | | ?> |
| | | |
| | |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $wb['ip_type_txt'] = 'Verze'; |
| | | ?> |
| | | |
| | |
| | | $wb['proxy_server_txt'] = 'Proxy'; |
| | | $wb['firewall_server_txt'] = 'Firewall'; |
| | | ?> |
| | | |
| | |
| | | $wb['php_fpm_ini_dir_txt'] = 'Cesta k php.ini adresáři'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Cesta k PHP-FPM pool adresáři'; |
| | | ?> |
| | | |
| | |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['name_txt'] = 'Verze PHP'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Start Installation'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | |
| | | $wb['repoupdate_txt'] = 'Aktualizace seznamu balíků'; |
| | | $wb['package_id_txt'] = 'místní App-ID'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Heslo (volitelné)'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_name_txt'] = 'Repozitář'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?> |
| | | |
| | |
| | | $wb['version_txt'] = 'Verze'; |
| | | $wb['action_txt'] = 'Akce'; |
| | | ?> |
| | | |
| | |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show Mail Filter tab in Mailbox detail'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show Custom Rules tab in Mailbox detail'; |
| | | ?> |
| | | |
| | |
| | | $wb['php_fpm_ini_dir_txt'] = 'Cesta k php.ini adresáři'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Cesta k PHP-FPM pool adresáři'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['username_error_collision'] = 'Uživatelské jméno nesmí být web nebo web a číslo.\\"'; |
| | | ?> |
| | | |
| | |
| | | $wb['warning_txt'] = '<b>VAROVÁNÍ:</b> Zde neupravujte uživatelská nastavení. Užijte klientská a distributorská nastavení v klientském modulu. Úprava uživatelů nebo skupin zde může způsobit ztrátu dat!'; |
| | | $wb['groups_txt'] = 'Skupiny'; |
| | | ?> |
| | | |
| | |
| | | $wb['Sync. Now'] = 'Jetzt synchronisieren'; |
| | | $wb['DB Sync.'] = 'Datenbank Synchronisation'; |
| | | $wb['User Management'] = 'Benutzerverwaltung'; |
| | | $wb['CP Users'] = 'CP Benutzer'; |
| | | $wb['Remote Users'] = 'Remote Benutzer'; |
| | | $wb['CP Users'] = 'ISPConfig Benutzer'; |
| | | $wb['Remote Users'] = 'Entfernte Benutzer'; |
| | | $wb['System'] = 'System'; |
| | | $wb['Server Services'] = 'Server Dienste'; |
| | | $wb['Services'] = 'Dienste'; |
| | |
| | | $wb['Additional PHP Versions'] = 'Zusätzliche PHP Versionen'; |
| | | $wb['Directive Snippets'] = 'Direktiven Schnipsel'; |
| | | $wb['Firewall'] = 'Firewall'; |
| | | $wb['Interface'] = 'Benutzeroberfläche'; |
| | | $wb['Interface'] = 'Systemkonfiguration'; |
| | | $wb['Interface Config'] = 'Einstellungen'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['Misc'] = 'Diverses'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Direcktiven Schnipsel'; |
| | | $wb['list_head_txt'] = 'Direktiven Schnipsel'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['name_txt'] = 'Name des Schnipsels'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['add_new_record_txt'] = 'Direcktiven Schnipsel hinzufügen'; |
| | | $wb['add_new_record_txt'] = 'Direktiven Schnipsel hinzufügen'; |
| | | ?> |
| | |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['tcp_port_txt'] = 'Offene TCP Ports'; |
| | | $wb['udp_port_txt'] = 'Offene UD Ports'; |
| | | $wb['udp_port_txt'] = 'Offene UDP Ports'; |
| | | $wb['add_new_record_txt'] = 'Firewalleintrag hinzufügen'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['login_1_txt'] = 'Wollen Sie sich anmelden als Benutzer'; |
| | | $wb['login_2_txt'] = 'Wählen Sie Ja um zum Benutzerkonto zu gelangen oder Nein um zurückzukehren.'; |
| | | $wb['btn_yes_txt'] = 'Ja, anmelden als Benutzer'; |
| | | $wb['btn_back_txt'] = 'Nein, zurück zur Liste'; |
| | | $wb['udp_port_help_txt'] = 'Getrennt durch Komma'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['firewall_error_unique'] = 'Es gibt bereits einen Firewalleintrag für diesen Server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Es sind nur Zahlen in der TCP Port Definition erlaubt. '; |
| | | $wb['udp_ports_error_regex'] = 'Es sind nur Zahlen in der UDP Port Definition erlaubt., '; |
| | | ?> |
| | |
| | | $wb['action_scheduled'] = 'Die Aktion wurde zur Ausführung vorgemerkt'; |
| | | $wb['select_all_server'] = 'Alle Server'; |
| | | $wb['ispconfig_update_title'] = 'ISPConfig 3 Update Anweisungen'; |
| | | $wb['ispconfig_update_text'] = 'Login as root user on the shell of your server and execute the command<br /><br /> <strong>ispconfig_update.sh</strong><br /><br />to start the ISPConfig update.<br /><br /><a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank>Click here for detailed update instructins</a>'; |
| | | $wb['ispconfig_update_text'] = 'Melden Sie sich auf Ihrem Server als root an und führen Sie folgendes Kommando auf der Shell aus<br /><br /> <strong>ispconfig_update.sh</strong><br /><br />um das ISPConfig Update zu starten.<br /><br /><a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank>Klicken Sie hier um eine detailierte Beschreibung zu erhalten</a>'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Remote Benutzer'; |
| | | $wb['list_desc_txt'] = 'Remote Benutzer hinzufügen'; |
| | | $wb['list_head_txt'] = 'Entfernter Benutzer'; |
| | | $wb['list_desc_txt'] = 'Entfernten Benutzer hinzufügen'; |
| | | $wb['add_new_record_txt'] = 'Neuen Benutzer hinzufügen'; |
| | | $wb['parent_remote_userid_txt'] = 'Benutzer ID'; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | |
| | | <?php |
| | | $wb['config_txt'] = 'Konfiguration'; |
| | | $wb['server_name_txt'] = 'Servername'; |
| | | $wb['mail_server_txt'] = 'Mailserver'; |
| | | $wb['mail_server_txt'] = 'E-Mailserver'; |
| | | $wb['web_server_txt'] = 'Webserver'; |
| | | $wb['dns_server_txt'] = 'DNS Server'; |
| | | $wb['dns_server_txt'] = 'DNSserver'; |
| | | $wb['file_server_txt'] = 'Dateiserver'; |
| | | $wb['db_server_txt'] = 'Datenbankserver'; |
| | | $wb['vserver_server_txt'] = 'VServer Server'; |
| | | $wb['vserver_server_txt'] = 'vServer'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['mirror_server_id_txt'] = 'Ist Mirror von Server'; |
| | | $wb['- None -'] = '- Nichts -'; |
| | | $wb['- None -'] = '- Nichts ausgewählt -'; |
| | | $wb['proxy_server_txt'] = 'Proxy Server'; |
| | | $wb['firewall_server_txt'] = 'Firewall Server'; |
| | | ?> |
| | |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost Benutzer'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Passwort'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailboxgrößen Limit'; |
| | | $wb['message_size_limit_txt'] = 'Nachrichtengrößen Limit'; |
| | | $wb['mailbox_size_limit_txt'] = 'E-Mailkonto Beschränkung'; |
| | | $wb['message_size_limit_txt'] = 'E-Mailgrößen Beschränkung'; |
| | | $wb['ip_address_txt'] = 'IP Adresse'; |
| | | $wb['netmask_txt'] = 'Netzmaske'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND Zonefiles Verzeichnis ist leer.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf Pfad ist leer.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local Pfad ist leer.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['mail_filter_syntax_txt'] = 'E-Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Dämon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir ist leer.'; |
| | |
| | | $wb['CA_path_txt'] = 'CA Pfad'; |
| | | $wb['CA_pass_txt'] = 'CA Passwort'; |
| | | $wb['ufw_enable_txt'] = 'Aktivieren'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Verwalte Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Aktiviere IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | |
| | | $wb['network_config_warning_txt'] = 'Die Netzwerk Konfiguration Option ist nur auf Debian- und Ubuntu Servern verfügbar. Aktivieren Sie diese Option nicht, falls Ihr Netzwerk Interface nicht eth0 heißt.'; |
| | | $wb['server_type_txt'] = 'Server Typ'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx vHost Konfigurations Verzeichnis'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx vHost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx Benutzer'; |
| | | $wb['nginx_group_txt'] = 'Nginx Gruppe'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit Chroot Anwendungsbereiche ist leer.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit Chrooted Anwendungen ist leer.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit Cron Chrooted Anwendungen ist leer.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config Verzeichnis ist leer.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init Script Name ist leer.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Konfigurationsverzeichnis ist leer.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron Startscript Name ist leer.'; |
| | | $wb['crontab_dir_error_empty'] = 'Pfad für individuelle Crontabs ist leer.'; |
| | | $wb['cron_wget_error_empty'] = 'Pfad zum wget Programm ist leer.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM Init Script'; |
| | |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Deaktiviere HTTPD Monitoring'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Deaktiviere MySQL Monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Deaktiviere E-Mail Monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> Falls Sie MySQL stoppen möchten, wählen Sie die '; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> Falls Sie MySQL stoppen möchten, wählen Sie die Funktion \'Deaktiviere MySQL Monitoring\' und warten Sie 2 bis 3 Minuten. Wenn Sie nicht 2 bis 3 Miunten warten wird ISPConfig versuchen MySQL wieder zu starten.'; |
| | | $wb['enable_sni_txt'] = 'Aktiviere SNI'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Verzeichnisberechtigungen beim Update setzen'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Webbenutzer zur -sshusers- hinzufügen'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Linux Userid mit webid verknüpfen'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID für userid/webid Verknüpfung'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Realtime Blackhole Liste'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(RBL\'s mit Kommas trennen)'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Mehrere Realtime Blackhole Listen mit Kommas trennen)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Einstellungen'; |
| | | $wb['permissions_txt'] = 'Berechtigungen'; |
| | | $wb['php_settings_txt'] = 'PHP Einstellungen'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps vHost Einstellungen'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Einstellungen'; |
| | | $wb['backup_mode_txt'] = 'Backupmodus'; |
| | | $wb['backup_mode_userzip'] = 'Backup Dateien gehören dem Web Benutzer (ZIP-Datei)'; |
| | | $wb['backup_mode_userzip'] = 'Backup Dateien gehören dem Web Benutzer (.zip Datei)'; |
| | | $wb['backup_mode_rootgz'] = 'Backup aller Dateien des Webverzeichnisses als Root Benutzer'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailboxbeschränkung Statistiken'; |
| | | $wb['mailbox_quota_stats_txt'] = 'E-Mailkonto Beschränkung Statistiken'; |
| | | $wb['enable_ip_wildcard_txt'] = 'IP Adressen Wildcard (*) aktivieren'; |
| | | $wb['web_folder_protection_txt'] = 'Webverzeichnis unveränderlich machen (erweiterte Attribute)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Überschreiten des Transfer Limits an den Administrator senden'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Server'; |
| | | $wb['server_name_txt'] = 'Name'; |
| | | $wb['mail_server_txt'] = 'Mail'; |
| | | $wb['web_server_txt'] = 'Web'; |
| | | $wb['dns_server_txt'] = 'DNS'; |
| | | $wb['file_server_txt'] = 'Datei'; |
| | | $wb['db_server_txt'] = 'DB'; |
| | | $wb['vserver_server_txt'] = 'VServer'; |
| | | $wb['server_name_txt'] = 'Servername'; |
| | | $wb['mail_server_txt'] = 'E-Mailserver'; |
| | | $wb['web_server_txt'] = 'Webserver'; |
| | | $wb['dns_server_txt'] = 'DNSserver'; |
| | | $wb['file_server_txt'] = 'Dateiserver'; |
| | | $wb['db_server_txt'] = 'Datenbankserver'; |
| | | $wb['vserver_server_txt'] = 'vServer'; |
| | | $wb['add_new_record_txt'] = 'Neuen Server hinzufügen'; |
| | | $wb['proxy_server_txt'] = 'Proxy'; |
| | | $wb['firewall_server_txt'] = 'Firewall'; |
| | | $wb['proxy_server_txt'] = 'Proxyserver'; |
| | | $wb['firewall_server_txt'] = 'Firewallserver'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['system_config_desc_txt'] = 'Systemkonfiguration'; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Bitte geben Sie die Administrator E-Mail und den Namen ein, wenn Sie SMTP Versand nutzen wollen.'; |
| | | $wb['warning'] = 'Bearbeiten Sie diese Werte sorgfältig! Entfernen Sie die Prefixe nicht auf Systemen mit mehr als einem Client.'; |
| | | $wb['tab_change_warning_txt'] = 'Tab Wechsel Warnung'; |
| | | $wb['tab_change_discard_txt'] = 'Verwerfe Änderungen bei Tab Wechsel'; |
| | | $wb['tab_change_warning_note_txt'] = 'Zeigt eine Warnung an, wenn der Tab in einem Formular gewechselt wird und Daten geändert wurden.'; |
| | | $wb['warning'] = 'Bearbeiten Sie diese Werte sorgfältig! Entfernen Sie die Präfixe nicht auf Systemen mit mehr als einem Kunden.'; |
| | | $wb['tab_change_warning_txt'] = 'Reiter Wechsel Warnung'; |
| | | $wb['tab_change_discard_txt'] = 'Verwerfe Änderungen bei Reiter Wechsel'; |
| | | $wb['tab_change_warning_note_txt'] = 'Zeigt eine Warnung an, wenn der Reiter in einem Formular gewechselt wird und Daten geändert wurden.'; |
| | | $wb['dbname_prefix_txt'] = 'Datenbank Namen Präfix'; |
| | | $wb['dbuser_prefix_txt'] = 'Datenbank Benutzer Präfix'; |
| | | $wb['shelluser_prefix_txt'] = 'Shell Benutzer Präfix'; |
| | |
| | | $wb['monitor_key_txt'] = 'ISPConfig Monitor App Passwort'; |
| | | $wb['admin_name_txt'] = 'Name des Administrators'; |
| | | $wb['maintenance_mode_txt'] = 'Wartungsmodus'; |
| | | $wb['smtp_enabled_txt'] = 'SMTP zum System Mailversand nutzen'; |
| | | $wb['smtp_enabled_txt'] = 'SMTP zum System E-Mailversand nutzen'; |
| | | $wb['smtp_host_txt'] = 'SMTP Server'; |
| | | $wb['smtp_port_txt'] = 'SMTP Port'; |
| | | $wb['smtp_user_txt'] = 'SMTP Benutzer'; |
| | | $wb['smtp_pass_txt'] = 'SMTP Passwort'; |
| | | $wb['smtp_crypt_txt'] = 'SSL/TLS verschlüsselte Verbindung für SMTP'; |
| | | $wb['use_combobox_txt'] = 'jQuery UI Combobox benutzen'; |
| | | $wb['use_loadindicator_txt'] = 'Laden-Grafik anzeigen'; |
| | | $wb['f5_to_reload_js_txt'] = 'Wenn Sie den Wert ändern, müssen Sie F5 drücken, damit der Browser die JavaScript-Libraries neu lädt, oder Ihren Browser-Cache leeren.'; |
| | | $wb['use_loadindicator_txt'] = 'Laden Grafik anzeigen'; |
| | | $wb['f5_to_reload_js_txt'] = 'Wenn Sie den Wert ändern, müssen Sie F5 drücken, damit der Browser die JavaScript Bibliotheken neu lädt, oder Ihren Browser Cache leeren.'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Falsche phpMyAdmin URL'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Deaktiviere die Kunden Benutzername Überprüfung für den Begriff <b>web<b>.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Deaktiviere die Kunden Benutzernamen Überprüfung für den Begriff <b>web<b>.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Zeige Autoresponder Reiter in E-Mail Kontodetails'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Zeige E-Mail Filter Reiter in E-Mail Kontodetails'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Zeige Benutzerregel Reiter in E-Mail Kontodetails'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["login_1_txt"] = 'Do you want to login as user'; |
| | | $wb["login_2_txt"] = 'If you do so, you can "go back" by clicking at logout.'; |
| | | $wb["btn_yes_txt"] = 'Yes, login as Client'; |
| | | $wb["btn_back_txt"] = 'No, back to list'; |
| | | $wb["udp_port_help_txt"] = 'Separated by comma'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["firewall_error_unique"] = 'There is already a firewall record for this server.'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["tcp_ports_error_regex"] = 'Character not allowed in tcp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | $wb["udp_ports_error_regex"] = 'Character not allowed in udp port definition. Allowed characters are numbers, ":" and ",".'; |
| | | ?> |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | ?> |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | ?> |
| | |
| | | <table class="list"> |
| | | <thead> |
| | | <tr class="caption"> |
| | | <th class="tbl_col_client_pid" scope="col"><tmpl_var name="client_id_txt"></th> |
| | | <th class="tbl_col_client_id" scope="col"><tmpl_var name="client_id_txt"></th> |
| | | <th class="tbl_col_active" scope="col"><tmpl_var name="active_txt"></th> |
| | | <th class="tbl_col_username" scope="col"><tmpl_var name="username_txt"></th> |
| | | <th class="tbl_col_groups" scope="col"><tmpl_var name="groups_txt"></th> |
| | | <th class="tbl_col_limit" scope="col">{tmpl_var name='search_limit'}</th> |
| | | </tr> |
| | | <tr class="filter"> |
| | | <td class="tbl_col_client_pid"><input type="text" name="search_client_id" value="{tmpl_var name='search_client_id'}" /></td> |
| | | <td class="tbl_col_client_id"><input type="text" name="search_client_id" value="{tmpl_var name='search_client_id'}" /></td> |
| | | <td class="tbl_col_active"><select name="search_active">{tmpl_var name='search_active'}</select></td> |
| | | <td class="tbl_col_username"><input type="text" name="search_username" value="{tmpl_var name='search_username'}" /></td> |
| | | <td class="tbl_col_groups"><select name="search_groups">{tmpl_var name='search_groups'}</select></td> |
| | |
| | | <tbody> |
| | | <tmpl_loop name="records"> |
| | | <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> |
| | | <td class="tbl_col_client_pid"><a href="#" onclick="loadContent('admin/users_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="client_id"}</a></td> |
| | | <td class="tbl_col_client_id"><a href="#" onclick="loadContent('admin/users_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="client_id"}</a></td> |
| | | <td class="tbl_col_active"><a href="#" onclick="loadContent('admin/users_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="active"}</a></td> |
| | | <td class="tbl_col_username"><div class="icons16 group-{tmpl_var name="typ"}" title="{tmpl_var name="typ"}"><span>{tmpl_var name="typ"}</span></div> <div class="group-icon"><a href="#" onclick="loadContent('admin/users_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="username"}</a></div></td> |
| | | <td class="tbl_col_groups">{tmpl_var name="groups"}</td> |
| | |
| | | ), |
| | | 'value' => array(0 => ' ') |
| | | ), |
| | | 'limit_aps' => array ( |
| | | 'datatype' => 'INTEGER', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'ISINT', |
| | | 'errmsg'=> 'limit_aps_error_notint'), |
| | | ), |
| | | 'default' => '-1', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '10', |
| | | 'maxlength' => '10', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | ################################## |
| | | # END Datatable fields |
| | | ################################## |
| | |
| | | ), |
| | | 'value' => array(0 => ' ') |
| | | ), |
| | | 'limit_aps' => array ( |
| | | 'datatype' => 'INTEGER', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'ISINT', |
| | | 'errmsg'=> 'limit_aps_error_notint'), |
| | | ), |
| | | 'default' => '-1', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '10', |
| | | 'maxlength' => '10', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | ################################## |
| | | # END Datatable fields |
| | | ################################## |
| | |
| | | ), |
| | | 'value' => array(0 => ' ') |
| | | ), |
| | | 'limit_aps' => array ( |
| | | 'datatype' => 'INTEGER', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'ISINT', |
| | | 'errmsg'=> 'limit_aps_error_notint'), |
| | | ), |
| | | 'default' => '-1', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '10', |
| | | 'maxlength' => '10', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | ################################## |
| | | # END Datatable fields |
| | | ################################## |
| | |
| | | $wb['error_client_can_not_add_domain'] = 'Nemůžete přidat novou doménu'; |
| | | $wb['error_client_group_id_empty'] = 'Musíte vybrat zákazníka<br>'; |
| | | ?> |
| | | |
| | |
| | | $wb['paypal_email_txt'] = 'PayPal e-mail'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \\"custom\\" is selected.'; |
| | | ?> |
| | | |
| | |
| | | $wb['description_txt'] = 'Popis'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Smazat klienta'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit bez smazání klienta'; |
| | | ?> |
| | | |
| | |
| | | $wb['all_clients_txt'] = 'Všichni klienti'; |
| | | $wb['variables_txt'] = 'Výběr (možnosti):'; |
| | | ?> |
| | | |
| | |
| | | $wb['dns_limits_txt'] = 'DNS limity'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualizace limity'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_type_txt'] = 'Typ'; |
| | | $wb['template_name_txt'] = 'Název šablony'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'This domain-name is not allowed'; |
| | | $wb['Domain'] = 'Doména'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['user_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | | |
| | |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | ?> |
| | | |
| | |
| | | $wb['Add Client'] = 'Kunde hinzufügen'; |
| | | $wb['Edit Client'] = 'Kunde bearbeiten'; |
| | | $wb['Clients'] = 'Kunden'; |
| | | $wb['Edit Client-Templates'] = 'Kundenvorlagen bearbeiten'; |
| | | $wb['Edit Client-Templates'] = 'Kundenvorlagen'; |
| | | $wb['Add Reseller'] = 'Reseller hinzufügen'; |
| | | $wb['Edit Reseller'] = 'Reseller bearbeiten'; |
| | | $wb['Resellers'] = 'Reseller'; |
| | |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['error_domain_in mailuse'] = 'Diese Domain kann nicht gelöscht werden, weil sie als Maildomain verwendet wird'; |
| | | $wb['error_domain_in mailuse'] = 'Diese Domain kann nicht gelöscht werden, weil sie als E-Mail Domain verwendet wird'; |
| | | $wb['error_domain_in webuse'] = 'Diese Domain kann nicht gelöscht werden, weil sie als Webdomain verwendet wird'; |
| | | $wb['error_client_can_not_add_domain'] = 'Sie können keine neue Domain anlegen'; |
| | | $wb['error_client_group_id_empty'] = 'Sie müssen ein Benutzerdefiniertes auswählen<br>'; |
| | |
| | | <?php |
| | | $wb['limit_maildomain_txt'] = 'Max. Anzahl an E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an Mailboxen'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliases'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an E-Mail Konten'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliase'; |
| | | $wb['limit_mailforward_txt'] = 'Max. Anzahl an E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. Anzahl an E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. Anzahl an E-Mail Routen'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. Anzahl an E-Mail Filter'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. Anzahl an Fetchmail Konten'; |
| | | $wb['limit_mailquota_txt'] = 'Mailboxbeschränkung'; |
| | | $wb['limit_mailquota_txt'] = 'E-Mail Konto Beschränkung'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. Anzahl an Spamfilter (White-/Blacklist)'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. Anzahl an Spamfilter Benutzern'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. Anzahl an Spamfilter Richtlinien'; |
| | |
| | | $wb['username_error_empty'] = 'Benutzername ist leer.'; |
| | | $wb['username_error_unique'] = 'Der Benutzername muss einzigartig sein.'; |
| | | $wb['limit_maildomain_error_notint'] = 'Das E-Mail Domain Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Das Mailbox Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Das E-Mail Konto Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Das E-Mail Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Das E-Mail Weiterleitung Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Das E-Mail Catchall Limit muss eine Zahl sein.'; |
| | |
| | | $wb['username_error_regex'] = 'Der Benutzername enthält ungültige Zeichen.'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['template_master_txt'] = 'Mastervorlage'; |
| | | $wb['template_additional_txt'] = 'Add-Ons'; |
| | | $wb['active_template_additional_txt'] = 'Aktive Add-Ons'; |
| | | $wb['template_additional_txt'] = 'Erweiterte Vorlage'; |
| | | $wb['active_template_additional_txt'] = 'Aktive erweiterte Vorlage'; |
| | | $wb['add_additional_template_txt'] = 'Zusätzliches Template hinzufügen'; |
| | | $wb['delete_additional_template_txt'] = 'Zusätzliches Template löschen'; |
| | | $wb['ssh_chroot_txt'] = 'SSH Chroot Optionen'; |
| | |
| | | $wb['limit_web_quota_txt'] = 'Webbeschränkung'; |
| | | $wb['limit_traffic_quota_txt'] = 'Trafficbeschränkung'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Trafficbeschränkung muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Secondary DNS Zonen'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Zweiter DNS Zonen'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. Anzahl an WebDAV Benutzern'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Das WebDAV Benutzer-Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Secondary DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Das WebDAV Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Zweiter DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['customer_no_txt'] = 'Kundennummer'; |
| | | $wb['vat_id_txt'] = 'USt-ID'; |
| | | $wb['required_fields_txt'] = '* Benötigte Felder'; |
| | |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | $wb['customer_no_error_unique'] = 'Die Kundennummer muß einzigartig sein (oder leer).'; |
| | | $wb['email_error_isemail'] = 'Bitte geben Sie eine gültige Email-Adresse an.'; |
| | | $wb['paypal_email_error_isemail'] = 'Bitte geben Sie eine gültige PayPal-E-Mail-Adresse an.'; |
| | | $wb['paypal_email_txt'] = 'PayPal-E-Mail'; |
| | | $wb['err_msg_master_tpl_set'] = 'Die hier eingestellten Werte werden ignoriert, wenn als Mastervorlage nicht \\"Custom\\" gewählt ist.'; |
| | | $wb['email_error_isemail'] = 'Bitte geben Sie eine gültige E-Mail Adresse an.'; |
| | | $wb['paypal_email_error_isemail'] = 'Bitte geben Sie eine gültige PayPal E-Mail Adresse an.'; |
| | | $wb['paypal_email_txt'] = 'PayPal E-Mail'; |
| | | $wb['err_msg_master_tpl_set'] = 'Die hier eingestellten Werte werden ignoriert, wenn als Mastervorlage nicht \'Custon\' ausgewählt ist!'; |
| | | $wb['aps_limits_txt'] = 'APS Installationsassistent Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. Anzahl an APS-Instanzen'; |
| | | $wb['limit_aps_error_notint'] = 'Das APS Instanzen Limit muss eine Zahl sein.'; |
| | | ?> |
| | |
| | | $wb['Client Circle'] = 'Kundenkreis'; |
| | | $wb['Circle'] = 'Kreis'; |
| | | $wb['circle_txt'] = 'Kreis'; |
| | | $wb['circle_name_txt'] = 'Kreisname'; |
| | | $wb['circle_name_txt'] = 'Kundenkreisname'; |
| | | $wb['client_ids_txt'] = 'Kunden/Reseller'; |
| | | $wb['description_txt'] = 'Beschreibung'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Kundenkreise'; |
| | | $wb['circle_id_txt'] = 'Kreis ID'; |
| | | $wb['circle_name_txt'] = 'Kreisname'; |
| | | $wb['circle_id_txt'] = 'Kundenkreis ID'; |
| | | $wb['circle_name_txt'] = 'Kundenkreisname'; |
| | | $wb['description_txt'] = 'Beschreibung'; |
| | | $wb['add_new_record_txt'] = 'Kreis hinzufügen'; |
| | | $wb['add_new_record_txt'] = 'Kundenkreis hinzufügen'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Löschen'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | |
| | | $wb['limit_client_error_notint'] = 'Das Subkunden Limit muss eine Zahl sein.'; |
| | | $wb['limit_maildomain_txt'] = 'Max. Anzahl an E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an E-Mail Konten'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliassen'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliasse'; |
| | | $wb['limit_mailforward_txt'] = 'Max. Anzahl an E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. Anzahl an E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. Anzahl E-Mail Routen'; |
| | |
| | | $wb['limit_cron_error_notint'] = 'Das Cronjob Limit muss eine Zahl sein.'; |
| | | $wb['limit_cron_error_frequency'] = 'Das Cronjob Intervall Limit muss eine Zahl sein.'; |
| | | $wb['error_template_name_empty'] = 'Bitte geben Sie einen Vorlagenamen ein'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. Anzahl an Domain Aliase'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. Anzahl an E-Mail Domain Aliase'; |
| | | $wb['limit_mailaliasdomain_error_notint'] = 'Das E-Mail Domain Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_quota_txt'] = 'Speicherplatzbeschränkung'; |
| | | $wb['limit_traffic_quota_txt'] = 'Transfervolumenbeschränkung'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Transfervolumenbeschränkung muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Secondary DNS Zonen'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Zweiter DNS Zonen'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. Anzahl an WebDAV Benutzern'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Das WebDAV Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Secondary DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Zweiter DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_record_error_notint'] = 'Das DNS Eintrag Limit muss eine Zahl sein.'; |
| | | $wb['template_del_aborted_txt'] = 'Löschung abgebrochen. Ein Kunde hat das Template noch ausgewählt.'; |
| | | $wb['template_del_aborted_txt'] = 'Löschung abgebrochen. Ein Kunde hat die Vorlage noch ausgewählt.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. Anzahl an Mailinglisten'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'Das Mailinglisten Limit muss eine Zahl sein.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. Anzahl an virtuellen Servern'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Template für virtuelle Server erzwingen'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Vorlage für virtuelle Server erzwingen'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Das Limit virtueller Server muss eine Zahl sein.'; |
| | | $wb['ssh_chroot_txt'] = 'SSH Chroot Optionen'; |
| | | $wb['web_php_options_txt'] = 'PHP Optionen'; |
| | |
| | | $wb['limit_hterror_txt'] = 'Eigene Fehlerseiten verfügbar'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard Subdomain verfügbar'; |
| | | $wb['limit_ssl_txt'] = 'SSL verfügbar'; |
| | | $wb['template_type_txt'] = 'Template Typ'; |
| | | $wb['template_name_txt'] = 'Template Name'; |
| | | $wb['template_type_txt'] = 'Vorlagen Typ'; |
| | | $wb['template_name_txt'] = 'Vorlagen Name'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | | $wb['email_limits_txt'] = 'E-Mail Limits'; |
| | | $wb['database_limits_txt'] = 'Datenbank Limits'; |
| | | $wb['cron_job_limits_txt'] = 'Cronjob Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualisierungs Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installationsassistent Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. Anzahl an APS-Instanzen'; |
| | | $wb['limit_aps_error_notint'] = 'Das APS Instanzen Limit muss eine Zahl sein.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['limit_maildomain_txt'] = 'Max. Anzahl an E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an Mailboxen'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliases'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an E-Mail Konten'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliasse'; |
| | | $wb['limit_mailforward_txt'] = 'Max. Anzahl an E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. Anzahl an E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. Anzahl an E-Mail Routen'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. Anzahl an E-Mail Filtern'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. Anzahl an Fetchmail Konten'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox Beschränkung'; |
| | | $wb['limit_mailquota_txt'] = 'E-Mail konten Beschränkung'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. Anzahl an White-/Blacklist Filter'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. Anzahl an Spamfilter Benutzern'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. Anzahl an Spamfilter Richtlinien'; |
| | |
| | | $wb['limit_client_txt'] = 'Max. Anzahl an Kunden'; |
| | | $wb['username_error_empty'] = 'Benutzername ist leer.'; |
| | | $wb['username_error_unique'] = 'Der Benutzername muss einzigartig sein.'; |
| | | $wb['limit_maildomain_error_notint'] = 'Das E-Mail Domain Limit muss eine Nummer sein.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Das Mailbox Limit muss eine Nummer sein.'; |
| | | $wb['limit_maildomain_error_notint'] = 'Das E-Mail Domain Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Das E-Mail Konto Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Das E-Mail Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Das E-Mail Weiterleitungs Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Das E-Mail Catchall Limit muss eine Zahl sein.'; |
| | |
| | | $wb['limit_cron_error_frequency'] = 'Das Cronjob Intervall Limit muss eine Zahl sein.'; |
| | | $wb['username_error_regex'] = 'Der Benutzername enthält ungültige Zeichen.'; |
| | | $wb['template_master_txt'] = 'Mastervorlage'; |
| | | $wb['template_additional_txt'] = 'Add-Ons'; |
| | | $wb['add_additional_template_txt'] = 'Zusätzliches Template hinzufügen'; |
| | | $wb['delete_additional_template_txt'] = 'Zusätzliches Template löschen'; |
| | | $wb['template_additional_txt'] = 'Erweiterte Vorlage'; |
| | | $wb['add_additional_template_txt'] = 'Zusätzliche Vorlage hinzufügen'; |
| | | $wb['delete_additional_template_txt'] = 'Zusätzliche Vorlage löschen'; |
| | | $wb['ssh_chroot_txt'] = 'SSH Chroot Optionen'; |
| | | $wb['web_php_options_txt'] = 'PHP Optionen'; |
| | | $wb['limit_cgi_txt'] = 'CGI verfügbar'; |
| | |
| | | $wb['limit_web_quota_txt'] = 'Speicherplatzbeschränkung'; |
| | | $wb['limit_traffic_quota_txt'] = 'Transfervolumenbeschränkung'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Transfervolumenbeschränkung muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Secondary DNS Zonen'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Secondary DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Zweiter DNS Zonen'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Zweiter DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_record_error_notint'] = 'Das DNS Eintrag Limit muss eine Zahl sein.'; |
| | | $wb['customer_no_txt'] = 'Kundennummer'; |
| | | $wb['vat_id_txt'] = 'USt-ID'; |
| | |
| | | $wb['limit_webdav_user_txt'] = 'Max. Anzahl an WebDAV Benutzern'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Das WebDAV Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. Anzahl an Mailinglisten'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. Anzahl an E-Mail Domainaliases'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. Anzahl an E-Mail Domain Aliasse'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'Das Mailinglisten Limit muss eine Zahl sein.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. Anzahl an virtuellen Servern'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Template für virtuelle Server erzwingen'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Vorlage für virtuelle Server erzwingen'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Das Limit virtueller Server muss eine Zahl sein.'; |
| | | $wb['web_php_options_notempty'] = 'Keine PHP Option ausgewählt. Wähle mindestens eine PHP Option.'; |
| | | $wb['ssh_chroot_notempty'] = 'Keine SSH Chroot-Option ausgewählt. Wähle mindestens eine SSH Option.'; |
| | | $wb['ssh_chroot_notempty'] = 'Keine SSH Chroot Option ausgewählt. Wähle mindestens eine SSH Option.'; |
| | | $wb['username_error_collision'] = 'Der Benutzername sollte nicht mit dem Wort -web- oder -web- gefolgt von einer Nummer anfangen.'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | | $wb['email_limits_txt'] = 'E-Mail Limits'; |
| | |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | $wb['customer_no_error_unique'] = 'Die Kundennummer muß einzigartig sein (oder leer).'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['paypal_email_error_isemail'] = 'Bitte geben Sie eine gültige PayPal-E-Mail-Adresse an.'; |
| | | $wb['paypal_email_txt'] = 'PayPal-E-Mail'; |
| | | $wb['paypal_email_error_isemail'] = 'Bitte geben Sie eine gültige PayPal E-Mail Adresse an.'; |
| | | $wb['paypal_email_txt'] = 'PayPal E-Mail'; |
| | | $wb['company_id_txt'] = 'Firmen/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Kontonummer'; |
| | | $wb['bank_account_owner_txt'] = 'Kontoinhaber'; |
| | |
| | | $wb['bank_name_txt'] = 'Bank'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC'; |
| | | $wb['aps_limits_txt'] = 'APS Installationsassistent Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. Anzahl an APS-Instanzen'; |
| | | $wb['limit_aps_error_notint'] = 'Das APS Instanzen Limit muss eine Zahl sein.'; |
| | | ?> |
| | |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than "custom" is selected.'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb["cron_job_limits_txt"] = 'Cron Job Limits'; |
| | | $wb["dns_limits_txt"] = 'DNS Limits'; |
| | | $wb["virtualization_limits_txt"] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb["bank_name_txt"] = 'Bank name'; |
| | | $wb["bank_account_iban_txt"] = 'IBAN'; |
| | | $wb["bank_account_swift_txt"] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | </select> |
| | | </div> |
| | | </div> |
| | | <div class="subsectiontoggle"><span></span>{tmpl_var name='aps_limits_txt'}<em></em></div> |
| | | <div style="display:none;"> |
| | | <div class="ctrlHolder"> |
| | | <label for="limit_aps">{tmpl_var name='limit_aps_txt'}</label> |
| | | <input name="limit_aps" id="limit_aps" value="{tmpl_var name='limit_aps'}" size="10" maxlength="10" type="text" class="textInput formLengthLimit" /> |
| | | </div> |
| | | </div> |
| | | </fieldset> |
| | | |
| | | <input type="hidden" name="id" value="{tmpl_var name='id'}"> |
| | |
| | | </select> |
| | | </div> |
| | | </div> |
| | | <div class="subsectiontoggle"><span></span>{tmpl_var name='aps_limits_txt'}<em></em></div> |
| | | <div style="display:none;"> |
| | | <div class="ctrlHolder"> |
| | | <label for="limit_aps">{tmpl_var name='limit_aps_txt'}</label> |
| | | <input name="limit_aps" id="limit_aps" value="{tmpl_var name='limit_aps'}" size="10" maxlength="10" type="text" class="textInput formLengthLimit" /> |
| | | </div> |
| | | </div> |
| | | </fieldset> |
| | | |
| | | <input type="hidden" name="id" value="{tmpl_var name='id'}"> |
| | |
| | | </select> |
| | | </div> |
| | | </div> |
| | | <div class="subsectiontoggle"><span></span>{tmpl_var name='aps_limits_txt'}<em></em></div> |
| | | <div style="display:none;"> |
| | | <div class="ctrlHolder"> |
| | | <label for="limit_aps">{tmpl_var name='limit_aps_txt'}</label> |
| | | <input name="limit_aps" id="limit_aps" value="{tmpl_var name='limit_aps'}" size="10" maxlength="10" type="text" class="textInput formLengthLimit" /> |
| | | </div> |
| | | </div> |
| | | </fieldset> |
| | | |
| | | <input type="hidden" name="id" value="{tmpl_var name='id'}"> |
| | |
| | | <td class="tbl_col_client_pid"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="client_id"}</a></td> |
| | | <td class="tbl_col_company_name"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="company_name"}</a></td> |
| | | <td class="tbl_col_contact_name"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="contact_name"}</a></td> |
| | | <td class="tbl_col_customer_no"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="customer_no"}</a></td> |
| | | <td class="tbl_col_username"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="username"}</a></td> |
| | | <td class="tbl_col_customer_no"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="customer_no"}</a></td> |
| | | <td class="tbl_col_username"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="username"}</a></td> |
| | | <td class="tbl_col_city"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="city"}</a></td> |
| | | <td class="tbl_col_country"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');"><div class="country-{tmpl_var name="countryiso"}" style="float:left"></div>{tmpl_var name="country"}</a></td> |
| | | <td class="tbl_col_buttons"> |
| | |
| | | $wb['welcome_user_txt'] = 'Vítejte %s'; |
| | | $wb['available_modules_txt'] = 'Dostupné moduly'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_database_txt'] = 'Počet databází'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Počet e-mailových konferencí'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['available_modules_txt'] = 'Dostupné moduly'; |
| | | ?> |
| | | |
| | |
| | | $wb['unlimited_txt'] = 'unlimitiert'; |
| | | $wb['limit_maildomain_txt'] = 'Anzahl der E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Anzahl der E-Mail Konten'; |
| | | $wb['limit_mailalias_txt'] = 'Anzahl der E-Mail Aliases'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Anzahl der Domain Aliases'; |
| | | $wb['limit_mailalias_txt'] = 'Anzahl der E-Mail Aliase'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Anzahl der Domain Aliase'; |
| | | $wb['limit_mailforward_txt'] = 'Anzahl der E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Anzahl der E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Anzahl der E-Mail Routen'; |
| | | $wb['limit_mailfilter_txt'] = 'Anzahl der E-Mail Filter'; |
| | | $wb['limit_fetchmail_txt'] = 'Anzahl der Fetchmail Konten'; |
| | | $wb['limit_fetchmail_txt'] = 'Anzahl der E-Mail Sammelkonten'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Anzahl der Spamfilter (White-/Blacklist)'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Anzahl der Spamfilter Benutzer'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Anzahl der Spamfilter Richtlinien'; |
| | |
| | | $wb['auth_preset_perm_group_txt'] = 'Opr. Skupina'; |
| | | $wb['auth_preset_perm_other_txt'] = 'Opr. Ostatní'; |
| | | ?> |
| | | |
| | |
| | | $wb['title_txt'] = 'Titulek'; |
| | | $wb['description_txt'] = 'Popis'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Delete menu with all menuitems?'; |
| | | $wb['item_del_txt'] = 'Delete menuitem?'; |
| | | ?> |
| | | |
| | |
| | | <b>Rada:</b> Všechny cesty jsou relativně k adresáři web web. |
| | | '; |
| | | ?> |
| | | |
| | |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['title_txt'] = 'Titulek'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Uložit'; |
| | | $wb['cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Uložit'; |
| | | $wb['cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Wollen Sie das Menü mit allen Untereinträgen löschen?'; |
| | | $wb['item_del_txt'] = 'Wollen Sie den Menüeintrag löschen?'; |
| | | ?> |
| | | |
| | |
| | | $wb['Secondary Zones'] = 'Sekundární DNS zóny'; |
| | | $wb['Import Zone File'] = 'Importovat vybraný DNS zonový soubor'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'IP adresa má chybný formát'; |
| | | $wb['data_error_duplicate'] = 'Duplikace A záznamu'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Skutečně chcete smazat tento záznam?'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'IP adresa je prázdná'; |
| | | $wb['data_error_regex'] = 'IP adresa má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Cílový Hostname je prázdný'; |
| | | $wb['data_error_regex'] = 'Cílový Hostname má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'Cílový hostname má chybný formát'; |
| | | $wb['data_error_duplicate'] = 'Duplicate A-Record or CNAME-Record'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Informace o hostovi je prázdná'; |
| | | $wb['data_error_regex'] = 'Informace o hostovi má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['no_file_uploaded_error'] = 'Nelze odeslat DNS zonový soubor'; |
| | | $wb['zone_file_import_txt'] = 'Importovat vybraný DNS zonový soubor'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Hostname mailserveru je prázdný'; |
| | | $wb['data_error_regex'] = 'Hostname mailserveru má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Jmenný server je prázdný'; |
| | | $wb['data_error_regex'] = 'Jmenný server má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Kanonický hostname je prázdný'; |
| | | $wb['data_error_regex'] = 'Kanonického hostname má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Odpovědná osoba je prázdná'; |
| | | $wb['data_error_regex'] = 'Odpovědná osoba má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['ipv4_form_txt'] = 'IPV4 formát, např. 1.2.3.4'; |
| | | $wb['secondary_zone_txt'] = 'Sekundární DNS zóna'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat sekundární DNS zónu'; |
| | | $wb['eg_domain_tld'] = 'např. domena.cz'; |
| | | ?> |
| | | |
| | |
| | | $wb['expire_range_error'] = 'Min. Expire time is 60 seconds.'; |
| | | $wb['minimum_range_error'] = 'Min. Minimum time is 60 seconds.'; |
| | | $wb['ttl_range_error'] = 'Min. TTL time is 60 seconds.'; |
| | | $wb['xfer_error_regex'] = 'Also notify: Please use an IP address.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat DNS zónu (SOA záznam)'; |
| | | $wb['add_new_record_wizard_txt'] = 'Přidat DNS zónu (dle šablony)'; |
| | | ?> |
| | | |
| | |
| | | $wb['srv_error_regex'] = 'Neplatný formát záznamu serveru. Záznam serveru musí obsahovat 3 textové řetězce oddělené mezerami.'; |
| | | $wb['aux_txt'] = 'Priority'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_txt'] = 'Šablona'; |
| | | $wb['visible_txt'] = 'Viditelný'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Název'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Text je prázdný'; |
| | | $wb['data_error_regex'] = 'Text má chybný formát'; |
| | | ?> |
| | | |
| | |
| | | $wb['list_head_txt'] = 'Průvodce vytvořením DNS zóny'; |
| | | $wb['list_desc_txt'] = 'Vytvoření DNS zóny pomocí průvodce'; |
| | | ?> |
| | | |
| | |
| | | $wb['DNS Wizard'] = 'DNS Assistent'; |
| | | $wb['Add DNS Zone'] = 'DNS Zone hinzufügen'; |
| | | $wb['Templates'] = 'Vorlagen'; |
| | | $wb['Secondary Zones'] = 'Secondary DNS Zonen'; |
| | | $wb['Import Zone File'] = 'Zone File Import'; |
| | | $wb['Secondary Zones'] = 'Zweiter DNS Zonen'; |
| | | $wb['Import Zone File'] = 'Zonen Datei Import'; |
| | | ?> |
| | |
| | | $wb['name_error_empty'] = 'Der Hostname ist leer.'; |
| | | $wb['name_error_regex'] = 'Der Hostname hat das falsche Format.'; |
| | | $wb['data_error_empty'] = 'IPv4 Adresse ist leer'; |
| | | $wb['data_error_regex'] = 'IPv4 Adressen-Format ist ungültig'; |
| | | $wb['data_error_regex'] = 'IPv4 Adressen Format ist ungültig'; |
| | | $wb['data_error_duplicate'] = 'Doppelter A oder CNAME Eintrag'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['zone_file_import_txt'] = 'Zone File Import'; |
| | | $wb['zone_file_import_txt'] = 'Zonen Datei Import'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['btn_save_txt'] = 'Importieren'; |
| | | $wb['btn_cancel_txt'] = 'Abbrechen'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['zone_file_successfully_imported_txt'] = 'Das Zone File wurde erfolgreich importiert!'; |
| | | $wb['error_no_valid_zone_file_txt'] = 'Die Datei scheint kein gültiges Zone File zu sein!'; |
| | | $wb['zone_file_successfully_imported_txt'] = 'Die Zone Datei wurde erfolgreich importiert!'; |
| | | $wb['error_no_valid_zone_file_txt'] = 'Die Datei scheint keinn gültige Zonen Datei zu sein!'; |
| | | $wb['zonefile_to_import_txt'] = 'Datei auswählen'; |
| | | $wb['domain_field_desc_txt'] = 'Kann freigelassen werden, falls der Dateiname oder der Dateiinhalt die Domain enthält.'; |
| | | $wb['title'] = 'Zone File importieren'; |
| | | $wb['title'] = 'Zonen Datei importieren'; |
| | | $wb['no_file_uploaded_error'] = 'Keine Datei hochgeladen'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['origin_txt'] = 'DNS Zone'; |
| | | $wb['secondary_zone_txt'] = 'Secondary DNS Zone'; |
| | | $wb['ns_txt'] = 'NS (IP-Adresse)'; |
| | | $wb['secondary_zone_txt'] = 'Zweiter DNS Zone'; |
| | | $wb['ns_txt'] = 'NS (IP Adresse)'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Die maximale Anzahl an Secondary DNS Zonen für Ihr Konto wurde erreicht.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Die maximale Anzahl an Zweiter DNS Zonen für Ihr Konto wurde erreicht.'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['xfer_txt'] = 'Zonentransfer zu diesen IP Adressen erlauben (mit Komma getrennte Liste)'; |
| | | $wb['server_id_error_empty'] = 'Kein Server ausgewählt'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Secondary DNS Zonen'; |
| | | $wb['list_head_txt'] = 'Zweiter DNS Zonen'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['origin_txt'] = 'Zone'; |
| | | $wb['ns_txt'] = 'NS'; |
| | | $wb['add_new_record_txt'] = 'Neue Secondary DNS Zone hinzufügen'; |
| | | $wb['add_new_record_txt'] = 'Neue Zweiter DNS Zone hinzufügen'; |
| | | $wb['eg_domain_tld'] = 'Format: domain.tld.'; |
| | | ?> |
| | |
| | | $wb['expire_txt'] = 'Expire'; |
| | | $wb['minimum_txt'] = 'Minimum'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['xfer_txt'] = 'Zonentransfer zu diesen IPs erlauben (mit Komma getrennte Liste)'; |
| | | $wb['xfer_txt'] = 'Zonentransfer zu diesen IP Adressen erlauben (mit Komma getrennte Liste)'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_dns_zone_txt'] = 'Die maximale Anzahl an DNS-Einträgen für ihr Konto wurde erreicht.'; |
| | | $wb['limit_dns_zone_txt'] = 'Die maximale Anzahl an DNS Einträgen für Ihr Konto wurde erreicht.'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['no_zone_perm'] = 'Sie haben nicht die Berechtigung, einen Eintrag zu dieser DNS-Zone hinzuzufügen.'; |
| | | $wb['no_zone_perm'] = 'Sie haben nicht die Berechtigung, einen Eintrag zu dieser DNS Zone hinzuzufügen.'; |
| | | $wb['server_id_error_empty'] = 'Kein Server ausgewählt'; |
| | | $wb['origin_error_empty'] = 'Zone leer.'; |
| | | $wb['origin_error_empty'] = 'Zone ist leer.'; |
| | | $wb['origin_error_unique'] = 'Es existiert bereits ein Eintrag für diese Zone.'; |
| | | $wb['origin_error_regex'] = 'Zone hat ein ungültiges Format.'; |
| | | $wb['ns_error_regex'] = 'NS hat ein ungültiges Format.'; |
| | |
| | | $wb['expire_range_error'] = 'Min. Expire ist 60 Sekunden.'; |
| | | $wb['minimum_range_error'] = 'Min. Minimum ist 60 Sekunden.'; |
| | | $wb['ttl_range_error'] = 'Min. TTL ist 60 Sekunden.'; |
| | | $wb['xfer_error_regex'] = 'Also notify: Please use an IP address.'; |
| | | $wb['xfer_error_regex'] = 'Bitte Beachten: Verwenden Sie eine IP Adresse.'; |
| | | ?> |
| | |
| | | $wb['ns1_txt'] = 'NS 1'; |
| | | $wb['ns2_txt'] = 'NS 2'; |
| | | $wb['ip_txt'] = 'IP Adresse'; |
| | | $wb['error_origin_empty'] = 'Origin leer.'; |
| | | $wb['error_ns_empty'] = 'NS leer.'; |
| | | $wb['error_mbox_empty'] = 'E-Mail Adresse leer.'; |
| | | $wb['error_refresh_empty'] = 'Refresh leer.'; |
| | | $wb['error_retry_empty'] = 'Retry leer.'; |
| | | $wb['error_expire_empty'] = 'Expire leer.'; |
| | | $wb['error_origin_empty'] = 'Quelle ist leer.'; |
| | | $wb['error_ns_empty'] = 'NS ist leer.'; |
| | | $wb['error_mbox_empty'] = 'E-Mail Adresse ist leer.'; |
| | | $wb['error_refresh_empty'] = 'Refresh ist leer.'; |
| | | $wb['error_retry_empty'] = 'Retry ist leer.'; |
| | | $wb['error_expire_empty'] = 'Expire ist leer.'; |
| | | $wb['error_minimum_empty'] = 'Minimum leer.'; |
| | | $wb['error_ttl_empty'] = 'TTL leer.'; |
| | | $wb['error_domain_empty'] = 'Domain leer'; |
| | | $wb['error_ip_empty'] = 'IP Adresse leer.'; |
| | | $wb['error_ns1_empty'] = 'NS1 leer.'; |
| | | $wb['error_ns2_empty'] = 'NS2 leer.'; |
| | | $wb['error_email_empty'] = 'E-Mail Adresse leer.'; |
| | | $wb['error_ttl_empty'] = 'TTL ist leer.'; |
| | | $wb['error_domain_empty'] = 'Domain ist leer'; |
| | | $wb['error_ip_empty'] = 'IP Adresse ist leer.'; |
| | | $wb['error_ns1_empty'] = 'NS1 ist leer.'; |
| | | $wb['error_ns2_empty'] = 'NS2 ist leer.'; |
| | | $wb['error_email_empty'] = 'E-Mail Adresse ist leer.'; |
| | | $wb['error_domain_regex'] = 'Domain beinhaltet ungültige Zeichen.'; |
| | | $wb['error_ns1_regex'] = 'NS1 beinhaltet ungültige Zeichen.'; |
| | | $wb['error_ns2_regex'] = 'NS2 beinhaltet ungültige Zeichen.'; |
| | | $wb['error_email_regex'] = 'E-Mail Adresse beinhaltet keine gültige Adresse.'; |
| | | $wb['error_email_regex'] = 'E-Mail Adresse ist ungültig.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'von'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'Treffern'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Keine Treffer.'; |
| | |
| | | $wb['Manage Questions'] = 'Spravovat dotazy'; |
| | | $wb['Add a Question & Answer Pair'] = 'Přidat otázku a odpověď'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_answer_txt'] = 'Odpověď'; |
| | | $wb['faq_section_txt'] = 'Sekce'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_faq_questions_txt'] = 'Často kladené dotazy'; |
| | | $wb['faq_new_question_txt'] = 'Přidat nový dotaz'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['edit_txt'] = 'Edit'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_faq_sections_txt'] = 'Sekce FAQ'; |
| | | $wb['faq_new_section_txt'] = 'Přidat novou sekci'; |
| | | ?> |
| | | |
| | |
| | | $wb['tstamp_txt'] = 'Časové razítko'; |
| | | $wb['reply_txt'] = 'Odpovědět'; |
| | | ?> |
| | | |
| | |
| | | $wb['subject_txt'] = 'Předmět'; |
| | | $wb['add_new_record_txt'] = 'Vytvořit zprávu pro podporu'; |
| | | ?> |
| | | |
| | |
| | | if(passwordObj.value == ''){ |
| | | passwordObj.focus(); |
| | | return; |
| | | } |
| | | } |
| | | |
| | | $('#dummy_username').val(userNameObj.value); |
| | | $('#dummy_passwort').val(passwordObj.value); |
| | | $('#dummy_login_form').submit(); |
| | | |
| | | var submitFormObj = jQuery.ajax({ type: "POST", |
| | | url: "content.php", |
| | | data: jQuery('#'+formname).serialize(), |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['theme_not_compatible'] = 'Zvolené téma není kompatibilní s aktuální verzí ISPConfig. Zkontrolujte prosím, zda není nová verze tématu.<br />Výchozí motiv byl aktivován automaticky.'; |
| | | ?> |
| | | |
| | |
| | | $wb['pw_reset'] = 'Das Passwort wurde zurückgesetzt und wird per E-Mail an Sie geschickt.'; |
| | | $wb['pw_error'] = 'Benutzername oder E-Mail Adresse stimmen nicht überein.'; |
| | | $wb['pw_error_noinput'] = 'Bitte geben Sie Ihre E-Mail Adresse und Ihren Benutzernamen ein.'; |
| | | $wb['pw_reset_mail_msg'] = 'Das Passwort wurde zurückgesetzt. Das neue Passwort lautet :'; |
| | | $wb['pw_reset_mail_msg'] = 'Das Passwort wurde zurückgesetzt. Das neue Passwort lautet: '; |
| | | $wb['pw_reset_mail_title'] = 'Ihr Passwort wurde zurückgesetzt.'; |
| | | $wb['user_regex_error'] = 'Benutzername beinhaltet nicht erlaubte Zeichen oder ist länger als 64 Zeichen.'; |
| | | $wb['pw_error_length'] = 'Die Passwortlänge ist > 64 Zeichen.'; |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['Statistics'] = 'Statistiky'; |
| | | $wb['Mailbox quota'] = 'Mailbox kvóta'; |
| | | ?> |
| | | |
| | |
| | | $wb['duplicate_email_alias_txt'] = 'Tento e-mail alias již existuje.'; |
| | | $wb['source_txt'] = 'Alias'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nový e-mailový alias'; |
| | | ?> |
| | | |
| | |
| | | $wb['source_error_unique'] = 'Duplikování zdrojové domény.'; |
| | | $wb['source_error_regex'] = 'Chybná zdrojová doména.'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['add_new_record_txt'] = 'Přidat doménový alias'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na černou listinu'; |
| | | $wb['access_txt'] = 'Přístup'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['pattern_error_empty'] = 'Vzor je prázdný.'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Akce'; |
| | | $wb['add_new_record_txt'] = 'Přidat obsahový filtr'; |
| | | ?> |
| | | |
| | |
| | | $wb['policy_txt'] = 'Spamový filtr'; |
| | | $wb['no_policy'] = '- nepovoleno -'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['destination_error_isemail'] = 'Cílová e-mailová adresa není platná.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'E-malová doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat e-mailový koš'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat doménu'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['source_txt'] = 'Zdrojový e-mail'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nové přesměrování'; |
| | | ?> |
| | | |
| | |
| | | $wb['source_read_all_txt'] = 'Načíst všechny e-maily (včetně již přečtené pošty)'; |
| | | $wb['error_delete_read_all_combination'] = 'Illegal combination of options. You can not use \\"Delete emails after retrieval\\" = no together with \\"Retrieve all emails\\" = yes'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['add_new_record_txt'] = 'Přidat účet'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['listname_error_unique'] = 'Na serveru je již shodný \\"název seznamu\\". Prosím, vyberte si jiný \\"název seznamu\\".'; |
| | | $wb['email_error_isemail'] = 'E-mailová adresa je neplatná.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['listname_txt'] = 'Název seznamu'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat relay adresáta'; |
| | | $wb['access_txt'] = 'Přístup'; |
| | | ?> |
| | | |
| | |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Vyčistit poté mailový adresář'; |
| | | $wb['days_txt'] = 'Dny.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nový záznam spamfiltru'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_mailrouting_txt'] = 'Dosažen maximální počet email směrování pro Váš účet.'; |
| | | $wb['transport_txt'] = 'Transport'; |
| | | ?> |
| | | |
| | |
| | | $wb['sort_order_txt'] = 'Třídit podle'; |
| | | $wb['add_new_record_txt'] = 'Přidat transport'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | $wb['move_to_txt'] = 'Přesunout do'; |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Opravdu smazat mailový filtr?'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Skutečný název'; |
| | | $wb['login_txt'] = 'Přihlášení'; |
| | | ?> |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Tento rok'; |
| | | $wb['last_year_txt'] = 'Minulý rok'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na bílou listinu'; |
| | | $wb['access_txt'] = 'Přístup'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Dosažen maximální počet záznamů pro bílou / černou listinu pro Váš účet.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Emaily na černé listině'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na černou listinu'; |
| | | ?> |
| | | |
| | |
| | | $wb['mailbox_size_limit_txt'] = 'Limit velikosti e-mailové schránky'; |
| | | $wb['message_size_limit_txt'] = 'Limit velikosti zprávy'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_name_txt'] = 'Server'; |
| | | $wb['server_id_txt'] = 'server_id'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_size_limit_txt'] = 'Limit velikosti zprávy'; |
| | | $wb['banned_rulenames_txt'] = 'Název pravidel zabanované'; |
| | | ?> |
| | | |
| | |
| | | $wb['bad_header_lover_txt'] = 'Špatné hlavičky'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam politiky'; |
| | | ?> |
| | | |
| | |
| | | $wb['fullname_txt'] = 'Název'; |
| | | $wb['local_txt'] = 'Lokální'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat spamfiltr uživatele'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Dosažen maximální počet záznamů pro bílou / černou listinu pro Váš účet.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Emaily na bílé listině'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na bílou listinu'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mailová adresa'; |
| | | $wb['used_txt'] = 'Využité místo'; |
| | | ?> |
| | | |
| | |
| | | $wb['Global Filters'] = 'Globale Filter'; |
| | | $wb['Domain Alias'] = 'E-Mail Domain Alias'; |
| | | $wb['Relay Recipients'] = 'Relay Empfänger'; |
| | | $wb['Mailbox quota'] = 'Mailbox Speichernutzung'; |
| | | $wb['Mailbox quota'] = 'E-Mail Konto Speichernutzung'; |
| | | ?> |
| | |
| | | $wb['no_domain_perm'] = 'Sie haben keine Berechtigung für diese Domain.'; |
| | | $wb['destination_error_isemail'] = 'Zieladresse ist ungültig.'; |
| | | $wb['limit_mailalias_txt'] = 'Die maximale Anzahl an E-Mail Aliasen für Ihr Konto wurde erreicht.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Es existiert bereits eineE-Mail Konto mit dieser E-Mail Adresse.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Es existiert bereits eine E-Mail Konto mit dieser E-Mail Adresse.'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['duplicate_email_alias_txt'] = 'Dieser E-Mail Alias existiert bereits.'; |
| | | $wb['source_txt'] = 'Alias'; |
| | |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | $wb['listname_error_unique'] = 'Es beseht bereits eine Mailingliste mit diesem Namen auf dem Serverr. Bitte verwenden Sie einen anderen Mailinglistennamen.'; |
| | | $wb['email_error_isemail'] = 'Die E-Mail Adresse ist falsch.'; |
| | | $wb['mailinglist_txt'] = 'Mailingliste'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | |
| | | $wb['Spamfilter'] = 'Spamový filtr'; |
| | | $wb['Email Filters'] = 'E-mailové filtry'; |
| | | ?> |
| | | |
| | |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'Nenastaveno'; |
| | | ?> |
| | | |
| | |
| | | $wb['now_txt'] = 'Nyní'; |
| | | $wb['autoresponder_subject_txt'] = 'Předmět e-mailu'; |
| | | ?> |
| | | |
| | |
| | | $wb['cc_error_isemail'] = 'Vyplněná e-mailová adresa neplatná'; |
| | | $wb['email_is_cc_error'] = 'Vyplněná e-mailová adresa a poslat kopii na e-mail adresu, nemůžou být stejné.'; |
| | | ?> |
| | | |
| | |
| | | $wb['move_to_txt'] = 'Přesunout do'; |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Opravdu chcete odstranit e-mail filter?'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | $wb['no_policy'] = '- nepovoleno -'; |
| | | $wb['policy_txt'] = 'Politika'; |
| | | ?> |
| | | |
| | |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Kopie senden an'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'E-Mail Filter'; |
| | | $wb['Email Filters'] = 'E-Mailfilter'; |
| | | ?> |
| | |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'E-Mailserver Adresse'; |
| | | $wb['cc_txt'] = 'Kopie senden an (CC)'; |
| | | $wb['quota_txt'] = 'E-Mail Kontogröße'; |
| | | $wb['quota_txt'] = 'E-Mailkonto Beschränkung'; |
| | | $wb['unlimited_txt'] = 'Unlimitiert'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'Niemanden'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'E-Mail Filter Regeln'; |
| | | $wb['list_head_txt'] = 'E-Mailfilter Regeln'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Neuen Filter hinzufügen'; |
| | | $wb['page_txt'] = 'Seite'; |
| | | $wb['page_of_txt'] = 'von'; |
| | | $wb['delete_confirmation'] = 'Möchten Sie die E-Mail Filter Regel wirklich löschen?'; |
| | | $wb['delete_confirmation'] = 'Möchten Sie die E-Mailfilter Regel wirklich löschen?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['mailbox_password_txt'] = 'E-Mail Konto Passwort'; |
| | | $wb['mailbox_password_txt'] = 'E-Mailkonto Passwort'; |
| | | $wb['password_txt'] = 'Passwort'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['email_txt'] = 'E-Mail'; |
| | |
| | | $wb['Show IPTables'] = 'Zobrazit IPTables pravidla'; |
| | | $wb['Show OpenVz VE BeanCounter'] = 'Show OpenVz VE BeanCounter'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Akce'; |
| | | $wb['status_txt'] = 'Stav'; |
| | | ?> |
| | | |
| | |
| | | $wb['loglevel_txt'] = 'Logovací úroveň'; |
| | | $wb['message_txt'] = 'Zpráva'; |
| | | ?> |
| | | |
| | |
| | | $wb['monitor_diskusage_mounted_txt'] = 'gemountet unter'; |
| | | $wb['monitor_logs_mail_txt'] = 'E-Mail Protokoll'; |
| | | $wb['monitor_logs_mailwarn_txt'] = 'E-Mail Warnung Protokoll'; |
| | | $wb['monitor_logs_mailerr_txt'] = 'Mail Fehler Protokoll'; |
| | | $wb['monitor_logs_mailerr_txt'] = 'E-Mail Fehler Protokoll'; |
| | | $wb['monitor_logs_messages_txt'] = 'Systemmeldungen Protokoll'; |
| | | $wb['monitor_logs_ispccron_txt'] = 'Cron Protokoll'; |
| | | $wb['monitor_logs_freshclam_txt'] = 'Freshclam Protokoll'; |
| | |
| | | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| | | */
|
| | | require_once('../../lib/config.inc.php');
|
| | | require_once('../../lib/app.inc.php'); |
| | | require_once('../../lib/app.inc.php');
|
| | |
|
| | | //require_once('classes/class.crawler.php');
|
| | | $app->load('aps_crawler');
|
| | |
|
| | |
| | | $time_start = microtime(true);
|
| | | $aps->startCrawler();
|
| | | $aps->parseFolderToDB();
|
| | | $aps->fixURLs();
|
| | | $time = microtime(true) - $time_start;
|
| | |
|
| | | $app->log($log_prefix.'Used mem at end: '.$aps->convertSize(memory_get_usage(true)));
|
| | |
| | | $app->auth->check_module_permissions('sites');
|
| | |
|
| | | // Load needed classes
|
| | | $app->uses('tpl');
|
| | | $app->uses('tpl,tform');
|
| | | $app->tpl->newTemplate("form.tpl.htm");
|
| | | $app->tpl->setInclude('content_tpl', 'templates/aps_install_package.htm');
|
| | |
|
| | |
| | | require_once($lngfile);
|
| | | $app->tpl->setVar($wb);
|
| | | $app->load_language_file('web/sites/'.$lngfile);
|
| | |
|
| | | // we will check only users, not admins
|
| | | if($_SESSION["s"]["user"]["typ"] == 'user') { |
| | | $app->tform->formDef['db_table_idx'] = 'client_id';
|
| | | $app->tform->formDef['db_table'] = 'client';
|
| | | if(!$app->tform->checkClientLimit('limit_aps')) {
|
| | | $app->error($app->lng("limit_aps_txt"));
|
| | | }
|
| | | if(!$app->tform->checkResellerLimit('limit_aps')) {
|
| | | $app->error('Reseller: '.$wb["limit_aps_txt"]);
|
| | | } |
| | | }
|
| | |
|
| | |
|
| | | $adminflag = ($_SESSION['s']['user']['typ'] == 'admin') ? true : false;
|
| | | $gui = new ApsGUIController($app);
|
| | |
| | | $domain_for_user = '';
|
| | | if(!$adminflag) $domain_for_user = "AND (sys_userid = '".$app->db->quote($_SESSION['s']['user']['userid'])."'
|
| | | OR sys_groupid = '".$app->db->quote($_SESSION['s']['user']['userid'])."' )";
|
| | | $domains_assoc = $app->db->queryAllRecords("SELECT domain FROM web_domain WHERE document_root != '' ".$domain_for_user." ORDER BY domain;");
|
| | | $domains_assoc = $app->db->queryAllRecords("SELECT domain FROM web_domain WHERE document_root != '' AND (type = 'vhost' OR type = 'vhostsubdomain') AND active = 'y' ".$domain_for_user." ORDER BY domain;");
|
| | | if(!empty($domains_assoc)) foreach($domains_assoc as $domain) $domains[] = $domain['domain'];
|
| | |
|
| | | // If data has been submitted, validate it
|
New file |
| | |
| | | <?php |
| | | /* |
| | | Copyright (c) 2012, Till Brehm, projektfarm Gmbh, ISPConfig UG |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, |
| | | are permitted provided that the following conditions are met: |
| | | |
| | | * Redistributions of source code must retain the above copyright notice, |
| | | this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above copyright notice, |
| | | this list of conditions and the following disclaimer in the documentation |
| | | and/or other materials provided with the distribution. |
| | | * Neither the name of ISPConfig nor the names of its contributors |
| | | may be used to endorse or promote products derived from this software without |
| | | specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| | | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| | | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| | | IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, |
| | | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| | | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| | | OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| | | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, |
| | | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | */ |
| | | |
| | | require_once('../../lib/config.inc.php'); |
| | | require_once('../../lib/app.inc.php'); |
| | | |
| | | //* Check permissions for module |
| | | $app->auth->check_module_permissions('sites'); |
| | | |
| | | $app->uses('tpl'); |
| | | |
| | | $app->tpl->newTemplate('form.tpl.htm'); |
| | | $app->tpl->setInclude('content_tpl', 'templates/aps_update_packagelist.htm'); |
| | | $msg = ''; |
| | | $error = ''; |
| | | |
| | | //* load language file |
| | | $lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_aps_update_packagelist.lng'; |
| | | include($lng_file); |
| | | $app->tpl->setVar($wb); |
| | | |
| | | |
| | | |
| | | $app->tpl->setVar('msg',$msg); |
| | | $app->tpl->setVar('error',$error); |
| | | |
| | | $app->tpl_defaults(); |
| | | $app->tpl->pparse(); |
| | | |
| | | |
| | | ?> |
| | |
| | | $client_group_id = $app->functions->intval($this->dataRecord["client_group_id"]); |
| | | $app->db->query("UPDATE web_database_user SET sys_groupid = $client_group_id, sys_perm_group = 'riud' WHERE database_user_id = ".$this->id); |
| | | } |
| | | |
| | | $password = $app->db->queryOneRecord("SELECT database_password FROM web_database_user WHERE database_user_id = ".$this->id); |
| | | |
| | | $records = $app->db->queryAllRecords("SELECT DISTINCT server_id FROM web_database WHERE database_user_id = '".$app->functions->intval($this->id)."' UNION SELECT DISTINCT server_id FROM web_database WHERE database_ro_user_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $new_rec = $this->dataRecord; |
| | | $new_rec['server_id'] = $rec['server_id']; |
| | | // Make sure to store the password in encrypted form in sys_datalog |
| | | $new_rec['database_password'] = $password['database_password']; |
| | | $app->db->datalogSave('web_database_user', 'UPDATE', 'database_user_id', $this->id, $this->oldDataRecord, $new_rec); |
| | | } |
| | | unset($new_rec); |
| | |
| | | |
| | | $form["title"] = "Web Aliasdomain"; |
| | | $form["description"] = ""; |
| | | $form["name"] = "web_domain"; |
| | | $form["name"] = "web_aliasdomain"; |
| | | $form["action"] = "web_aliasdomain_edit.php"; |
| | | $form["db_table"] = "web_domain"; |
| | | $form["db_table_idx"] = "domain_id"; |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Subdomain (Vhost)'] = 'Subdoména (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_install_txt'] = 'Instalovat'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | $wb['reinstall_txt'] = 'Přeinstalovat'; |
| | | ?> |
| | | |
| | |
| | | $wb['status_txt'] = 'Odemčený'; |
| | | $wb['filter_txt'] = 'Hledat'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | $wb['command_error_format'] = 'Chybná formát příkazu. V případě URL je povoleno volání pouze http/https.'; |
| | | $wb['unknown_fieldtype_error'] = 'Bylp použito pole neznámého typu.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_cron_txt'] = 'Přidat novou cron úlohu'; |
| | | $wb['parent_domain_id_txt'] = 'Webové stránky'; |
| | | ?> |
| | | |
| | |
| | | $wb['select_dbuser_txt'] = 'Vyberte uživatele databáze'; |
| | | $wb['no_dbuser_txt'] = 'Žádný'; |
| | | $wb['database_client_differs_txt'] = 'Klient mateřského webu a databáze se neshodují.'; |
| | | $wb['database_user_missing_txt'] = 'Please select a database user for this database.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat nové databáze'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_name_txt'] = 'Název databáze'; |
| | | $wb['add_new_record_txt'] = 'Přidat databázi'; |
| | | ?> |
| | | |
| | |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Hledat'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Návrhy'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Vytvořit nového uživatele databáze'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_user_txt'] = 'Uživatelé databáze'; |
| | | $wb['add_new_record_txt'] = 'Přidat nového uživatele databáze'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['add_new_record_txt'] = 'Přidat FTP uživatele'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['add_new_record_txt'] = 'Přidat shell uživatele'; |
| | | ?> |
| | | |
| | |
| | | $wb['soft_txt'] = 'Měkký limit'; |
| | | $wb['files_txt'] = 'Jednotlivé soubory'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | | |
| | |
| | | $wb['no_flag_txt'] = 'Žádný příznak'; |
| | | $wb['none_txt'] = 'Žádná'; |
| | | ?> |
| | | |
| | |
| | | $wb['backup_type_mysql'] = 'MySQL Database'; |
| | | $wb['backup_type_web'] = 'Website files'; |
| | | ?> |
| | | |
| | |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat webovou stránku'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat webovou stránku'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['path_error_regex'] = 'Neplatná cesta ke složce.'; |
| | | ?> |
| | | |
| | |
| | | $wb['parent_domain_id_txt'] = 'Webové stránky'; |
| | | $wb['path_txt'] = 'Cesta'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | $wb['web_folder_id_txt'] = 'Složka'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | ?> |
| | | |
| | |
| | | $wb['last_year_txt'] = 'Minulý rok'; |
| | | $wb['sum_txt'] = 'Součet'; |
| | | ?> |
| | | |
| | |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Subdoména'; |
| | | $wb['add_new_record_txt'] = 'Přidat subdoménu'; |
| | | ?> |
| | | |
| | |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Subdoména'; |
| | | $wb['add_new_record_txt'] = 'Přidat novou poddoménu'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['add_new_record_txt'] = 'Přidat nového WebDAV uživatele'; |
| | | ?> |
| | | |
| | |
| | | $wb['installation_success_txt'] = 'Installiert'; |
| | | $wb['installation_remove_txt'] = 'Deinstallation vorgemerkt'; |
| | | $wb['packagelist_update_finished_txt'] = 'APS Paketlistenupdate beendet.'; |
| | | $wb["limit_aps_txt"] = 'Die maximale Anzahl an APS-Instanzen für Ihr Konto wurde erreicht.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Paketliste aktualisieren'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['btn_start_txt'] = 'Paketliste aktualisieren'; |
| | | $wb['btn_cancel_txt'] = 'Abbrechen'; |
| | | $wb['legend_txt'] = 'Hier können Sie die Liste der verfügbaren Pakete aktualisieren. Dies kann bis zu fünf Minuten dauern. Wenn Sie möchten, können Sie diese Seite verlassen; der Prozeß läuft im Hintergrund weiter.'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['database_name_txt'] = 'Datenbankname'; |
| | | $wb['database_user_txt'] = 'Datenbank Benutzer'; |
| | | $wb['database_ro_user_txt'] = 'Nur Lesen Datenbank Benutzer'; |
| | | $wb['database_user_txt'] = 'Datenbankbenutzer'; |
| | | $wb['database_ro_user_txt'] = 'Nur Lesen Datenbankbenutzer'; |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['database_password_txt'] = 'Datenbank Passwort'; |
| | | $wb['database_charset_txt'] = 'Datenbank Zeichensatz'; |
| | | $wb['select_dbuser_txt'] = 'Datenbank Benutzer auswählen'; |
| | | $wb['select_dbuser_txt'] = 'Datenbankbenutzer auswählen'; |
| | | $wb['no_dbuser_txt'] = 'Keiner'; |
| | | $wb['remote_access_txt'] = 'Remote zugriff'; |
| | | $wb['remote_ips_txt'] = 'Remote zugriff IP Adressen (mit Komma trennen, keine Eingabe für <i>alle</i>)'; |
| | | $wb['remote_access_txt'] = 'Entfernter Zugriff'; |
| | | $wb['remote_ips_txt'] = 'Entfernter Zugriff IP Adressen (Mehrere mit Komma trennen, keine Eingabe für <i>alle</i>)'; |
| | | $wb['database_remote_error_ips'] = 'Mindestens eine der eingegebenen IP Adressen ist ungültig.'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['database_client_differs_txt'] = 'Der Kunde dieser Datenbank passt nicht zum Kunden des Datenbankusers.'; |
| | | $wb['database_name_error_empty'] = 'Datenbankname ist leer.'; |
| | | $wb['database_client_differs_txt'] = 'Der Kunde dieser Datenbank passt nicht zum Kunden des Datenbankbenutzers.'; |
| | | $wb['database_name_error_empty'] = 'Datenbank Name ist leer.'; |
| | | $wb['database_name_error_unique'] = 'Es existiert bereits eine Datenbank mit diesem Namen am Server. Um einen eindeutigen Namen zu erhalten können sie z.B. den Domainnamen vor dem Datenbanknamen verwenden.'; |
| | | $wb['database_name_error_regex'] = 'Ungültiger Datenbankname. Der Datenbankname darf die Zeichen: a-z, A-Z, 0-9 und den Unterstrich beinhalten. Länge: 2 - 64 Zeichen.'; |
| | | $wb['database_user_error_empty'] = 'Datenbank Benutzer ist leer.'; |
| | | $wb['database_user_error_empty'] = 'Datenbankbenutzer ist leer.'; |
| | | $wb['database_user_error_unique'] = 'Es existiert bereits ein Benutzer mit diesem Namen am Server. Um einen eindeutigen Namen zu erhalten können sie z.B. den Domainnamen vor dem Benutzernamen verwenden.'; |
| | | $wb['database_user_error_regex'] = 'Ungültiger Benutzername. Der Benutzername darf die Zeichen: a-z, A-Z, 0-9 und den Unterstrich beinhalten. Länge: 2 - 64 Zeichen.'; |
| | | $wb['limit_database_txt'] = 'Die maximale Anzahl an Datenbanken wurde erreicht.'; |
| | |
| | | $wb['database_user_missing_txt'] = 'Bitte wählen Sie einen Datenbanknutzer für die Datenbank aus.'; |
| | | $wb['database_charset_change_txt'] = 'Der Zeichensatz der Datenbank kann nicht geändert werden.'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['database_name_error_len'] = 'Datenbank Name - {db} - zu lang. Die max. Datenbank Namen Länge inkl. Präfix ist 64 Zeichen.'; |
| | | $wb['database_user_error_len'] = 'Datenbank Benutzername - {user} - zu lang. Die max. Datenbank Benutzernamen Länge inkl. Präfix ist 16 Zeichen.'; |
| | | $wb['database_name_error_len'] = 'Datenbankname - {db} - zu lang. Die max. Datenbanknamen Länge inkl. Präfix ist 64 Zeichen.'; |
| | | $wb['database_user_error_len'] = 'Datenbankbenutzername - {user} - zu lang. Die max. Datenbankbenutzernamen Länge inkl. Präfix ist 16 Zeichen.'; |
| | | $wb['generate_password_txt'] = 'Passwort erzeugen'; |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup Intervall'; |
| | | $wb['backup_copies_txt'] = 'Anzahl der Backups'; |
| | | $wb['ssl_state_txt'] = 'Land'; |
| | | $wb['ssl_locality_txt'] = 'Ort'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Abteilung'; |
| | | $wb['ssl_country_txt'] = 'Bundesland'; |
| | | $wb['ssl_key_txt'] = 'SSL Schlüssel'; |
| | | $wb['ssl_request_txt'] = 'SSL Anfrage'; |
| | | $wb['ssl_cert_txt'] = 'SSL Zertifikat'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Aktion'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Ungültige Verzeichnisangabe. Bitte geben Sie keine Schrägstrich ein.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['parent_domain_id_txt'] = 'Hauptwebseite'; |
| | | $wb['redirect_type_txt'] = 'Weiterleitungs Typ'; |
| | | $wb['redirect_path_txt'] = 'Weiterleitungs Pfad'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux Benutzer'; |
| | | $wb['system_group_txt'] = 'Linux Gruppe'; |
| | | $wb['ip_address_txt'] = 'IPv4 Adresse'; |
| | | $wb['ipv6_address_txt'] = 'IPv6 Adresse'; |
| | | $wb['vhost_type_txt'] = 'vHost Typ'; |
| | | $wb['hd_quota_txt'] = 'Festplatten Beschränkung'; |
| | | $wb['traffic_quota_txt'] = 'Transfer Beschränkung'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Eigene Fehlerseiten'; |
| | | $wb['subdomain_txt'] = 'Automatische Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['limit_web_domain_txt'] = 'Die max. Anzahl an Web Domains für Ihr Konto ist erreicht.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Die max. Anzahl an Alias Domains für Ihr Konto ist erreicht.'; |
| | | $wb['limit_web_subdomain_txt'] = 'Die max. Anzahl an Web Subdomains für Ihr Konto ist erreicht.'; |
| | | $wb['apache_directives_txt'] = 'Apache Direktiven'; |
| | | $wb['domain_error_empty'] = 'Domain ist leer.'; |
| | | $wb['domain_error_unique'] = 'Es existiert bereits eine Webseite oder Sub- Alias Domain mit diesem Domain Namen.'; |
| | | $wb['domain_error_regex'] = 'Domain Name ungültig.'; |
| | | $wb['domain_error_autosub'] = 'Es existiert bereits eine Subdomain mit diesen Einstellungen.'; |
| | | $wb['hd_quota_error_empty'] = 'Festplatten Beschränkung ist 0 oder leer.'; |
| | | $wb['traffic_quota_error_empty'] = 'Transfer Beschränkung ist leer.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL Staat ist leet.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Ort ist leer.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation ist leer.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Abteilung ist leer.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Bundeland ist leer.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Zertifikat Feld ist leer.'; |
| | | $wb['client_group_id_txt'] = 'Kunde'; |
| | | $wb['stats_password_txt'] = 'Webstatistiken Passwort'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. verfügbare Festplatten Beschränkung'; |
| | | $wb['ssl_state_error_regex'] = 'Ungültiger SSL Staat. Mögliche Zeichen sind: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Ungültiger SSL Ort. Mögliche Zeichen sind: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Ungültige SSL Organisation. Mögliche Zeichen sind: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Ungültige SSL Organisation Abteilung. Mögliche Zeichen sind: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Ungültiges SSL Bundesland. Mögliche Zeichen sind: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. verfügbare Transfer Beschränkung'; |
| | | $wb['redirect_error_regex'] = 'Ungültiger weiterleitungs Pfad. Gültige weiterleitungs Pfade sind zum Beispiel: /test/ oder http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Transfer Beschränkung überschritten'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistiken Benutzername'; |
| | | $wb['stats_type_txt'] = 'Webstatistiken Programm'; |
| | | $wb['custom_php_ini_txt'] = 'Benutzerdefinierte php.ini Einstellungen'; |
| | | $wb['none_txt'] = 'Keine'; |
| | | $wb['disabled_txt'] = 'Deaktiviert'; |
| | | $wb['no_redirect_txt'] = 'Keine Weiterleitung'; |
| | | $wb['no_flag_txt'] = 'Kein Flag'; |
| | | $wb['save_certificate_txt'] = 'Zertifikat speichern'; |
| | | $wb['create_certificate_txt'] = 'Zertifikat erstellen'; |
| | | $wb['delete_certificate_txt'] = 'Zertifikat löschen'; |
| | | $wb['nginx_directives_txt'] = 'nginx Direktiven'; |
| | | $wb['seo_redirect_txt'] = 'SEO Weiterleitung'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Verwende Socket für PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI ist für SSL ist auf diesem Server nicht aktiviert. Sie können nur ein SSL Zertifikate pro IP Adresse aktivieren.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Werte von PHP-FPM pm Einstellungen müßen folgendermaßen aussehen: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children muss ein positiver integer Wert sein.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers muss ein positiver integer Wert sein.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers muss ein positiver integer Wert sein.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers muss ein positiver integer Wert sein.'; |
| | | $wb['hd_quota_error_regex'] = 'Festplatten Beschränkung ist ungültig.'; |
| | | $wb['traffic_quota_error_regex'] = 'Transfer Beschränkung ist ungültig.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Prozess Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout muss eine positiver integer Wert sein.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests muss ein integer Wert >= 0 sein.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Bitte beachte Sie, daß Sie mindesten PHP Version >= 5.3.9 verwenden um den Ondemand Prozess Manager zu verwenden. Wenn Sie Ondemand für eine ältere PHP Version aktivieren wird PHP nicht mehr funktionieren!'; |
| | | $wb['generate_password_txt'] = 'Passwort generieren'; |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmer nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmer überein.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Verfügbare PHP Direktiven Schnipsel:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Verfügbare Apache Direktiven Schnipsel:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Verfügbare nginx Direktiven Schnipsel:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Direktiven'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Verfügbare Proxy Direktiven Schnipsel:'; |
| | | $wb['Domain'] = 'Alias Domain'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['installation_success_txt'] = 'Installed';
|
| | | $wb['installation_remove_txt'] = 'Removal planned';
|
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.';
|
| | | $wb["limit_aps_txt"] = 'The max. number of APS instances for your account is reached.';
|
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb["domain_error_autosub"] = 'There is already a subdomain with these settings.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Set Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Update Packagelist'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['btn_start_txt'] = 'Update Packagelist'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
New file |
| | |
| | | <?php
|
| | | $wb['head_txt'] = 'Update Packagelist';
|
| | | $wb['list_desc_txt'] = '';
|
| | | $wb['btn_start_txt'] = 'Update Packagelist';
|
| | | $wb['btn_cancel_txt'] = 'Cancel';
|
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.';
|
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Set Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \"proxy\" requires a URL as the redirect path.'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | |
| | | } |
| | | |
| | | // APS menu |
| | | if($app->auth->get_client_limit($userid,'aps') != 0) |
| | | { |
| | | $items = array(); |
| | | |
| | | $items[] = array( 'title' => 'Available packages', |
| | |
| | | { |
| | | $items[] = array( 'title' => 'Update Packagelist', |
| | | 'target' => 'content', |
| | | 'link' => 'sites/aps_cron_apscrawler_if.php', |
| | | 'link' => 'sites/aps_update_packagelist.php', |
| | | 'html_id' => 'aps_packagedetails_show'); |
| | | } |
| | | |
| | | $module['nav'][] = array( 'title' => 'APS Installer', |
| | | 'open' => 1, |
| | | 'items' => $items); |
| | | |
| | | } |
| | | |
| | | // Statistics menu |
| | | $items = array(); |
New file |
| | |
| | | <h2><tmpl_var name="head_txt"></h2> |
| | | <p><tmpl_var name="list_desc_txt"></p> |
| | | |
| | | <div class="panel panel_language_import"> |
| | | |
| | | <div class="pnl_formsarea"> |
| | | <fieldset class="inlineLabels"><legend>{tmpl_var name="legend_txt"}</legend> |
| | | |
| | | <div class="buttonHolder buttons"> |
| | | <button class="positive iconstxt icoPositive" type="button" value="Update Packagelist" onClick="loadContent('sites/aps_cron_apscrawler_if.php')"><span>{tmpl_var name="btn_start_txt"}</span></button> |
| | | <button class="negative iconstxt icoNegative" type="button" value="Cancel" onClick="loadContent('sites/aps_availablepackages_list.php');"><span>{tmpl_var name="btn_cancel_txt"}</span></button> |
| | | </div> |
| | | </fieldset> |
| | | |
| | | |
| | | |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | |
| | | |
| | | if($app->tform->checkPerm($this->id,'d') == false) $app->error($app->lng('error_no_delete_permission')); |
| | | |
| | | //* Delete all records that belog to this zone. |
| | | //* Delete all records that belong to this web. |
| | | $records = $app->db->queryAllRecords("SELECT domain_id FROM web_domain WHERE parent_domain_id = '".$app->functions->intval($this->id)."' AND type != 'vhost'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('web_domain','domain_id',$rec['domain_id']); |
| | | } |
| | | |
| | | //* Delete all records that belog to this zone. |
| | | //* Delete all records that belong to this web. |
| | | $records = $app->db->queryAllRecords("SELECT ftp_user_id FROM ftp_user WHERE parent_domain_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('ftp_user','ftp_user_id',$rec['ftp_user_id']); |
| | | } |
| | | |
| | | //* Delete all records that belog to this web. |
| | | //* Delete all records that belong to this web. |
| | | $records = $app->db->queryAllRecords("SELECT shell_user_id FROM shell_user WHERE parent_domain_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('shell_user','shell_user_id',$rec['shell_user_id']); |
| | | } |
| | | |
| | | //* Delete all records that belog to this web. |
| | | //* Delete all records that belong to this web. |
| | | $records = $app->db->queryAllRecords("SELECT id FROM cron WHERE parent_domain_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('cron','id',$rec['id']); |
| | | } |
| | | |
| | | //* Delete all records that belog to this web. |
| | | $records = $app->db->queryAllRecords("SELECT id FROM cron WHERE parent_domain_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('cron','id',$rec['id']); |
| | | } |
| | | |
| | | //* Delete all records that belog to this web |
| | | //* Delete all records that belong to this web |
| | | $records = $app->db->queryAllRecords("SELECT webdav_user_id FROM webdav_user WHERE parent_domain_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('webdav_user','webdav_user_id',$rec['webdav_user_id']); |
| | | } |
| | | |
| | | //* Delete all records that belog to this web |
| | | //* Delete all records that belong to this web |
| | | $records = $app->db->queryAllRecords("SELECT backup_id FROM web_backup WHERE parent_domain_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('web_backup','backup_id',$rec['backup_id']); |
| | | } |
| | | |
| | | //* Delete all records that belog to this web. |
| | | $web_domain = $app->db->queryOneRecord("SELECT domain FROM web_domain WHERE domain_id = ".$app->functions->intval($this->id)); |
| | | if($web_domain['domain'] != ''){ |
| | | $aps_instances = $app->db->queryAllRecords("SELECT instance_id FROM aps_instances_settings WHERE name = 'main_domain' AND value = '".$web_domain['domain']."'"); |
| | | if(is_array($aps_instances) && !empty($aps_instances)){ |
| | | foreach($aps_instances as $aps_instance){ |
| | | if($aps_instance['instance_id'] > 0){ |
| | | $app->db->datalogDelete('aps_instances_settings','instance_id',$aps_instance['instance_id']); |
| | | $app->db->datalogDelete('aps_instances','id',$aps_instance['instance_id']); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | //* Delete all web folders |
| | | $records = $app->db->queryAllRecords("SELECT web_folder_id FROM web_folder WHERE parent_domain_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | |
| | | |
| | | } |
| | | |
| | | //* If the domain name has been changed, we will have to change all subdomains |
| | | //* If the domain name has been changed, we will have to change all subdomains + APS instances |
| | | if(!empty($this->dataRecord["domain"]) && !empty($this->oldDataRecord["domain"]) && $this->dataRecord["domain"] != $this->oldDataRecord["domain"]) { |
| | | $records = $app->db->queryAllRecords("SELECT domain_id,domain FROM web_domain WHERE (type = 'subdomain' OR type = 'vhostsubdomain') AND domain LIKE '%.".$app->db->quote($this->oldDataRecord["domain"])."'"); |
| | | foreach($records as $rec) { |
| | |
| | | unset($records); |
| | | unset($rec); |
| | | unset($subdomain); |
| | | |
| | | // Update APS instances |
| | | $records = $app->db->queryAllRecords("SELECT id, instance_id FROM aps_instances_settings WHERE name = 'main_domain' AND value = '".$this->oldDataRecord["domain"]."'"); |
| | | if(is_array($records) && !empty($records)){ |
| | | foreach($records as $rec){ |
| | | $app->db->datalogUpdate('aps_instances_settings', "value = '".$this->dataRecord["domain"]."'", 'id', $rec['id']); |
| | | // Reinstall of package needed? |
| | | //$app->db->datalogUpdate('aps_instances', "instance_status = '1'", 'id', $rec['instance_id']); |
| | | } |
| | | } |
| | | unset($records); |
| | | unset($rec); |
| | | } |
| | | |
| | | //* Set allow_override if empty |
| | |
| | | $wb['password_strength_4_txt'] = 'Silné'; |
| | | $wb['password_strength_5_txt'] = 'Velmi silné'; |
| | | ?> |
| | | |
| | |
| | | table.list .tbl_row_uneven { background: #f0f8ff; } |
| | | table.list tr:hover { background: #fffacd; } |
| | | table.list td { word-wrap:break-word;white-space:pre-wrap; } |
| | | table.list td.tbl_col_buttons { word-wrap:normal;white-space:normal; } |
| | | table.list td.tbl_col_buttons { word-wrap:normal;white-space:normal;overflow:visible; } |
| | | |
| | | /* Password Strength */ |
| | | #passBar { |
| | |
| | | .icons16.icoFilter { background-position: -1px -161px; } |
| | | .icons16.icoDbAdmin { background-position: -1px -221px; } |
| | | .icons16.icoAction { background-position: -1px -241px; } |
| | | .icons16.icoLink { background-position: -1px -442px; float: right; } |
| | | .icons16.icoLink { background-position: -1px -422px; float: right; } |
| | | |
| | | div.group-icon { |
| | | float: left; |
| | |
| | | tabChangeWarning = '<tmpl_var name="tabchange_warning_enabled>'; |
| | | tabChangeWarningTxt = '<tmpl_var name="global_tabchange_warning_txt">'; |
| | | tabChangeDiscardTxt = '<tmpl_var name="global_tabchange_discard_txt">'; |
| | | |
| | | // Store password in browser; works in Firefox, but not Chrome |
| | | $('#username').live("blur", function(){ |
| | | if($('#dummy_username').val() == '' || $('#dummy_username').val() != $(this).val()){ |
| | | $('#dummy_login').show(); |
| | | $('#dummy_username').attr('value', $(this).val()).trigger('focus').trigger('blur'); |
| | | $('#dummy_login').hide(); |
| | | } |
| | | if($('#dummy_username').val() == $(this).val() && $(this).val() != ''){ |
| | | $('#passwort').val($('#dummy_passwort').val()); |
| | | } else { |
| | | $('#passwort').val(''); |
| | | } |
| | | $('#passwort').focus(); |
| | | }); |
| | | |
| | | $('#username').live("keyup", function(){ |
| | | $('#dummy_username').val(''); |
| | | $('#dummy_passwort').val(''); |
| | | $('#passwort').val(''); |
| | | }); |
| | | |
| | | }); |
| | | |
| | | |
| | |
| | | Powered by <a href="<tmpl_var name="app_link">" target="_blank"><tmpl_var name="app_title"></a> |
| | | </footer><!-- end: footer --> |
| | | </div> |
| | | |
| | | <div id="dummy_login" style="display:none;position:absolute;top:-1000px;left:-1000px;"> |
| | | <form action="" method="post" target="dummy_login" id="dummy_login_form"> |
| | | <input name="username" id="dummy_username" type="text" autocomplete="on" value="" /> |
| | | <input name="passwort" id="dummy_passwort" type="password" autocomplete="on" value="" /> |
| | | <input type="submit" value="Login" id="dummy_submit"/> |
| | | </form> |
| | | <iframe id="dummy_iframe" src="dummy_login.html" name="dummy_login" style="display:none;"></iframe> |
| | | </div> |
| | | </body> |
| | | </html> |
| | |
| | | $wb['PDNS Tupa'] = 'PowerDNS Tupa'; |
| | | $wb['Interface'] = 'Rozhraní'; |
| | | ?> |
| | | |
| | |
| | | $wb['import_user_filter_txt'] = 'Importovat uživatelský filter'; |
| | | $wb['import_spamfilter_txt'] = 'Importovat spamový filter'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_head_txt'] = 'ISPConfig nástroje'; |
| | | $wb['page_desc_txt'] = 'Změna uživatelského nastavení'; |
| | | ?> |
| | | |
| | |
| | | $wb['startmodule_txt'] = 'Výchozí modul po přihlášení'; |
| | | $wb['app_theme_txt'] = 'Výchozí grafické téma'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_start_txt'] = 'Zahájit'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_start_txt'] = 'Uložit'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['User Settings'] = 'Benutzereinstellungen'; |
| | | $wb['Settings'] = 'Einstellungen'; |
| | | $wb['ISPConfig Tools'] = 'Einstellungen'; |
| | | $wb['ISPConfig Tools'] = 'ISPConfig Tools'; |
| | | $wb['Interface'] = 'Benutzeroberfläche'; |
| | | $wb['Password and Language'] = 'Passwort und Sprache'; |
| | | $wb['ispconfig_tools_note'] = 'Dieses Modul erlaubt Ihnen, das Passwort und die Sprache zu ändern sowie einen Resync der DNS Records anzustoßen.'; |
| | | $wb['Resync'] = 'Resync'; |
| | | $wb['Sync Tools'] = 'Sync Tools'; |
| | | $wb['Import'] = 'Import'; |
| | | $wb['ISPConfig 3 mail'] = 'ISPConfig 3 mail'; |
| | | $wb['Sync Tools'] = 'Resync Werkzeug'; |
| | | $wb['Import'] = 'Importieren'; |
| | | $wb['ISPConfig 3 mail'] = 'ISPConfig 3 E-Mail'; |
| | | $wb['PDNS Tupa'] = 'PowerDNS Tupa'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Importiere EMail Konfiguration aus ISPConfig 3'; |
| | | $wb['legend_txt'] = 'Remote Server Verbindungsdetails'; |
| | | $wb['head_txt'] = 'Importiere E-Mail Konfiguration aus ISPConfig 3'; |
| | | $wb['legend_txt'] = 'Verbindungsdetails vom entfernten Server'; |
| | | $wb['legend2_txt'] = 'Importiere E-Mail Domain'; |
| | | $wb['resync_sites_txt'] = 'Resync Websites'; |
| | | $wb['resync_ftp_txt'] = 'Resync FTP Benutzer'; |
| | | $wb['resync_shell_txt'] = 'Resync Shell Benutzer'; |
| | | $wb['resync_cron_txt'] = 'Resync Cronjobs'; |
| | | $wb['resync_db_txt'] = 'Resync Kunden Datenbank Konfiguration'; |
| | | $wb['resync_mailbox_txt'] = 'Resync Mailboxes'; |
| | | $wb['resync_dns_txt'] = 'Resync DNS Einträge'; |
| | | $wb['btn_start_txt'] = 'Start Import'; |
| | | $wb['resync_sites_txt'] = 'Webseiten'; |
| | | $wb['resync_ftp_txt'] = 'FTP Benutzer'; |
| | | $wb['resync_shell_txt'] = 'Shell Benutzer'; |
| | | $wb['resync_cron_txt'] = 'Cronjobs'; |
| | | $wb['resync_db_txt'] = 'Datenbanken'; |
| | | $wb['resync_mailbox_txt'] = 'E-Mail Konten'; |
| | | $wb['resync_dns_txt'] = 'DNS Einträge'; |
| | | $wb['btn_start_txt'] = 'Starte Importieren'; |
| | | $wb['btn_connect_txt'] = 'Zum entfernten Server verbinden'; |
| | | $wb['btn_cancel_txt'] = 'Abbrechen'; |
| | | $wb['client_group_id_txt'] = 'Lokaler Client'; |
| | | $wb['mail_domain_txt'] = 'Remote E-Mail Domain'; |
| | | $wb['import_mailbox_txt'] = 'Mailbox importieren'; |
| | | $wb['client_group_id_txt'] = 'Lokaler Kunde'; |
| | | $wb['mail_domain_txt'] = 'Entfernte E-Mail Domain'; |
| | | $wb['import_mailbox_txt'] = 'E-Mail Konto importieren'; |
| | | $wb['import_aliasdomain_txt'] = 'Alias Domain importieren'; |
| | | $wb['import_alias_txt'] = 'E-Mail Alias importieren'; |
| | | $wb['import_forward_txt'] = 'Weiterleitungen importieren'; |
| | |
| | | <?php |
| | | $wb['page_head_txt'] = 'ISPConfig Tools'; |
| | | $wb['page_head_txt'] = 'ISPConfig Einstellungen'; |
| | | $wb['page_desc_txt'] = 'Benutzereinstellungen ändern'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['interface_head_txt'] = 'Interface Einstellungen'; |
| | | $wb['interface_head_txt'] = 'Benutzeroberflächen Einstellungen'; |
| | | $wb['interface_desc_txt'] = 'Passen Sie die Benutzeroberfläche für sich an'; |
| | | $wb['language_txt'] = 'Sprache'; |
| | | $wb['startmodule_txt'] = 'Startmodul'; |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Resync Tool'; |
| | | $wb['legend_txt'] = 'Resync'; |
| | | $wb['resync_sites_txt'] = 'Resync Webseiten'; |
| | | $wb['resync_ftp_txt'] = 'Resync FTP Benutzer'; |
| | | $wb['resync_shell_txt'] = 'Resync Shell Benutzer'; |
| | | $wb['resync_cron_txt'] = 'Resync Cronjobs'; |
| | | $wb['resync_db_txt'] = 'Resync clientdb config'; |
| | | $wb['resync_mailbox_txt'] = 'Resync Mailboxen'; |
| | | $wb['resync_dns_txt'] = 'Resync DNS Einträge'; |
| | | $wb['head_txt'] = 'Resync Werkzeug'; |
| | | $wb['legend_txt'] = 'Resync ausgewählte Dienste auf entfernten Server.'; |
| | | $wb['resync_sites_txt'] = 'Webseiten'; |
| | | $wb['resync_ftp_txt'] = 'FTP Benutzer'; |
| | | $wb['resync_shell_txt'] = 'Shell Benutzer'; |
| | | $wb['resync_cron_txt'] = 'Cronjobs'; |
| | | $wb['resync_db_txt'] = 'Datenbanken'; |
| | | $wb['resync_mailbox_txt'] = 'E-Mail Konten'; |
| | | $wb['resync_dns_txt'] = 'DNS Einträge'; |
| | | $wb['btn_start_txt'] = 'Start'; |
| | | $wb['btn_cancel_txt'] = 'Zurück'; |
| | | ?> |
| | |
| | | $wb['IP addresses'] = 'IP addresses'; |
| | | $wb['OpenVZ'] = 'OpenVZ'; |
| | | ?> |
| | | |
| | |
| | | $wb['ostemplate_name_unique_error'] = 'There is already a OSTemplate with that name.'; |
| | | $wb['ostemplate_exec_txt'] = 'The command to create a OSTemplate has been sent to the host server. It will take several minutes until the OSTemplate has been created.'; |
| | | ?> |
| | | |
| | |
| | | $wb['ip_error_unique'] = 'This IP address does already exist.'; |
| | | $wb['IP address'] = 'IP address'; |
| | | ?> |
| | | |
| | |
| | | $wb['reserved_txt'] = 'Reserved'; |
| | | $wb['vm_id_txt'] = 'VM'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_file_error_empty'] = 'Template filename is empty.'; |
| | | $wb['Template'] = 'Šablona'; |
| | | ?> |
| | | |
| | |
| | | $wb['allservers_txt'] = 'Exists on all servers'; |
| | | $wb['ostemplate_id_txt'] = 'ID'; |
| | | ?> |
| | | |
| | |
| | | $wb['Template'] = 'Šablona'; |
| | | $wb['Advanced'] = 'Pokročilý'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['template_name_txt'] = 'Název šablony'; |
| | | ?> |
| | | |
| | |
| | | $wb['Virtual server'] = 'Virtual server'; |
| | | $wb['Advanced'] = 'Pokročilý'; |
| | | ?> |
| | | |
| | |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['veid_txt'] = 'VEID'; |
| | | ?> |
| | | |
| | |
| | |
|
| | | // Now delete an existing folder (affects install and removal in the same way)
|
| | | @chdir($this->local_installpath);
|
| | | if(file_exists($this->local_installpath)) exec("rm -Rf ".escapeshellarg($this->local_installpath).'*');
|
| | | else mkdir($this->local_installpath, 0777, true);
|
| | | if(file_exists($this->local_installpath)){
|
| | | // make sure we don't delete error and stats folders
|
| | | if($this->local_installpath == $this->document_root.'/'){
|
| | | if(is_dir($this->document_root)){
|
| | | $files = array_diff(scandir($this->document_root), array('.','..','error','stats'));
|
| | | foreach($files as $file){
|
| | | if(is_dir($this->document_root.'/'.$file)){
|
| | | $app->file->removeDirectory($this->document_root.'/'.$file);
|
| | | } else {
|
| | | @unlink($this->document_root.'/'.$file);
|
| | | }
|
| | | }
|
| | | } else {
|
| | | @unlink($this->document_root);
|
| | | mkdir($this->document_root, 0777, true);
|
| | | }
|
| | | } else {
|
| | | exec("rm -Rf ".escapeshellarg($this->local_installpath).'*');
|
| | | }
|
| | | } else {
|
| | | mkdir($this->local_installpath, 0777, true);
|
| | | }
|
| | |
|
| | | if($this->handle_type == 'install')
|
| | | {
|
| | |
| | | if(!isset($task['instance_id'])) $task['instance_id'] = $instanceid;
|
| | |
|
| | | // Download aps package
|
| | | if(!file_exists($this->packages_dir.'/'.$task['path'])) {
|
| | | if(!file_exists($this->packages_dir.'/'.$task['path']) || filesize($this->packages_dir.'/'.$task['path']) == 0) {
|
| | | $ch = curl_init();
|
| | | $fh = fopen($this->packages_dir.'/'.$task['path'], 'wb');
|
| | | curl_setopt($ch, CURLOPT_FILE, $fh);
|
| | |
| | | } |
| | | return $passed; |
| | | } |
| | | |
| | | function removeDirectory($dir){ |
| | | //TODO: implement something to delete files/directories recursively that are owned by a certain user or group |
| | | if(is_dir($dir)){ |
| | | $files = array_diff(scandir($dir), array('.','..')); |
| | | if(is_array($files) && !empty($files)){ |
| | | foreach($files as $file){ |
| | | if(is_dir($dir.'/'.$file)){ |
| | | $this->removeDirectory($dir.'/'.$file); |
| | | } else { |
| | | @unlink($dir.'/'.$file); |
| | | } |
| | | } |
| | | } |
| | | @rmdir($dir); |
| | | } |
| | | } |
| | | |
| | | } |
| | | ?> |
| | |
| | | $state = 'ok'; |
| | | |
| | | //* Fetch the data for all users |
| | | $dfData = shell_exec('repquota -au'); |
| | | $dfData = shell_exec('repquota -au 2>/dev/null'); |
| | | |
| | | //* Split into array |
| | | $df = explode("\n", $dfData); |
| | |
| | | } |
| | | |
| | | //** Fetch the data for all users |
| | | $dfData = shell_exec('repquota -ag'); |
| | | $dfData = shell_exec('repquota -ag 2>/dev/null'); |
| | | |
| | | //* split into array |
| | | $df = explode("\n", $dfData); |
| | |
| | | $state = 'ok'; |
| | | |
| | | /** Fetch the data of ALL devices into a array (needed for monitoring!) */ |
| | | $dfData = shell_exec('df -hT'); |
| | | $dfData = shell_exec('df -hT 2>/dev/null'); |
| | | |
| | | // split into array |
| | | $df = explode("\n", $dfData); |
| | |
| | | system('which iptables', $retval); // Debian, Ubuntu, Fedora |
| | | if ($retval === 0) { |
| | | /* Get the data of the log */ |
| | | $data['output'] = '<h2>iptables -S (ipv4)</h2>'.shell_exec('iptables -S'); |
| | | $data['output'] = '<h2>iptables -S (ipv4)</h2>'.shell_exec('iptables -S 2>/dev/null'); |
| | | |
| | | /* |
| | | * At this moment, there is no state (maybe later) |
| | |
| | | system('which ip6tables', $retval); // Debian, Ubuntu, Fedora |
| | | if ($retval === 0) { |
| | | /* Get the data of the log */ |
| | | $data['output'] .= '<br><h2>ip6tables -S (ipv6)</h2>'.shell_exec('ip6tables -S'); |
| | | $data['output'] .= '<br><h2>ip6tables -S (ipv6)</h2>'.shell_exec('ip6tables -S 2>/dev/null'); |
| | | |
| | | /* |
| | | * At this moment, there is no state (maybe later) |
| | |
| | | return intval($string); |
| | | } |
| | | } |
| | | |
| | | function is_mounted($mountpoint){ |
| | | $cmd = 'df 2>/dev/null | grep " '.$mountpoint.'$"'; |
| | | exec($cmd, $output, $return_var); |
| | | return $return_var == 0 ? true : false; |
| | | } |
| | | |
| | | } |
| | | ?> |
| | |
| | | } |
| | | |
| | | if($data['new']['document_root'] == '') { |
| | | $app->log('document_root not set',LOGLEVEL_WARN); |
| | | if($data['new']['type'] == 'vhost' || $data['new']['type'] == 'vhostsubdomain') $app->log('document_root not set',LOGLEVEL_WARN); |
| | | return 0; |
| | | } |
| | | if($data['new']['system_user'] == 'root' or $data['new']['system_group'] == 'root') { |
| | |
| | | exec('chown --recursive --from='.escapeshellcmd($data['old']['system_user']).':'.escapeshellcmd($data['old']['system_group']).' '.escapeshellcmd($data['new']['system_user']).':'.escapeshellcmd($data['new']['system_group']).' '.$new_dir); |
| | | |
| | | //* Change the home directory and group of the website user |
| | | $command = 'usermod'; |
| | | $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' && usermod'; |
| | | $command .= ' --home '.escapeshellcmd($data['new']['document_root']); |
| | | $command .= ' --gid '.escapeshellcmd($data['new']['system_group']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']).' 2>/dev/null'; |
| | | exec($command); |
| | | } |
| | | |
| | |
| | | if($web_config['add_web_users_to_sshusers_group'] == 'y') { |
| | | $command = 'usermod'; |
| | | $command .= ' --groups sshusers'; |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']).' 2>/dev/null'; |
| | | $this->_exec($command); |
| | | } |
| | | |
| | |
| | | } else { |
| | | $tpl->setVar('rewrite_enabled',0); |
| | | } |
| | | |
| | | if(count($alias_seo_redirects) > 0) { |
| | | $tpl->setLoop('alias_seo_redirects',$alias_seo_redirects); |
| | | } |
| | | |
| | | //$tpl->setLoop('redirects',$rewrite_rules); |
| | | |
| | |
| | | //* create empty vhost array |
| | | $vhosts = array(); |
| | | |
| | | //* Add vhost for ipv4 IP |
| | | if(count($rewrite_rules) > 0){ |
| | | $vhosts[] = array('ip_address' => $data['new']['ip_address'], 'ssl_enabled' => 0, 'port' => 80, 'redirects' => $rewrite_rules); |
| | | } else { |
| | | $vhosts[] = array('ip_address' => $data['new']['ip_address'], 'ssl_enabled' => 0, 'port' => 80); |
| | | } |
| | | //* Add vhost for ipv4 IP |
| | | $tmp_vhost_arr = array('ip_address' => $data['new']['ip_address'], 'ssl_enabled' => 0, 'port' => 80); |
| | | if(count($rewrite_rules) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('redirects' => $rewrite_rules); |
| | | if(count($alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $alias_seo_redirects); |
| | | $vhosts[] = $tmp_vhost_arr; |
| | | unset($tmp_vhost_arr); |
| | | |
| | | //* Add vhost for ipv4 IP with SSL |
| | | $ssl_dir = $data['new']['document_root'].'/ssl'; |
| | |
| | | $crt_file = $ssl_dir.'/'.$domain.'.crt'; |
| | | |
| | | if($data['new']['ssl_domain'] != '' && $data['new']['ssl'] == 'y' && @is_file($crt_file) && @is_file($key_file) && (@filesize($crt_file)>0) && (@filesize($key_file)>0)) { |
| | | if(count($rewrite_rules) > 0){ |
| | | $vhosts[] = array('ip_address' => $data['new']['ip_address'], 'ssl_enabled' => 1, 'port' => '443', 'redirects' => $rewrite_rules); |
| | | } else { |
| | | $vhosts[] = array('ip_address' => $data['new']['ip_address'], 'ssl_enabled' => 1, 'port' => '443'); |
| | | } |
| | | $tmp_vhost_arr = array('ip_address' => $data['new']['ip_address'], 'ssl_enabled' => 1, 'port' => '443'); |
| | | if(count($rewrite_rules) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('redirects' => $rewrite_rules); |
| | | if(count($alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $alias_seo_redirects); |
| | | $vhosts[] = $tmp_vhost_arr; |
| | | unset($tmp_vhost_arr); |
| | | $app->log('Enable SSL for: '.$domain,LOGLEVEL_DEBUG);
|
| | | }
|
| | |
|
| | |
| | | $data['new']['ipv6_address'] = implode(':',$explode_v6);
|
| | | }
|
| | | }
|
| | | if(count($rewrite_rules) > 0){
|
| | | $vhosts[] = array('ip_address' => '['.$data['new']['ipv6_address'].']', 'ssl_enabled' => 0, 'port' => 80, 'redirects' => $rewrite_rules);
|
| | | } else {
|
| | | $vhosts[] = array('ip_address' => '['.$data['new']['ipv6_address'].']', 'ssl_enabled' => 0, 'port' => 80); |
| | | } |
| | | |
| | | $tmp_vhost_arr = array('ip_address' => '['.$data['new']['ipv6_address'].']', 'ssl_enabled' => 0, 'port' => 80); |
| | | if(count($rewrite_rules) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('redirects' => $rewrite_rules); |
| | | if(count($alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $alias_seo_redirects); |
| | | $vhosts[] = $tmp_vhost_arr; |
| | | unset($tmp_vhost_arr); |
| | | |
| | | //* Add vhost for ipv6 IP with SSL |
| | | if($data['new']['ssl_domain'] != '' && $data['new']['ssl'] == 'y' && @is_file($crt_file) && @is_file($key_file) && (@filesize($crt_file)>0) && (@filesize($key_file)>0)) { |
| | | |
| | | if(count($rewrite_rules) > 0){ |
| | | $vhosts[] = array('ip_address' => '['.$data['new']['ipv6_address'].']', 'ssl_enabled' => 1, 'port' => '443', 'redirects' => $rewrite_rules); |
| | | } else { |
| | | $vhosts[] = array('ip_address' => '['.$data['new']['ipv6_address'].']', 'ssl_enabled' => 1, 'port' => '443'); |
| | | } |
| | | $tmp_vhost_arr = array('ip_address' => '['.$data['new']['ipv6_address'].']', 'ssl_enabled' => 1, 'port' => '443'); |
| | | if(count($rewrite_rules) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('redirects' => $rewrite_rules); |
| | | if(count($alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $alias_seo_redirects); |
| | | $vhosts[] = $tmp_vhost_arr; |
| | | unset($tmp_vhost_arr); |
| | | $app->log('Enable SSL for IPv6: '.$domain,LOGLEVEL_DEBUG); |
| | | } |
| | | } |
| | |
| | | $app->uses('system'); |
| | | $web_config = $app->getconf->get_server_config($conf['server_id'], 'web'); |
| | | |
| | | $app->system->web_folder_protection($data['old']['document_root'],false); |
| | | if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain') $app->system->web_folder_protection($data['old']['document_root'],false); |
| | | |
| | | //* Check if this is a chrooted setup |
| | | if($web_config['website_basedir'] != '' && @is_file($web_config['website_basedir'].'/etc/passwd')) { |
| | |
| | | $web_folder = ''; |
| | | if($data['old']['type'] == 'vhostsubdomain') { |
| | | $tmp = $app->db->queryOneRecord('SELECT `domain`,`document_root` FROM web_domain WHERE domain_id = '.intval($data['old']['parent_domain_id'])); |
| | | $subdomain_host = preg_replace('/^(.*)\.' . preg_quote($tmp['domain'], '/') . '$/', '$1', $data['old']['domain']); |
| | | if($subdomain_host == '') $subdomain_host = 'web'.$data['old']['domain_id']; |
| | | $web_folder = $data['old']['web_folder']; |
| | | $log_folder .= '/' . $subdomain_host; |
| | | if($tmp['domain'] != ''){ |
| | | $subdomain_host = preg_replace('/^(.*)\.' . preg_quote($tmp['domain'], '/') . '$/', '$1', $data['old']['domain']); |
| | | } else { |
| | | // get log folder from /etc/fstab |
| | | /* |
| | | $bind_mounts = $app->system->file_get_contents('/etc/fstab'); |
| | | $bind_mount_lines = explode("\n", $bind_mounts); |
| | | if(is_array($bind_mount_lines) && !empty($bind_mount_lines)){ |
| | | foreach($bind_mount_lines as $bind_mount_line){ |
| | | $bind_mount_line = preg_replace('/\s+/', ' ', $bind_mount_line); |
| | | $bind_mount_parts = explode(' ', $bind_mount_line); |
| | | if(is_array($bind_mount_parts) && !empty($bind_mount_parts)){ |
| | | if($bind_mount_parts[0] == '/var/log/ispconfig/httpd/'.$data['old']['domain'] && $bind_mount_parts[2] == 'none' && strpos($bind_mount_parts[3], 'bind') !== false){ |
| | | $subdomain_host = str_replace($data['old']['document_root'].'/log/', '', $bind_mount_parts[1]); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | */ |
| | | // we are deleting the parent domain, so we can delete everything in the log directory |
| | | $subdomain_hosts = array(); |
| | | $files = array_diff(scandir($data['old']['document_root'].'/'.$log_folder), array('.','..')); |
| | | if(is_array($files) && !empty($files)){ |
| | | foreach($files as $file){ |
| | | if(is_dir($data['old']['document_root'].'/'.$log_folder.'/'.$file)){ |
| | | $subdomain_hosts[] = $file; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | if(is_array($subdomain_hosts) && !empty($subdomain_hosts)){ |
| | | $log_folders = array(); |
| | | foreach($subdomain_hosts as $subdomain_host){ |
| | | $log_folders[] = $log_folder.'/'.$subdomain_host; |
| | | } |
| | | } else { |
| | | if($subdomain_host == '') $subdomain_host = 'web'.$data['old']['domain_id']; |
| | | $log_folder .= '/' . $subdomain_host; |
| | | } |
| | | $web_folder = $data['old']['web_folder']; |
| | | unset($tmp); |
| | | unset($subdomain_hosts); |
| | | } |
| | | |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain'){ |
| | | if(is_array($log_folders) && !empty($log_folders)){ |
| | | foreach($log_folders as $log_folder){ |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | } |
| | | } else { |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | } |
| | | } |
| | | |
| | | //* remove mountpoint from fstab |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | if(is_array($log_folders) && !empty($log_folders)){ |
| | | foreach($log_folders as $log_folder){ |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | } |
| | | } else { |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | } |
| | | unset($log_folders); |
| | | |
| | | if($data['old']['type'] != 'vhost' && $data['old']['type'] != 'vhostsubdomain' && $data['old']['parent_domain_id'] > 0) { |
| | | //* This is a alias domain or subdomain, so we have to update the website instead |
| | |
| | | |
| | | if($data['old']['type'] == 'vhost') { |
| | | //delete the web user |
| | | $command = 'userdel'; |
| | | $command .= ' '.$data['old']['system_user']; |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['system_user']).' && userdel'; |
| | | $command .= ' '.escapeshellcmd($data['old']['system_user']); |
| | | exec($command); |
| | | if($apache_chrooted) $this->_exec('chroot '.escapeshellcmd($web_config['website_basedir']).' '.$command); |
| | | |
| | |
| | | |
| | | $this->_add_jailkit_user(); |
| | | |
| | | $command .= 'usermod -U '.escapeshellcmd($parent_domain["system_user"]); |
| | | $command .= 'usermod -U '.escapeshellcmd($parent_domain["system_user"]).' 2>/dev/null'; |
| | | exec($command); |
| | | |
| | | $this->_update_website_security_level(); |
| | |
| | | $command = '/usr/local/ispconfig/server/scripts/create_jailkit_chroot.sh'; |
| | | $command .= ' '.escapeshellcmd($this->parent_domain['document_root']); |
| | | $command .= ' \''.$this->jailkit_config['jailkit_chroot_app_sections'].'\''; |
| | | exec($command); |
| | | exec($command.' 2>/dev/null'); |
| | | |
| | | $this->app->log("Added jailkit chroot with command: ".$command,LOGLEVEL_DEBUG); |
| | | |
| | |
| | | $command = '/usr/local/ispconfig/server/scripts/create_jailkit_programs.sh'; |
| | | $command .= ' '.escapeshellcmd($this->parent_domain['document_root']); |
| | | $command .= ' \''.$this->jailkit_config['jailkit_chroot_app_programs'].'\''; |
| | | exec($command); |
| | | exec($command.' 2>/dev/null'); |
| | | |
| | | $this->app->log("Added programs to jailkit chroot with command: ".$command,LOGLEVEL_DEBUG); |
| | | |
| | | $command = '/usr/local/ispconfig/server/scripts/create_jailkit_programs.sh'; |
| | | $command .= ' '.escapeshellcmd($this->parent_domain['document_root']); |
| | | $command .= ' \''.$this->jailkit_config['jailkit_chroot_cron_programs'].'\''; |
| | | exec($command); |
| | | exec($command.' 2>/dev/null'); |
| | | |
| | | $this->app->log("Added cron programs to jailkit chroot with command: ".$command,LOGLEVEL_DEBUG); |
| | | } |
| | |
| | | $command .= ' '.escapeshellcmd($this->parent_domain['document_root']); |
| | | $command .= ' '.$jailkit_chroot_userhome; |
| | | $command .= ' '.escapeshellcmd("/bin/bash"); |
| | | exec($command); |
| | | exec($command.' 2>/dev/null'); |
| | | |
| | | $this->app->log("Added jailkit user to chroot with command: ".$command,LOGLEVEL_DEBUG); |
| | | |
| | |
| | | $app->log('Reloading the firewall',LOGLEVEL_DEBUG); |
| | | } else { |
| | | //* Ensure that bastille firewall is stopped |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall stop'); |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall stop 2>/dev/null'); |
| | | if(@is_file('/etc/debian_version')) exec('update-rc.d -f bastille-firewall remove'); |
| | | |
| | | //* Start ufw firewall |
| | |
| | | if($app->system->is_installed('ufw')) { |
| | | exec('ufw disable'); |
| | | } |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall restart'); |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall restart 2>/dev/null'); |
| | | if(@is_file('/etc/debian_version')) exec('update-rc.d bastille-firewall defaults'); |
| | | $app->log('Restarting the firewall',LOGLEVEL_DEBUG); |
| | | } else { |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall stop'); |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall stop 2>/dev/null'); |
| | | if(@is_file('/etc/debian_version')) exec('update-rc.d -f bastille-firewall remove'); |
| | | $app->log('Stopping the firewall',LOGLEVEL_DEBUG); |
| | | } |
| | |
| | | private function bastille_delete($event_name,$data) { |
| | | global $app, $conf; |
| | | |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall stop'); |
| | | exec($conf['init_scripts'] . '/' . 'bastille-firewall stop 2>/dev/null'); |
| | | if(@is_file('/etc/debian_version')) exec('update-rc.d -f bastille-firewall remove'); |
| | | $app->log('Stopping the firewall',LOGLEVEL_DEBUG); |
| | | |
| | |
| | | } |
| | | |
| | | if($data['new']['document_root'] == '') { |
| | | $app->log('document_root not set',LOGLEVEL_WARN); |
| | | if($data['new']['type'] == 'vhost' || $data['new']['type'] == 'vhostsubdomain') $app->log('document_root not set',LOGLEVEL_WARN); |
| | | return 0; |
| | | } |
| | | if($data['new']['system_user'] == 'root' or $data['new']['system_group'] == 'root') { |
| | |
| | | } |
| | | } |
| | | |
| | | //* Move the site data |
| | | $tmp_docroot = explode('/',$data['new']['document_root']); |
| | | unset($tmp_docroot[count($tmp_docroot)-1]); |
| | | $new_dir = implode('/',$tmp_docroot); |
| | | if($data["new"]["type"] != "vhostsubdomain") { |
| | | //* Move the site data |
| | | $tmp_docroot = explode('/',$data['new']['document_root']); |
| | | unset($tmp_docroot[count($tmp_docroot)-1]); |
| | | $new_dir = implode('/',$tmp_docroot); |
| | | |
| | | $tmp_docroot = explode('/',$data['old']['document_root']); |
| | | unset($tmp_docroot[count($tmp_docroot)-1]); |
| | | $old_dir = implode('/',$tmp_docroot); |
| | | $tmp_docroot = explode('/',$data['old']['document_root']); |
| | | unset($tmp_docroot[count($tmp_docroot)-1]); |
| | | $old_dir = implode('/',$tmp_docroot); |
| | | |
| | | //* Check if there is already some data in the new docroot and rename it as we need a clean path to move the existing site to the new path |
| | | if(@is_dir($data['new']['document_root'])) { |
| | | $app->system->web_folder_protection($data['new']['document_root'],false); |
| | | $app->system->rename($data['new']['document_root'],$data['new']['document_root'].'_bak_'.date('Y_m_d_H_i_s')); |
| | | $app->log('Renaming existing directory in new docroot location. mv '.$data['new']['document_root'].' '.$data['new']['document_root'].'_bak_'.date('Y_m_d_H_i_s'),LOGLEVEL_DEBUG); |
| | | } |
| | | //* Check if there is already some data in the new docroot and rename it as we need a clean path to move the existing site to the new path |
| | | if(@is_dir($data['new']['document_root'])) { |
| | | $app->system->web_folder_protection($data['new']['document_root'],false); |
| | | $app->system->rename($data['new']['document_root'],$data['new']['document_root'].'_bak_'.date('Y_m_d_H_i_s')); |
| | | $app->log('Renaming existing directory in new docroot location. mv '.$data['new']['document_root'].' '.$data['new']['document_root'].'_bak_'.date('Y_m_d_H_i_s'),LOGLEVEL_DEBUG); |
| | | } |
| | | |
| | | //* Create new base directory, if it does not exist yet |
| | | if(!is_dir($new_dir)) $app->system->mkdirpath($new_dir); |
| | | $app->system->web_folder_protection($data['old']['document_root'],false); |
| | | exec('mv '.escapeshellarg($data['old']['document_root']).' '.escapeshellarg($new_dir)); |
| | | //$app->system->rename($data['old']['document_root'],$new_dir); |
| | | $app->log('Moving site to new document root: mv '.$data['old']['document_root'].' '.$new_dir,LOGLEVEL_DEBUG); |
| | | //* Create new base directory, if it does not exist yet |
| | | if(!is_dir($new_dir)) $app->system->mkdirpath($new_dir); |
| | | $app->system->web_folder_protection($data['old']['document_root'],false); |
| | | exec('mv '.escapeshellarg($data['old']['document_root']).' '.escapeshellarg($new_dir)); |
| | | //$app->system->rename($data['old']['document_root'],$new_dir); |
| | | $app->log('Moving site to new document root: mv '.$data['old']['document_root'].' '.$new_dir,LOGLEVEL_DEBUG); |
| | | |
| | | // Handle the change in php_open_basedir |
| | | $data['new']['php_open_basedir'] = str_replace($data['old']['document_root'],$data['new']['document_root'],$data['old']['php_open_basedir']); |
| | | // Handle the change in php_open_basedir |
| | | $data['new']['php_open_basedir'] = str_replace($data['old']['document_root'],$data['new']['document_root'],$data['old']['php_open_basedir']); |
| | | |
| | | //* Change the owner of the website files to the new website owner |
| | | exec('chown --recursive --from='.escapeshellcmd($data['old']['system_user']).':'.escapeshellcmd($data['old']['system_group']).' '.escapeshellcmd($data['new']['system_user']).':'.escapeshellcmd($data['new']['system_group']).' '.$new_dir); |
| | | //* Change the owner of the website files to the new website owner |
| | | exec('chown --recursive --from='.escapeshellcmd($data['old']['system_user']).':'.escapeshellcmd($data['old']['system_group']).' '.escapeshellcmd($data['new']['system_user']).':'.escapeshellcmd($data['new']['system_group']).' '.$new_dir); |
| | | |
| | | //* Change the home directory and group of the website user |
| | | $command = 'usermod'; |
| | | $command .= ' --home '.escapeshellcmd($data['new']['document_root']); |
| | | $command .= ' --gid '.escapeshellcmd($data['new']['system_group']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']); |
| | | exec($command); |
| | | //* Change the home directory and group of the website user |
| | | $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' && usermod'; |
| | | $command .= ' --home '.escapeshellcmd($data['new']['document_root']); |
| | | $command .= ' --gid '.escapeshellcmd($data['new']['system_group']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']).' 2>/dev/null'; |
| | | exec($command); |
| | | } |
| | | |
| | | if($nginx_chrooted) $this->_exec('chroot '.escapeshellcmd($web_config['website_basedir']).' '.$command); |
| | | |
| | |
| | | if($web_config['add_web_users_to_sshusers_group'] == 'y') { |
| | | $command = 'usermod'; |
| | | $command .= ' --groups sshusers'; |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']).' 2>/dev/null'; |
| | | $this->_exec($command); |
| | | } |
| | | |
| | |
| | | $app->uses('system'); |
| | | $web_config = $app->getconf->get_server_config($conf['server_id'], 'web'); |
| | | |
| | | $app->system->web_folder_protection($data['old']['document_root'],false); |
| | | if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain') $app->system->web_folder_protection($data['old']['document_root'],false); |
| | | |
| | | //* Check if this is a chrooted setup |
| | | if($web_config['website_basedir'] != '' && @is_file($web_config['website_basedir'].'/etc/passwd')) { |
| | |
| | | $web_folder = ''; |
| | | if($data['old']['type'] == 'vhostsubdomain') { |
| | | $tmp = $app->db->queryOneRecord('SELECT `domain`,`document_root` FROM web_domain WHERE domain_id = '.intval($data['old']['parent_domain_id'])); |
| | | $subdomain_host = preg_replace('/^(.*)\.' . preg_quote($tmp['domain'], '/') . '$/', '$1', $data['old']['domain']); |
| | | if($subdomain_host == '') $subdomain_host = 'web'.$data['old']['domain_id']; |
| | | $web_folder = $data['old']['web_folder']; |
| | | $log_folder .= '/' . $subdomain_host; |
| | | if($tmp['domain'] != ''){ |
| | | $subdomain_host = preg_replace('/^(.*)\.' . preg_quote($tmp['domain'], '/') . '$/', '$1', $data['old']['domain']); |
| | | } else { |
| | | // get log folder from /etc/fstab |
| | | /* |
| | | $bind_mounts = $app->system->file_get_contents('/etc/fstab'); |
| | | $bind_mount_lines = explode("\n", $bind_mounts); |
| | | if(is_array($bind_mount_lines) && !empty($bind_mount_lines)){ |
| | | foreach($bind_mount_lines as $bind_mount_line){ |
| | | $bind_mount_line = preg_replace('/\s+/', ' ', $bind_mount_line); |
| | | $bind_mount_parts = explode(' ', $bind_mount_line); |
| | | if(is_array($bind_mount_parts) && !empty($bind_mount_parts)){ |
| | | if($bind_mount_parts[0] == '/var/log/ispconfig/httpd/'.$data['old']['domain'] && $bind_mount_parts[2] == 'none' && strpos($bind_mount_parts[3], 'bind') !== false){ |
| | | $subdomain_host = str_replace($data['old']['document_root'].'/log/', '', $bind_mount_parts[1]); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | */ |
| | | // we are deleting the parent domain, so we can delete everything in the log directory |
| | | $subdomain_hosts = array(); |
| | | $files = array_diff(scandir($data['old']['document_root'].'/'.$log_folder), array('.','..')); |
| | | if(is_array($files) && !empty($files)){ |
| | | foreach($files as $file){ |
| | | if(is_dir($data['old']['document_root'].'/'.$log_folder.'/'.$file)){ |
| | | $subdomain_hosts[] = $file; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | if(is_array($subdomain_hosts) && !empty($subdomain_hosts)){ |
| | | $log_folders = array(); |
| | | foreach($subdomain_hosts as $subdomain_host){ |
| | | $log_folders[] = $log_folder.'/'.$subdomain_host; |
| | | } |
| | | } else { |
| | | if($subdomain_host == '') $subdomain_host = 'web'.$data['old']['domain_id']; |
| | | $log_folder .= '/' . $subdomain_host; |
| | | } |
| | | $web_folder = $data['old']['web_folder']; |
| | | unset($tmp); |
| | | unset($subdomain_hosts); |
| | | } |
| | | |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain'){ |
| | | if(is_array($log_folders) && !empty($log_folders)){ |
| | | foreach($log_folders as $log_folder){ |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | } |
| | | } else { |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | } |
| | | } |
| | | |
| | | //* remove mountpoint from fstab |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | if(is_array($log_folders) && !empty($log_folders)){ |
| | | foreach($log_folders as $log_folder){ |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | } |
| | | } else { |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | } |
| | | unset($log_folders); |
| | | |
| | | if($data['old']['type'] != 'vhost' && $data['old']['type'] != 'vhostsubdomain' && $data['old']['parent_domain_id'] > 0) { |
| | | //* This is a alias domain or subdomain, so we have to update the website instead |
| | |
| | | |
| | | if($data['old']['type'] == 'vhost') { |
| | | //delete the web user |
| | | $command = 'userdel'; |
| | | $command .= ' '.$data['old']['system_user']; |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['system_user']).' && userdel'; |
| | | $command .= ' '.escapeshellcmd($data['old']['system_user']); |
| | | exec($command); |
| | | if($nginx_chrooted) $this->_exec('chroot '.escapeshellcmd($web_config['website_basedir']).' '.$command); |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | private function nginx_replace($matches){ |
| | | $location = 'location'.($matches[1] != '' ? ' '.$matches[1] : '').' '.$matches[2].' '.$matches[3]; |
| | | if($matches[4] == '##merge##' || $matches[7] == '##merge##') $location .= ' ##merge##'; |
| | | $location .= "\n"; |
| | | $location .= $matches[5]."\n"; |
| | | $location .= $matches[6]; |
| | | return $location; |
| | | } |
| | | |
| | | private function nginx_merge_locations($vhost_conf){ |
| | | |
| | | $lines = explode("\n", $vhost_conf); |
| | |
| | | $linecount = sizeof($lines); |
| | | for($h=0;$h<$linecount;$h++){ |
| | | $lines[$h] = rtrim($lines[$h]); |
| | | /* |
| | | if(substr(ltrim($lines[$h]), 0, 8) == 'location' && strpos($lines[$h], '{') !== false && strpos($lines[$h], ';') !== false){ |
| | | $lines[$h] = str_replace("{", "{\n", $lines[$h]); |
| | | $lines[$h] = str_replace(";", ";\n", $lines[$h]); |
| | |
| | | $lines[$h] = substr($lines[$h],0,strpos($lines[$h], '{')).' ##merge##'.substr($lines[$h],strpos($lines[$h], '{')+1); |
| | | } |
| | | } |
| | | */ |
| | | $pattern = '/^[^\S\n]*location[^\S\n]+(?:(.+)[^\S\n]+)?(.+)[^\S\n]*(\{)[^\S\n]*(##merge##)?[^\S\n]*(.+)[^\S\n]*(\})[^\S\n]*(##merge##)?[^\S\n]*$/'; |
| | | $lines[$h] = preg_replace_callback($pattern, array($this, 'nginx_replace') ,$lines[$h]); |
| | | } |
| | | } |
| | | $vhost_conf = implode("\n", $lines); |
| | |
| | | |
| | | //* Disable shell user temporarily if we use jailkit |
| | | if($data['new']['chroot'] == 'jailkit') { |
| | | $command = 'usermod -s /bin/false -L '.escapeshellcmd($data['new']['username']); |
| | | $command = 'usermod -s /bin/false -L '.escapeshellcmd($data['new']['username']).' 2>/dev/null'; |
| | | exec($command); |
| | | $app->log("Disabling shelluser temporarily: ".$command,LOGLEVEL_DEBUG); |
| | | } |
| | |
| | | // We delete only non jailkit users, jailkit users will be deleted by the jailkit plugin. |
| | | if ($data['old']['chroot'] != "jailkit") { |
| | | $command = 'userdel -f'; |
| | | $command .= ' '.escapeshellcmd($data['old']['username']); |
| | | |
| | | $command .= ' '.escapeshellcmd($data['old']['username']).' &> /dev/null'; |
| | | exec($command); |
| | | $app->log("Deleted shelluser: ".$data['old']['username'],LOGLEVEL_DEBUG); |
| | | } |
| | |
| | | $app->system->usermod($data['new']['username'], 0, 0, '', '/usr/sbin/jk_chrootsh', '', ''); |
| | | |
| | | //* Unlock user |
| | | $command = 'usermod -U '.escapeshellcmd($data['new']['username']); |
| | | $command = 'usermod -U '.escapeshellcmd($data['new']['username']).' 2>/dev/null'; |
| | | exec($command); |
| | | |
| | | $this->_update_website_security_level(); |
| | |
| | | |
| | | if(@is_dir($data['old']['dir'].$jailkit_chroot_userhome)) { |
| | | $command = 'userdel -f'; |
| | | $command .= ' '.escapeshellcmd($data['old']['username']); |
| | | $command .= ' '.escapeshellcmd($data['old']['username']).' &> /dev/null'; |
| | | exec($command); |
| | | $app->log("Jailkit Plugin -> delete chroot home:".$data['old']['dir'].$jailkit_chroot_userhome,LOGLEVEL_DEBUG); |
| | | } |
| | |
| | | $command = '/usr/local/ispconfig/server/scripts/create_jailkit_chroot.sh'; |
| | | $command .= ' '.escapeshellcmd($this->data['new']['dir']); |
| | | $command .= ' \''.$this->jailkit_config['jailkit_chroot_app_sections'].'\''; |
| | | exec($command); |
| | | exec($command.' 2>/dev/null'); |
| | | |
| | | $this->app->log("Added jailkit chroot with command: ".$command,LOGLEVEL_DEBUG); |
| | | |
| | |
| | | $command = '/usr/local/ispconfig/server/scripts/create_jailkit_programs.sh'; |
| | | $command .= ' '.escapeshellcmd($this->data['new']['dir']); |
| | | $command .= ' \''.$this->jailkit_config['jailkit_chroot_app_programs'].'\''; |
| | | exec($command); |
| | | exec($command.' 2>/dev/null'); |
| | | |
| | | $this->app->log("Added programs to jailkit chroot with command: ".$command,LOGLEVEL_DEBUG); |
| | | } |
| | |
| | | $command .= ' '.escapeshellcmd($this->data['new']['shell']); |
| | | $command .= ' '.$this->data['new']['puser']; |
| | | $command .= ' '.$jailkit_chroot_puserhome; |
| | | exec($command); |
| | | exec($command.' 2>/dev/null'); |
| | | |
| | | //* Change the homedir of the shell user and parent user |
| | | //* We have to do this manually as the usermod command fails |
| | |
| | | jk_jailuser -n -s $CHROOT_SHELL -j $CHROOT_HOMEDIR $CHROOT_USERNAME |
| | | |
| | | ### Reconfigure the chroot home directory for the user ### |
| | | usermod --home=$CHROOT_HOMEDIR/.$CHROOT_USERHOMEDIR $CHROOT_USERNAME |
| | | usermod --home=$CHROOT_HOMEDIR/.$CHROOT_USERHOMEDIR $CHROOT_USERNAME 2>/dev/null |
| | | |
| | | ### We have to reconfigure the chroot home directory for the parent user ### |
| | | if [ "$CHROOT_P_USER" != "" ]; then |
| | | usermod --home=$CHROOT_HOMEDIR/.$CHROOT_P_USER_HOMEDIR $CHROOT_P_USER |
| | | usermod --home=$CHROOT_HOMEDIR/.$CHROOT_P_USER_HOMEDIR $CHROOT_P_USER 2>/dev/null |
| | | fi |