<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']?>" />
            <input type="hidden" name="save" value="save" />

            <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">
                                    <?php print __('Hostname') ?>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <input type="text" size="20" class="vst-input" name="v_hostname" value="<?=htmlentities(trim($v_hostname, "'"))?>">
                                    <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";
                                            }
                                        ?>
                                    </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";
                                            }
                                        ?>
                                    </select>
                                </td>
                            </tr>
                            <tr>
                                <td class="vst-text step-top">	
									<?php print __('Default Port');?>
								</td>
                            </tr>
							<tr>
                                <td>
								<input type="text" size="20" class="vst-input" name="port" value="<?=htmlentities(trim($port, "'"))?>">
								<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">
                                        <?php if (!empty($_SESSION['PROXY_SYSTEM'])) { ?>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Proxy Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['PROXY_SYSTEM'] ?>/"><?=__('configure')?></a>
                                            </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>
                                        <?php } ?>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Web Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['WEB_SYSTEM'] ?>/"><?=__('configure')?></a>
                                            </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>
                                        <?php if (!empty($_SESSION['WEB_BACKEND'])) { ?>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Backend Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['WEB_BACKEND'] ?>/"><?=__('configure')?></a>
                                            </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>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Backend Pool Mode') ?>
                                            </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>

                                        <?php } ?>
                                    </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">
                                                <?php print __('DNS Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['DNS_SYSTEM'] ?>/"><?=__('configure')?></a>
                                            </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>
                                                    <option value='yes' <?php if($v_dns_cluster == 'yes') echo 'selected' ?> ><?php print __('yes'); ?></option>
                                                </select>
                                                <br><br><br>
                                            </td>
                                        </tr>
                                        <?php if ($v_dns_cluster = 'yes') {
                                                  $i = 0;
                                                  foreach ($dns_cluster as $key => $value) {
                                                      $i++;
                                         ?>
                                        <tr>
                                            <td class="vst-text step-left">
                                                <?php print __('Host'). ' #'.$i  ?>
                                            </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>
                                                <br><br>
                                            </td>
                                        </tr>
                                        <?php }} ?>
                                    </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">
                                                <?php print __('MAIL Server') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['MAIL_SYSTEM'] ?>/"><?=__('configure')?></a>
                                            </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>
                                        <?php if (!empty($_SESSION['ANTIVIRUS_SYSTEM'])) { ?>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Antivirus') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['ANTIVIRUS_SYSTEM'] ?>/"><?=__('configure')?></a>
                                            </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>
                                        <?php } ?>
                                        <?php if (!empty($_SESSION['ANTISPAM_SYSTEM'])) { ?>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('AntiSpam') ?> / <a class="generate" href="/edit/server/<? echo $_SESSION['ANTISPAM_SYSTEM'] ?>/"><?=__('configure')?></a>
                                            </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>
                                        <?php } ?>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Webmail URL') ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <input type="text" size="20" class="vst-input" name="v_mail_url" value="<?php echo $_SESSION['MAIL_URL']; ?>">
                                                <br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text input-label step-top">
                                                <label><input type="checkbox" size="20" class="vst-checkbox" name="v_mail_ssl_domain_checkbox"
                                                            <?php if(!empty($_SESSION['MAIL_CERTIFICATE'])) echo "checked=yes" ?>
                                                            onclick="javascript:elementHideShow('mail_ssl');">
                                                    <?php print __('Use Web Domain SSL Certificate');?>
                                                </label>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text input-label step-left">
                                                <table style="display:<?php if (empty($_SESSION['MAIL_CERTIFICATE'])) echo 'none';?> ;" id="mail_ssl">
                                                    <tr>
                                                        <td class="vst-text">
                                                            <?php print __('Domain') ?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <select class="vst-list" name="v_mail_ssl_domain">
                                                                <option value='' <?php if(empty($_SESSION['MAIL_CERTIFICATE'])) echo 'selected' ?>></option>
                                                                <?php
                                                                    foreach ($v_ssl_domains as $key => $value) {
                                                                        echo "\t\t\t\t<option value=\"".$value."\"";
                                                                        if ((!empty($_SESSION['MAIL_CERTIFICATE'])) && ( $value == $_SESSION['MAIL_CERTIFICATE'])){
                                                                            echo ' selected' ;
                                                                        }
                                                                        if ((!empty($_SESSION['MAIL_CERTIFICATE'])) && ( $value == $_POST['v_mail_certificate'])){
                                                                            echo ' selected' ;
                                                                        }
                                                                        echo ">".$value."</option>\n";
                                                                    }
                                                                ?>
                                                            </select>
                                                            <br><br>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <table class="additional-info">
                                                                <tr>
                                                                    <td>
                                                                        <?=__('SUBJECT')?>:
                                                                    </td>
                                                                    <td class="details">
                                                                        <?=$v_sys_ssl_subject?>
                                                                    </td>
                                                                </tr>
                                                                <? if($v_sys_ssl_aliases){?>
                                                                <tr>
                                                                    <td>
                                                                        <?=__('ALIASES')?>:
                                                                    </td>
                                                                    <td class="details">
                                                                        <?=$v_sys_ssl_aliases?>
                                                                    </td>
                                                                </tr>
                                                                <? } ?>
                                                                <tr>
                                                                    <td>
                                                                        <?=__('NOT_BEFORE')?>:
                                                                    </td>
                                                                    <td class="details">
                                                                        <?=$v_sys_ssl_not_before?>
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td>
                                                                        <?=__('NOT_AFTER')?>:
                                                                    </td>
                                                                    <td class="details">
                                                                        <?=$v_sys_ssl_not_after?>
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td>
                                                                        <?=__('SIGNATURE')?>:
                                                                    </td>
                                                                    <td class="details">
                                                                        <?=$v_sys_ssl_signature?>
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td>
                                                                        <?=__('PUB_KEY')?>:
                                                                    </td>
                                                                    <td class="details">
                                                                        <?=$v_sys_ssl_pub_key?>
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td>
                                                                        <?=__('ISSUER')?>:
                                                                    </td>
                                                                    <td class="details">
                                                                        <?=$v_sys_ssl_issuer?>
                                                                    </td>
                                                                </tr>
                                                            </table>
                                                        </td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </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">
                                    <table style="display:<?php if (empty($v_db_adv)) echo 'none';?> ;" id="db">
                                        <tr>
                                            <td class="vst-text input-label">
                                                <?php print __('MySQL Support');?> / <a class="generate" href="/edit/server/mysql/"><?=__('configure')?></a>
                                            </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">
                                                <?php print __('phpMyAdmin URL') ?>
                                            </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;
                                                  foreach ($v_mysql_hosts as $value) {
                                                      $i++;
                                         ?>
                                        <tr>
                                            <td class="vst-text step-left">
                                                <?php print __('Host'). ' #'.$i  ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="step-left">
                                                <input type="text" size="20" class="vst-input" name="v_mysql_host" value="<?=$value['HOST']?>" disabled>
                                                <br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text step-left">
                                                <?php print __('Password') ?>
                                            </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">
                                                <?php print __('Maximum Number Of Databases') ?>
                                            </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">
                                                <?php print __('Current Number Of Databases') ?>
                                            </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>
                                        <?php }} ?>


                                        <tr>
                                            <td class="vst-text input-label">
                                                <?php print __('PostgreSQL Support');?> / <a class="generate" href="/edit/server/postgresql/"><?=__('configure')?></a>
                                            </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">
                                                <?php print __('phpPgAdmin URL') ?>
                                            </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;
                                                  foreach ($v_pgsql_hosts as $value) {
                                                      $i++;
                                         ?>
                                        <tr>
                                            <td class="vst-text step-left">
                                                <?php print __('Host'). ' #'.$i  ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="step-left">
                                                <input type="text" size="20" class="vst-input" name="v_pgsql_host" value="<?=$value['HOST']?>" disabled>
                                                <br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text step-left">
                                                <?php print __('Maximum Number Of Databases') ?>
                                            </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">
                                                <?php print __('Current Number Of Databases') ?>
                                            </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>
                                            </td>
                                        </tr>
                                        <?php }} ?>
                                    </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">
                                                <?php print __('Local backup') ?>
                                            </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">
                                                <?php print __('Compression level') ?>
                                            </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">
                                                <?php print __('Directory') ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <input type="text" size="20" class="vst-input" name="v_backup_dir" value="<?=trim($v_backup_dir, "'")?>">
                                                <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">
                                                    <tr>
                                                        <td class="vst-text">
                                                            <?php print __('Protocol') ?>
                                                        </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">
                                                            <?php print __('Host') ?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <input type="text" size="20" class="vst-input" name="v_backup_host" value="<?=trim($v_backup_host, "'")?>">
                                                            <br><br>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td class="vst-text">
                                                            <?php print __('Username') ?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <input type="text" size="20" class="vst-input" name="v_backup_username" value="<?=trim($v_backup_username, "'")?>">
                                                            <br><br>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td class="vst-text">
                                                            <?php print __('Password') ?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <input type="text" size="20" class="vst-input" name="v_backup_password" value="<?=trim($v_backup_password, "'")?>">
                                                            <br><br>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td class="vst-text">
                                                            <?php print __('Directory') ?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <input type="text" size="20" class="vst-input" name="v_backup_bpath" value="<?=trim($v_backup_bpath, "'")?>">
                                                            <br><br>
                                                        </td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </table>
                                </td>
                            </tr>

                            <tr>
                                <td class="vst-text input-label step-top">
                                    <a href="javascript:elementHideShow('ssl');" class="vst-text">
                                        <b><?php print __('Vesta SSL');?><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 step-top">
                                                <label><input type="checkbox" size="20" class="vst-checkbox" name="v_web_ssl_domain_checkbox"
                                                            <?php if(!empty($_SESSION['VESTA_CERTIFICATE'])) echo "checked=yes" ?>
                                                            onclick="javascript:elementHideShow('domain_ssl');">
                                                    <?php print __('Use Web Domain SSL Certificate');?>
                                                </label>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text input-label step-left">
                                                <table style="display:<?php if (empty($_SESSION['VESTA_CERTIFICATE'])) echo 'none';?> ;" id="domain_ssl">
                                                    <tr>
                                                        <td class="vst-text">
                                                            <?php print __('Domain') ?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <select class="vst-list" name="v_web_ssl_domain">
                                                                <option value='' <?php if(empty($_SESSION['VESTA_CERTIFICATE'])) echo 'selected' ?>></option>
                                                                <?php
                                                                    foreach ($v_ssl_domains as $key => $value) {
                                                                        echo "\t\t\t\t<option value=\"".$value."\"";
                                                                        if ((!empty($_SESSION['VESTA_CERTIFICATE'])) && ( $value == $_SESSION['VESTA_CERTIFICATE'])){
                                                                            echo ' selected' ;
                                                                        }
                                                                        if ((!empty($_SESSION['VESTA_CERTIFICATE'])) && ( $value == $_POST['v_vesta_certificate'])){
                                                                            echo ' selected' ;
                                                                        }
                                                                        echo ">".$value."</option>\n";
                                                                    }
                                                                ?>
                                                            </select>
                                                            <br><br>
                                                        </td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>

                                        <tr>
                                            <td class="vst-text input-label">
                                                <?php print __('SSL Certificate');?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <textarea size="20" class="vst-textinput" name="v_sys_ssl_crt"><?=htmlentities(trim($v_sys_ssl_crt, "'"))?></textarea>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text input-label">
                                                <?php print __('SSL Key');?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <textarea size="20" class="vst-textinput" name="v_sys_ssl_key"><?=htmlentities(trim($v_sys_ssl_key, "'"))?></textarea>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <table class="additional-info">
                                                    <tr>
                                                        <td>
                                                            <?=__('SUBJECT')?>:
                                                        </td>
                                                        <td class="details">
                                                            <?=$v_sys_ssl_subject?>
                                                        </td>
                                                    </tr>
                                                    <? if($v_sys_ssl_aliases){?>
                                                    <tr>
                                                        <td>
                                                            <?=__('ALIASES')?>:
                                                        </td>
                                                        <td class="details">
                                                            <?=$v_sys_ssl_aliases?>
                                                        </td>
                                                    </tr>
                                                    <? } ?>
                                                    <tr>
                                                        <td>
                                                            <?=__('NOT_BEFORE')?>:
                                                        </td>
                                                        <td class="details">
                                                            <?=$v_sys_ssl_not_before?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <?=__('NOT_AFTER')?>:
                                                        </td>
                                                        <td class="details">
                                                            <?=$v_sys_ssl_not_after?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <?=__('SIGNATURE')?>:
                                                        </td>
                                                        <td class="details">
                                                            <?=$v_sys_ssl_signature?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <?=__('PUB_KEY')?>:
                                                        </td>
                                                        <td class="details">
                                                            <?=$v_sys_ssl_pub_key?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <?=__('ISSUER')?>:
                                                        </td>
                                                        <td class="details">
                                                            <?=$v_sys_ssl_issuer?>
                                                        </td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </table>
                                </td>
                            </tr>


                            <tr>
                                <td class="vst-text input-label step-top">
                                    <a href="javascript:elementHideShow('vesta');" class="vst-text">
                                        <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>
                                    </a>
                                </td>
                            </tr>
                            <tr>
                                <td class="vst-text input-label step-left">
                                    <table style="display:<?php if (empty($v_adv) && $_GET['lead'] != 'filemanager' && $_GET['lead'] != 'sftp') echo 'none';?> ;" id="vesta">
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Version') ?>
                                            </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>
                                            <td class="vst-text">
                                                <?php print __('FileSystem Disk Quota');?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <select class="vst-list" name="v_quota">
                                                    <option value='no'><?php print __('no'); ?></option>
                                                    <option value='yes' <?php if($_SESSION['DISK_QUOTA'] == 'yes') echo 'selected' ?> ><?php print __('yes'); ?></option>
                                                </select>
                                                <br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text input-label">
                                                <?php print __('Firewall');?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <select class="vst-list" name="v_firewall">
                                                    <option value='no'><?php print __('no'); ?></option>
                                                    <option value='yes' <?php if($_SESSION['FIREWALL_SYSTEM'] == 'iptables') echo 'selected' ?> ><?php print __('yes'); ?></option>
                                                </select>
                                                <br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Reseller Role') ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <select class="vst-list" name="v_reseller" disabled="disabled">
                                                    <option value='no'><?php print __('no'); ?></option>
                                                </select>
                                                <br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text">
                                                <?php print __('Backup Migration Manager') ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <select class="vst-list" name="v_backup_manager" disabled="disabled">
                                                    <option value='no'><?php print __('no'); ?></option>
                                                </select>
                                                <br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="vst-text" id="module-sftp">
                                                <?php print __('SFTP Chroot') ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <select class="vst-list" name="v_sftp">
                                                    <?
                                                        if($_SESSION['SFTPJAIL_KEY']){
                                                            echo '<option value="cancel">'.__('Disable and Cancel Licence').'</option>';
                                                        } else {
                                                            echo '<option value="no">'.__('no').'</option>';
                                                        }
                                                     ?>

                                                    <option value='yes' <? if($_GET['lead'] == 'sftp' || $_SESSION['SFTPJAIL_KEY'] != '') echo 'selected="selected"'; ?>><?php print __('yes'); ?></option>
                                                </select>
                                                <br><br>
                                                <div class="sftp description" <? if($_GET['lead'] != 'sftp' && !$_SESSION['SFTPJAIL_KEY']) echo 'style="display:none"'; ?>>
                                                    <?
                                                    if($_GET['sftp_licence_key'] != '' || $_SESSION['SFTPJAIL_KEY']){
                                                        $licence_key = $_GET['sftp_licence_key'] != '' ? $_GET['sftp_licence_key'] : $_SESSION['SFTPJAIL_KEY'];
                                                        echo __('Restrict users so that they cannot use SSH and access only their home directory.').'
                                                            <div class="licence">
                                                                '.__('Licence Key').': <input type="text" class="vst-input" name="v_sftp_licence" value="'.htmlentities($licence_key).'" /><br>
                                                            </div>';
                                                    } else {
                                                        echo
                                                            __('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>
                                                            </div>
                                                            <ul>
                                                                <li>
                                                                    <a href="https://vestacp.com/checkout/2co.php?product_id=6&referer='.$_SERVER['HTTP_HOST'].'" class="purchase">'.__('Buy Licence').' 3$/'.__('month').'</a>
                                                                </li>
                                                                <li>
                                                                    <a href="https://vestacp.com/checkout/2co.php?product_id=9&referer='.$_SERVER['HTTP_HOST'].'" class="purchase">'.__('Buy Lifetime License').' 18$</a>
                                                                </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">
                                                <?php print __('File Manager') ?>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <select class="vst-list" name="v_filemanager">
                                                    <?
                                                        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>
                                                </select>
                                                <br><br>
                                                <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'];
                                                        echo __('Browse, copy, edit, view, and retrieve all of your web domain files using fully featured File Manager.').
                                                            '<div class="licence">
                                                                '.__('Licence Key').': <input type="text" class="vst-input" name="v_filemanager_licence" value="'.htmlentities($licence_key).'" /><br>
                                                            </div>';
                                                    } else {
                                                        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">
                                                                '.__('Enter License Key').': <input type="text" class="vst-input" name="v_filemanager_licence" /><br>
                                                            </div>
                                                            <ul>
                                                                <li>
                                                                    <a href="https://vestacp.com/checkout/2co.php?product_id=7&referer='.$_SERVER['HTTP_HOST'].'" class="purchase">'.__('Buy Licence').' 3$/'.__('month').'</a>
                                                                </li>
                                                                <li>
                                                                    <a href="https://vestacp.com/checkout/2co.php?product_id=8&referer='.$_SERVER['HTTP_HOST'].'" class="purchase">'.__('Buy Lifetime License').' 28$</a>
                                                                </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-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" <? } ?>>
                                                    <h5>* plugin installation will run in background</h5>
                                                    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>

                                    </table>
                                </td>
                            </tr>
                        </table>


                        <table class="data-col2">
                            <tr>
                                <td class="step-top" width="116px">
                                    <input type="submit" class="button" name="save" value="<?=__('Save')?>">
                                </td>
                                <td class="step-top">
                                    <input type="button" class="button cancel" value="<?=__('Back')?>" onclick="<?=$back?>">
                                </td>
                            </tr>
                        </table>
                    </td>
                </tr>
            </table>
        </form>
    </div>