2015-06-03 02:31:03 +03:00
< div class = "l-center edit" >
< div class = "l-sort clearfix" >
< div class = "l-sort-toolbar clearfix float-left" >
< span class = "title edit" > < b > <?=__('Configuring Server')?> < / b > < / span >
< ?php
if (!empty($_SESSION['error_msg'])) {
echo "< span class = \"vst-error\" > → ".htmlentities($_SESSION['error_msg'])."< / span > ";
} else {
if (!empty($_SESSION['ok_msg'])) {
echo "< span class = \"vst-ok\" > → ".$_SESSION['ok_msg']."< / span > ";
}
}
?>
< / div >
< / div >
< / div >
< div class = "l-separator" > < / div >
<!-- /.l - separator -->
< div class = "l-center" >
< ?php
$back = $_SESSION['back'];
if (empty($back)) {
$back = "location.href='/list/server/'";
} else {
$back = "location.href='".$back."'";
}
?>
< form id = "vstobjects" name = "v_configure_server" method = "post" >
< input type = "hidden" name = "token" value = "<?=$_SESSION['token']?>" / >
2015-07-01 01:31:06 +03:00
< input type = "hidden" name = "save" value = "save" / >
2016-07-02 19:51:56 +09:00
2015-06-03 02:31:03 +03:00
< table class = "data mode-add" >
< tr class = "data-add" >
< td class = "data-dotted" >
< table class = "data-col1" >
< tr > < td > < / td > < / tr >
< / table >
< / td >
< td class = "data-dotted" >
< table class = "data-col2" width = "600px" >
< tr >
< td class = "vst-text step-top" >
2016-07-02 19:51:56 +09:00
<?php print __('Hostname') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< input type = "text" size = "20" class = "vst-input" name = "v_hostname" value = "<?=htmlentities(trim($v_hostname, " ' " ) ) ? > ">
2015-06-03 02:31:03 +03:00
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label" >
<?php print __('Time Zone');?>
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list long-2" name = "v_timezone" >
< ?php
foreach ($v_timezones as $key => $value) {
echo "\t\t\t\t< option value = \"".$key."\"";
if ((!empty($v_timezone)) & & ( $key == $v_timezone)){
echo ' selected' ;
}
if ((!empty($v_timezone)) & & ( $key == $_POST['v_timezone'])){
echo ' selected' ;
}
echo ">".$value."< / option > \n";
}
2016-07-02 19:51:56 +09:00
?>
2015-06-03 02:31:03 +03:00
< / select >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label" >
<?php print __('Default Language');?>
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_language" >
< ?php
foreach ($languages as $key => $value) {
echo "\t\t\t\t< option value = \"".$value."\"";
if ((!empty($_SESSION['LANGUAGE'])) & & ( $value == $_SESSION['LANGUAGE'])){
echo ' selected' ;
}
if ((!empty($_SESSION['LANGUAGE'])) & & ( $value == $_POST['v_language'])){
echo ' selected' ;
}
echo ">".$value."< / option > \n";
}
2016-07-02 19:51:56 +09:00
?>
2015-06-03 02:31:03 +03:00
< / select >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('web');" class = "vst-text" >
< b > <?php print __('WEB');?> < img src = "/images/arrow.png" > < / b >
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
< table style = "display:<?php if (empty($v_adv)) echo 'none';?> ;" id = "web" >
2016-07-02 19:51:56 +09:00
<?php if (!empty($_SESSION['PROXY_SYSTEM'])) { ?>
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text" >
2016-10-05 17:21:49 +03:00
<?php print __('Proxy Server') ?> / < a class = "generate" href = "/edit/server/<? echo $_SESSION['PROXY_SYSTEM'] ?>/" > <?=__('configure')?> < / a >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_proxy_system" value = "<?php echo $_SESSION['PROXY_SYSTEM']; ?>" disabled >
< br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php } ?>
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text" >
2016-10-05 17:21:49 +03:00
<?php print __('Web Server') ?> / < a class = "generate" href = "/edit/server/<? echo $_SESSION['WEB_SYSTEM'] ?>/" > <?=__('configure')?> < / a >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_web_system" value = "<?php echo $_SESSION['WEB_SYSTEM']; ?>" disabled >
< br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php if (!empty($_SESSION['WEB_BACKEND'])) { ?>
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text" >
2016-10-05 17:21:49 +03:00
<?php print __('Backend Server') ?> / < a class = "generate" href = "/edit/server/<? echo $_SESSION['WEB_BACKEND'] ?>/" > <?=__('configure')?> < / a >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_web_backend" value = "<?php echo $_SESSION['WEB_BACKEND']; ?>" disabled >
< br > < br >
< / td >
< / tr >
2015-06-03 17:39:27 +03:00
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Backend Pool Mode') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_web_backend_pool" value = "<?php echo $_SESSION['WEB_BACKEND_POOL']; ?>" disabled >
< br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php } ?>
2015-06-03 02:31:03 +03:00
< / table >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('dns');" class = "vst-text" >
< b > <?php print __('DNS');?> < img src = "/images/arrow.png" > < / b >
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
< table style = "display:<?php if (empty($v_adv)) echo 'none';?> ;" id = "dns" >
< tr >
< td class = "vst-text" >
2016-10-05 17:21:49 +03:00
<?php print __('DNS Server') ?> / < a class = "generate" href = "/edit/server/<? echo $_SESSION['DNS_SYSTEM'] ?>/" > <?=__('configure')?> < / a >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_dns_system" value = "<?php echo $_SESSION['DNS_SYSTEM']; ?>" disabled >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label" >
<?php print __('DNS Cluster');?>
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_dns_cluster" disabled >
< option value = 'no' > <?php print __('no'); ?> < / option >
2015-06-03 17:39:27 +03:00
< option value = 'yes' < ? php if ( $ v_dns_cluster = = ' yes ' ) echo ' selected ' ? > ><?php print __('yes'); ?> < / option >
2015-06-03 02:31:03 +03:00
< / select >
2015-06-03 17:39:27 +03:00
< br > < br > < br >
< / td >
< / tr >
< ?php if ($v_dns_cluster = 'yes') {
$i = 0;
foreach ($dns_cluster as $key => $value) {
$i++;
2016-07-02 19:51:56 +09:00
?>
2015-06-03 17:39:27 +03:00
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Host'). ' #'.$i ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
< input type = "text" size = "20" class = "vst-input" name = "v_dns_remote_host" value = "<?php echo $key; ?>" disabled >
2015-06-03 02:31:03 +03:00
< br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php }} ?>
2015-06-03 02:31:03 +03:00
< / table >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('mail');" class = "vst-text" >
< b > <?php print __('MAIL');?> < img src = "/images/arrow.png" > < / b >
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
< table style = "display:<?php if (empty($v_mail_adv)) echo 'none';?> ;" id = "mail" >
< tr >
< td class = "vst-text" >
2016-10-05 17:21:49 +03:00
<?php print __('MAIL Server') ?> / < a class = "generate" href = "/edit/server/<? echo $_SESSION['MAIL_SYSTEM'] ?>/" > <?=__('configure')?> < / a >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_mail_system" value = "<?php echo $_SESSION['MAIL_SYSTEM']; ?>" disabled >
< br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php if (!empty($_SESSION['ANTIVIRUS_SYSTEM'])) { ?>
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text" >
2016-10-05 17:21:49 +03:00
<?php print __('Antivirus') ?> / < a class = "generate" href = "/edit/server/<? echo $_SESSION['ANTIVIRUS_SYSTEM'] ?>/" > <?=__('configure')?> < / a >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_antivirus_system" value = "<?php echo $_SESSION['ANTIVIRUS_SYSTEM']; ?>" disabled >
< br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php } ?>
<?php if (!empty($_SESSION['ANTISPAM_SYSTEM'])) { ?>
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text" >
2016-10-05 17:21:49 +03:00
<?php print __('AntiSpam') ?> / < a class = "generate" href = "/edit/server/<? echo $_SESSION['ANTISPAM_SYSTEM'] ?>/" > <?=__('configure')?> < / a >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_antispam_system" value = "<?php echo $_SESSION['ANTISPAM_SYSTEM']; ?>" disabled >
< br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php } ?>
2015-06-03 02:31:03 +03:00
< tr >
2015-06-03 17:39:27 +03:00
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Webmail URL') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_mail_url" value = "<?php echo $_SESSION['MAIL_URL']; ?>" >
< br > < br >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
2017-12-21 12:19:01 +02:00
2015-06-03 02:31:03 +03:00
< / table >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('db');" class = "vst-text" >
< b > <?php print __('DB');?> < img src = "/images/arrow.png" > < / b >
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
2015-06-03 17:39:27 +03:00
< table style = "display:<?php if (empty($v_db_adv)) echo 'none';?> ;" id = "db" >
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text input-label" >
2016-10-05 17:21:49 +03:00
<?php print __('MySQL Support');?> / < a class = "generate" href = "/edit/server/mysql/" > <?=__('configure')?> < / a >
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_mysql" disabled >
< option value = 'no' > <?php print __('no'); ?> < / option >
< option value = 'yes' < ? php if ( $ v_mysql = = ' yes ' ) echo ' selected ' ? > ><?php print __('yes'); ?> < / option >
< / select >
< br > < br >
< / td >
< / tr >
<?php if ($v_mysql == 'yes') { ?>
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('phpMyAdmin URL') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_mysql_url" value = "<?php echo $_SESSION['DB_PMA_URL']; ?>" >
< br > < br >
< / td >
< / tr >
<?php } ?>
< ?php if ($v_mysql == 'yes') {
$i = 0;
2016-07-03 15:09:32 +09:00
foreach ($v_mysql_hosts as $value) {
2015-06-03 17:39:27 +03:00
$i++;
2016-07-02 19:51:56 +09:00
?>
2015-06-03 17:39:27 +03:00
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Host'). ' #'.$i ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
2016-07-03 15:09:32 +09:00
< input type = "text" size = "20" class = "vst-input" name = "v_mysql_host" value = "<?=$value['HOST']?>" disabled >
2015-06-03 17:39:27 +03:00
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Password') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
< input type = "text" size = "20" class = "vst-input" name = "v_mysql_password" value = "" >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Maximum Number Of Databases') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
< input type = "text" size = "20" class = "vst-input" name = "v_mysql_max" value = "<?php echo $value['MAX_DB']; ?>" disabled >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Current Number Of Databases') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
< input type = "text" size = "20" class = "vst-input" name = "v_mysql_max" value = "<?php echo $value['U_DB_BASES']; ?>" disabled >
< br > < br > < br > < br >
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php }} ?>
2015-06-03 17:39:27 +03:00
< tr >
< td class = "vst-text input-label" >
2016-11-24 16:45:24 +02:00
<?php print __('PostgreSQL Support');?> / < a class = "generate" href = "/edit/server/postgresql/" > <?=__('configure')?> < / a >
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_pgsql" disabled >
< option value = 'no' > <?php print __('no'); ?> < / option >
< option value = 'yes' < ? php if ( $ v_pgsql = = ' yes ' ) echo ' selected ' ? > ><?php print __('yes'); ?> < / option >
< / select >
< br > < br >
< / td >
< / tr >
<?php if ($v_pgsql == 'yes') { ?>
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('phpPgAdmin URL') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_pgsql_url" value = "<?php echo $_SESSION['DB_PGA_URL']; ?>" >
< br > < br >
< / td >
< / tr >
<?php } ?>
< ?php if ($v_pgsql == 'yes') {
$i = 0;
2016-07-03 15:09:32 +09:00
foreach ($v_pgsql_hosts as $value) {
2015-06-03 17:39:27 +03:00
$i++;
2016-07-02 19:51:56 +09:00
?>
2015-06-03 17:39:27 +03:00
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Host'). ' #'.$i ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
2016-07-03 15:09:32 +09:00
< input type = "text" size = "20" class = "vst-input" name = "v_pgsql_host" value = "<?=$value['HOST']?>" disabled >
2015-06-03 17:39:27 +03:00
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Maximum Number Of Databases') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
< input type = "text" size = "20" class = "vst-input" name = "v_psql_max" value = "<?php echo $value['MAX_DB']; ?>" disabled >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text step-left" >
2016-07-02 19:51:56 +09:00
<?php print __('Current Number Of Databases') ?>
2015-06-03 17:39:27 +03:00
< / td >
< / tr >
< tr >
< td class = "step-left" >
< input type = "text" size = "20" class = "vst-input" name = "v_pgsql_max" value = "<?php echo $value['U_DB_BASES']; ?>" disabled >
< br > < br > < br > < br >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
2016-07-02 19:51:56 +09:00
<?php }} ?>
2015-06-03 02:31:03 +03:00
< / table >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('backup');" class = "vst-text" >
< b > <?php print __('BACKUP');?> < img src = "/images/arrow.png" > < / b >
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
< table style = "display:<?php if (empty($v_backup_adv)) echo 'none';?> ;" id = "backup" >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Local backup') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_backup" >
< option value = 'no' > <?php print __('no'); ?> < / option >
< option value = 'yes' < ? php if ( $ v_backup = = ' yes ' ) echo ' selected ' ? > ><?php print __('yes'); ?> < / option >
< / select >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Compression level') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_backup_gzip" >
< option value = '1' < ? php if ( $ v_backup_gzip = = ' 1 ' ) echo ' selected ' ? > >1< / option >
< option value = '2' < ? php if ( $ v_backup_gzip = = ' 2 ' ) echo ' selected ' ? > >2< / option >
< option value = '3' < ? php if ( $ v_backup_gzip = = ' 3 ' ) echo ' selected ' ? > >3< / option >
< option value = '4' < ? php if ( $ v_backup_gzip = = ' 4 ' ) echo ' selected ' ? > >4< / option >
< option value = '5' < ? php if ( $ v_backup_gzip = = ' 5 ' ) echo ' selected ' ? > >5< / option >
< option value = '6' < ? php if ( $ v_backup_gzip = = ' 6 ' ) echo ' selected ' ? > >6< / option >
< option value = '7' < ? php if ( $ v_backup_gzip = = ' 7 ' ) echo ' selected ' ? > >7< / option >
< option value = '8' < ? php if ( $ v_backup_gzip = = ' 8 ' ) echo ' selected ' ? > >8< / option >
< option value = '9' < ? php if ( $ v_backup_gzip = = ' 9 ' ) echo ' selected ' ? > >9< / option >
< / select >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Directory') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< input type = "text" size = "20" class = "vst-input" name = "v_backup_dir" value = "<?=trim($v_backup_dir, " ' " ) ? > ">
2015-06-03 02:31:03 +03:00
< br > < br >
< / td >
< / tr > < tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('remote_backup');" class = "vst-text" >
<?php print __('Remote backup');?> < img src = "/images/arrow.png" >
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
< table style = "display:<?php if (empty($v_backup_remote_adv)) echo 'none';?> ;" id = "remote_backup" >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Protocol') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_backup_type" >
< option value = 'ftp' > <?php print __('ftp'); ?> < / option >
< option value = 'sftp' < ? php if ( ( ! empty ( $ v_backup_type ) ) & & ( $ v_backup_type = = ' sftp ' ) ) echo ' selected ' ? > ><?php print __('sftp'); ?> < / option >
< / select >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Host') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< input type = "text" size = "20" class = "vst-input" name = "v_backup_host" value = "<?=trim($v_backup_host, " ' " ) ? > ">
2015-06-03 02:31:03 +03:00
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Username') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< input type = "text" size = "20" class = "vst-input" name = "v_backup_username" value = "<?=trim($v_backup_username, " ' " ) ? > ">
2015-06-03 02:31:03 +03:00
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Password') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< input type = "text" size = "20" class = "vst-input" name = "v_backup_password" value = "<?=trim($v_backup_password, " ' " ) ? > ">
2015-06-03 02:31:03 +03:00
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Directory') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< input type = "text" size = "20" class = "vst-input" name = "v_backup_bpath" value = "<?=trim($v_backup_bpath, " ' " ) ? > ">
2015-06-03 02:31:03 +03:00
< br > < br >
< / td >
< / tr >
< / table >
< / td >
< / tr >
< / table >
< / td >
< / tr >
2016-10-06 18:52:34 +03:00
< tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('ssl');" class = "vst-text" >
< b > <?php print __('Vesta SSL');?> <!-- span style="color:#ff6701;font - size:10px; padding:0 10px;">preview</span --> < img src = "/images/arrow.png" > < / b >
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
< table style = "display:<?php if (empty($v_adv)) echo 'none';?> ;" id = "ssl" >
< tr >
< td class = "vst-text input-label" >
<?php print __('SSL Certificate');?>
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< textarea size = "20" class = "vst-textinput" name = "v_ssl_crt" > <?=htmlentities(trim($v_ssl_crt, "'"))?> < / textarea >
2016-10-06 18:52:34 +03:00
< / td >
< / tr >
< tr >
< td class = "vst-text input-label" >
<?php print __('SSL Key');?>
< / td >
< / tr >
< tr >
< td >
2016-11-22 07:05:19 -05:00
< textarea size = "20" class = "vst-textinput" name = "v_ssl_key" > <?=htmlentities(trim($v_ssl_key, "'"))?> < / textarea >
2016-10-06 18:52:34 +03:00
< / td >
< / tr >
< tr >
< td >
< table class = "additional-info" >
< tr >
< td >
<?=__('SUBJECT')?> :
< / td >
< td class = "details" >
<?=$v_ssl_subject?>
< / td >
< / tr >
<? if($v_ssl_aliases){?>
< tr >
< td >
<?=__('ALIASES')?> :
< / td >
< td class = "details" >
<?=$v_ssl_aliases?>
< / td >
< / tr >
<? } ?>
< tr >
< td >
<?=__('NOT_BEFORE')?> :
< / td >
< td class = "details" >
<?=$v_ssl_not_before?>
< / td >
< / tr >
< tr >
< td >
<?=__('NOT_AFTER')?> :
< / td >
< td class = "details" >
<?=$v_ssl_not_after?>
< / td >
< / tr >
< tr >
< td >
<?=__('SIGNATURE')?> :
< / td >
< td class = "details" >
<?=$v_ssl_signature?>
< / td >
< / tr >
< tr >
< td >
<?=__('PUB_KEY')?> :
< / td >
< td class = "details" >
<?=$v_ssl_pub_key?>
< / td >
< / tr >
< tr >
< td >
2017-04-25 13:23:56 -07:00
<?=__('ISSUER')?> :
2016-10-06 18:52:34 +03:00
< / td >
< td class = "details" >
<?=$v_ssl_issuer?>
< / td >
< / tr >
< / table >
< / td >
< / tr >
< / table >
< / td >
< / tr >
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text input-label step-top" >
< a href = "javascript:elementHideShow('vesta');" class = "vst-text" >
2015-11-02 15:28:16 +02:00
< b > <?php print __('Vesta Control Panel Plugins');?> <!-- span style="color:#ff6701;font - size:10px; padding:0 10px;">preview</span --> < img src = "/images/arrow.png" > < / b >
2015-06-03 02:31:03 +03:00
< / a >
< / td >
< / tr >
< tr >
< td class = "vst-text input-label step-left" >
2015-11-02 15:28:16 +02:00
< table style = "display:<?php if (empty($v_adv) && $_GET['lead'] != 'filemanager' && $_GET['lead'] != 'sftp') echo 'none';?> ;" id = "vesta" >
2015-06-03 02:31:03 +03:00
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Version') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< input type = "text" size = "20" class = "vst-input" name = "v_version" value = "<?php echo $_SESSION['VERSION']; ?>" disabled >
< br > < br >
< / td >
< / tr >
< tr >
2015-11-04 00:21:11 +02:00
< td class = "vst-text" >
2015-11-03 01:07:41 +02:00
<?php print __('FileSystem Disk Quota');?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2015-11-03 01:07:41 +02:00
< select class = "vst-list" name = "v_quota" >
2015-06-03 02:31:03 +03:00
< option value = 'no' > <?php print __('no'); ?> < / option >
2015-11-03 01:07:41 +02:00
< option value = 'yes' < ? php if ( $ _SESSION [ ' DISK_QUOTA ' ] = = ' yes ' ) echo ' selected ' ? > ><?php print __('yes'); ?> < / option >
2015-06-03 02:31:03 +03:00
< / select >
< br > < br >
< / td >
< / tr >
< tr >
2015-11-03 01:07:41 +02:00
< td class = "vst-text input-label" >
<?php print __('Firewall');?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2015-11-03 01:07:41 +02:00
< select class = "vst-list" name = "v_firewall" >
2015-06-03 02:31:03 +03:00
< option value = 'no' > <?php print __('no'); ?> < / option >
2015-11-03 01:07:41 +02:00
< option value = 'yes' < ? php if ( $ _SESSION [ ' FIREWALL_SYSTEM ' ] = = ' iptables ' ) echo ' selected ' ? > ><?php print __('yes'); ?> < / option >
2015-06-03 02:31:03 +03:00
< / select >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Reseller Role') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2015-11-03 01:07:41 +02:00
< select class = "vst-list" name = "v_reseller" disabled = "disabled" >
2015-06-03 02:31:03 +03:00
< option value = 'no' > <?php print __('no'); ?> < / option >
< / select >
< br > < br >
< / td >
< / tr >
< tr >
< td class = "vst-text" >
2016-07-02 19:51:56 +09:00
<?php print __('Backup Migration Manager') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
2015-11-02 15:28:16 +02:00
< select class = "vst-list" name = "v_backup_manager" disabled = "disabled" >
2015-06-03 02:31:03 +03:00
< option value = 'no' > <?php print __('no'); ?> < / option >
< / select >
< br > < br >
< / td >
< / tr >
< tr >
2015-11-02 15:28:16 +02:00
< td class = "vst-text" id = "module-sftp" >
<?php print __('SFTP Chroot') ?>
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_sftp" >
< ?
2015-11-03 01:07:41 +02:00
if($_SESSION['SFTPJAIL_KEY']){
2015-11-02 15:28:16 +02:00
echo '< option value = "cancel" > '.__('Disable and Cancel Licence').'< / option > ';
} else {
echo '< option value = "no" > '.__('no').'< / option > ';
}
?>
2015-11-03 01:07:41 +02:00
< option value = 'yes' < ? if ( $ _GET [ ' lead ' ] = = ' sftp ' | | $ _SESSION [ ' SFTPJAIL_KEY ' ] ! = ' ' ) echo ' selected = "selected" ' ; ? > ><?php print __('yes'); ?> < / option >
2015-11-02 15:28:16 +02:00
< / select >
< br > < br >
2015-11-03 01:07:41 +02:00
< div class = "sftp description" < ? if ( $ _GET [ ' lead ' ] ! = ' sftp ' & & ! $ _SESSION [ ' SFTPJAIL_KEY ' ] ) echo ' style = "display:none" ' ; ? > >
2015-11-02 15:28:16 +02:00
< ?
2015-11-03 01:07:41 +02:00
if($_GET['sftp_licence_key'] != '' || $_SESSION['SFTPJAIL_KEY']){
$licence_key = $_GET['sftp_licence_key'] != '' ? $_GET['sftp_licence_key'] : $_SESSION['SFTPJAIL_KEY'];
2015-11-04 00:21:11 +02:00
echo __('Restrict users so that they cannot use SSH and access only their home directory.').'
2015-11-02 15:28:16 +02:00
< div class = "licence" >
2016-11-22 07:05:19 -05:00
'.__('Licence Key').': < input type = "text" class = "vst-input" name = "v_sftp_licence" value = "'.htmlentities($licence_key).'" / > < br >
2015-11-02 15:28:16 +02:00
< / div > ';
} else {
2016-07-02 19:51:56 +09:00
echo
2015-11-04 00:21:11 +02:00
__('Restrict users so that they cannot use SSH and access only their home directory.').' '.__('This is a commercial module, you would need to purchace license key to enable it.').
'< div class = "licence" >
'.__('Enter License Key').': < input type = "text" class = "vst-input" name = "v_sftp_licence" / > < br >
2015-11-02 15:28:16 +02:00
< / div >
< ul >
< li >
2018-11-30 17:29:33 +02:00
< a href = "https://vestacp.com/checkout/2co.php?product_id=6&referer='.$_SERVER['HTTP_HOST'].'" class = "purchase" > '.__('Buy Licence').' 3$/'.__('month').'< / a >
2015-11-02 15:28:16 +02:00
< / li >
< li >
2019-02-25 16:08:40 +03:00
< a href = "https://vestacp.com/checkout/2co.php?product_id=9&referer='.$_SERVER['HTTP_HOST'].'" class = "purchase" > '.__('Buy Lifetime License').' 21$< / a >
2015-11-02 15:28:16 +02:00
< / li >
< / ul >
< span class = "twoco" > 2Checkout.com Inc. (Ohio, USA) is a payment facilitator for goods and services provided by vestacp.com.< / span > ';
}
?>
< / div >
< / td >
< / tr >
< tr >
< td class = "vst-text" id = "module-filemanager" >
2016-07-02 19:51:56 +09:00
<?php print __('File Manager') ?>
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_filemanager" >
2015-11-02 15:28:16 +02:00
< ?
if($_SESSION['FILEMANAGER_KEY']){
echo '< option value = "cancel" > '.__('Disable and Cancel Licence').'< / option > ';
} else {
echo '< option value = "no" > '.__('no').'< / option > ';
}
?>
< option value = 'yes' < ? if ( $ _GET [ ' lead ' ] = = ' filemanager ' | | $ _SESSION [ ' FILEMANAGER_KEY ' ] ) echo ' selected = "selected" ' ; ? > ><?php print __('yes'); ?> < / option >
2015-06-03 02:31:03 +03:00
< / select >
< br > < br >
2015-11-02 15:28:16 +02:00
< div class = "filemanager description" < ? if ( $ _GET [ ' lead ' ] ! = ' filemanager ' & & ! $ _SESSION [ ' FILEMANAGER_KEY ' ] ) echo ' style = "display:none" ' ; ? > >
< ?
if($_GET['filemanager_licence_key'] != '' || $_SESSION['FILEMANAGER_KEY']){
$licence_key = $_GET['filemanager_licence_key'] != '' ? $_GET['filemanager_licence_key'] : $_SESSION['FILEMANAGER_KEY'];
2015-11-04 00:21:11 +02:00
echo __('Browse, copy, edit, view, and retrieve all of your web domain files using fully featured File Manager.').
'< div class = "licence" >
2016-11-22 07:05:19 -05:00
'.__('Licence Key').': < input type = "text" class = "vst-input" name = "v_filemanager_licence" value = "'.htmlentities($licence_key).'" / > < br >
2015-11-02 15:28:16 +02:00
< / div > ';
} else {
2015-11-04 00:21:11 +02:00
echo __('Browse, copy, edit, view, and retrieve all of your web domain files using fully featured File Manager.').' '.
__('This is a commercial module, you would need to purchace license key to enable it.').
'< div class = "licence" >
2016-06-30 00:35:18 +03:00
'.__('Enter License Key').': < input type = "text" class = "vst-input" name = "v_filemanager_licence" / > < br >
2015-11-02 15:28:16 +02:00
< / div >
< ul >
< li >
2019-02-25 16:08:40 +03:00
< a href = "https://vestacp.com/checkout/2co.php?product_id=7&referer='.$_SERVER['HTTP_HOST'].'" class = "purchase" > '.__('Buy Licence').' 3$/'.__('month').'< / a >
2015-11-02 15:28:16 +02:00
< / li >
< li >
2019-02-25 16:08:40 +03:00
< a href = "https://vestacp.com/checkout/2co.php?product_id=8&referer='.$_SERVER['HTTP_HOST'].'" class = "purchase" > '.__('Buy Lifetime License').' 28$< / a >
2015-11-02 15:28:16 +02:00
< / li >
< / ul >
< span class = "twoco" > 2Checkout.com Inc. (Ohio, USA) is a payment facilitator for goods and services provided by vestacp.com.< / span > ';
}
?>
2015-10-05 23:32:25 +03:00
< / div >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
2017-12-21 12:19:01 +02:00
< tr >
< td class = "vst-text" id = "module-softaculous" >
<?php print __('Softaculous') ?>
< / td >
< / tr >
< tr >
< td >
< select class = "vst-list" name = "v_softaculous" >
< option value = 'no' > <?=__('no')?> < / option >
< option value = 'yes' < ? if ( $ _GET [ ' lead ' ] = = ' softaculous ' | | $ _SESSION [ ' SOFTACULOUS ' ] = = ' yes ' ) echo ' selected = "selected" ' ; ? > ><?=__('yes')?> < / option >
< / select >
< br > < br >
< div class = "softaculous description" < ? if ( $ _SESSION [ ' SOFTACULOUS ' ] ! = ' yes ' ) { ? > style="display:none" <? } ?> >
2017-12-21 19:18:00 +02:00
< h5 > * plugin installation will run in background< / h5 >
2017-12-21 12:19:01 +02:00
Softaculous is a great Auto Installer having 426 great scripts, 1115 PHP Classes
and we are still adding more. Softaculous is ideal for Web Hosting companies and
it could give a significant boost to your sales. These scripts cover most of the
uses a customer could ever have. We have covered a wide array of Categories so that
everyone could find the required script one would need to power their Web Site.
< ul >
< li >
< a href = "https://www.softaculous.com/softaculous/" class = "purchase" target = "_blank" > <?=__('Get Premium License')?> < / a >
< / li >
< / ul >
< / div >
< / td >
< / tr >
2015-06-03 02:31:03 +03:00
< / table >
< / td >
< / tr >
< / table >
< table class = "data-col2" >
< tr >
< td class = "step-top" width = "116px" >
2016-11-22 07:05:19 -05:00
< input type = "submit" class = "button" name = "save" value = "<?=__('Save')?>" >
2015-06-03 02:31:03 +03:00
< / td >
< td class = "step-top" >
2016-11-22 07:05:19 -05:00
< input type = "button" class = "button cancel" value = "<?=__('Back')?>" onclick = "<?=$back?>" >
2015-06-03 02:31:03 +03:00
< / td >
< / tr >
< / table >
< / td >
< / tr >
< / table >
< / form >
2017-04-25 13:23:56 -07:00
< / div >