ftimme
2011-09-19 4ffb51e51f89a45256836fb55ad1c29f5e06beb2
install/lib/update.lib.php
@@ -79,6 +79,32 @@
   }
}
function checkDbHealth() {
   global $conf;
   //* Array containing non OK tables (can be repaired, crashed, corrupt)
   $notok = array();
   echo "Checking ISPConfig database .. ";
   exec("mysqlcheck -h '".$conf['mysql']['host']."' -u '".$conf['mysql']['admin_user']."' -p'".$conf['mysql']['admin_password']."' -r ".$conf["mysql"]["database"], $result);
   for( $i=0; $i<sizeof($result);$i++) {
      if ( substr($result[$i], -2) != "OK" ) {
         $notok[] = $result[$i];
      }
   }
   if ( sizeof($notok) > 0 ) {
      echo "\nSome tables where not 'OK'. Please check the list below.\n\n";
      foreach ($notok as $key => $value) {
         echo "$value\n";
      }
      echo "\nPress enter to continue or CTRL-C to cancel the installation ..";
      sread();
   }
   else
     echo "OK\n";
}
function updateDbAndIni() {
   global $inst, $conf;
@@ -95,10 +121,22 @@
   $conf['services']['file'] = ($tmp['file_server'] == 1)?true:false;
   $conf['services']['db'] = ($tmp['db_server'] == 1)?true:false;
   $conf['services']['vserver'] = ($tmp['vserver_server'] == 1)?true:false;
   $conf['services']['proxy'] = ($tmp['proxy_server'] == 1)?true:false;
   $conf['services']['firewall'] = ($tmp['firewall_server'] == 1)?true:false;
   $conf['services']['proxy'] = (isset($tmp['proxy_server']) && $tmp['proxy_server'] == 1)?true:false;
   $conf['services']['firewall'] = (isset($tmp['firewall_server']) && $tmp['firewall_server'] == 1)?true:false;
   
   $conf['postfix']['vmail_mailbox_base'] = $ini_array['mail']['homedir_path'];
   if($ini_array['web']['server_type'] != ''){
      $conf['webserver']['server_type'] = $ini_array['web']['server_type'];
      if($conf['webserver']['server_type'] == 'nginx'){
         $conf['apache']['installed'] = false;
      } else {
         $conf['nginx']['installed'] = false;
      }
   } else {
      $conf['webserver']['server_type'] = 'apache';
      $conf['nginx']['installed'] = false;
   }
   
   //* Do incremental DB updates only on installed ISPConfig versions > 3.0.3
   if(compare_ispconfig_version('3.0.3',ISPC_APP_VERSION) >= 0) {
@@ -200,8 +238,6 @@
   
   //* Update further distribution specific parameters for server config here
   //* HINT: Every line added here has to be added in installer_base.lib.php too!!
   $tpl_ini_array['web']['vhost_conf_dir'] = $conf['apache']['vhost_conf_dir'];
   $tpl_ini_array['web']['vhost_conf_enabled_dir'] = $conf['apache']['vhost_conf_enabled_dir'];
   $tpl_ini_array['jailkit']['jailkit_chroot_app_programs'] = $conf['jailkit']['jailkit_chroot_app_programs'];
   $tpl_ini_array['fastcgi']['fastcgi_phpini_path'] = $conf['fastcgi']['fastcgi_phpini_path'];
   $tpl_ini_array['fastcgi']['fastcgi_starter_path'] = $conf['fastcgi']['fastcgi_starter_path'];
@@ -223,6 +259,20 @@
   $tpl_ini_array['dns']['bind_zonefiles_dir'] = $conf['bind']['bind_zonefiles_dir'];
   $tpl_ini_array['dns']['named_conf_path'] = $conf['bind']['named_conf_path'];
   $tpl_ini_array['dns']['named_conf_local_path'] = $conf['bind']['named_conf_local_path'];
   if ($conf['nginx']['installed'] == true) {
      $tpl_ini_array['web']['nginx_vhost_conf_dir'] = $conf['nginx']['vhost_conf_dir'];
      $tpl_ini_array['web']['nginx_vhost_conf_enabled_dir'] = $conf['nginx']['vhost_conf_enabled_dir'];
      $tpl_ini_array['web']['nginx_user'] = $conf['nginx']['user'];
      $tpl_ini_array['web']['nginx_group'] = $conf['nginx']['group'];
      $tpl_ini_array['web']['nginx_cgi_socket'] = $conf['nginx']['cgi_socket'];
      $tpl_ini_array['web']['php_fpm_init_script'] = $conf['nginx']['php_fpm_init_script'];
      $tpl_ini_array['web']['php_fpm_ini_path'] = $conf['nginx']['php_fpm_ini_path'];
      $tpl_ini_array['web']['php_fpm_pool_dir'] = $conf['nginx']['php_fpm_pool_dir'];
      $tpl_ini_array['web']['php_fpm_start_port'] = $conf['nginx']['php_fpm_start_port'];
      $tpl_ini_array['web']['server_type'] = 'nginx';
      $tpl_ini_array['global']['webserver'] = 'nginx';
   }
   // update the new template with the old values
   if(is_array($old_ini_array)) {