g(2030)); echo "
"; if( isset($fromAuto) && $fromAuto==true){ msg_info($l->g(2031)." ".$valUpd["tvalue"]." ".$l->g(2032)." (" . GUI_VER . "). ".$l->g(2033)); } if( isset($fromdbconfig_out) && $fromdbconfig_out==true) msg_info($l->g(2034)); if(!function_exists('session_start')) { msg_error($l->g(2035)); die(); } if(!function_exists('mysql_connect')) { msg_error($l->g(2037)); die(); } $warning_lbl=''; if(!function_exists('xml_parser_create')) { $warning_lbl.=$l->g(2036)."

"; } if(!function_exists('imagefontwidth')) { $warning_lbl.=$l->g(2038)."

"; } if(!function_exists('openssl_open')) { $warning_lbl.=$l->g(2039)."

"; } if ($warning_lbl != '') msg_warning($warning_lbl); $pms = "post_max_size"; $umf = "upload_max_filesize"; $valTpms = ini_get( $pms ); $valTumf = ini_get( $umf ); $valBpms = return_bytes( $valTpms ); $valBumf = return_bytes( $valTumf ); if( $valBumf>$valBpms ) $MaxAvail = trim(mb_strtoupper($valTpms),"M"); else $MaxAvail = trim(mb_strtoupper($valTumf),"M"); if( isset($_POST["name"])) { $link=dbconnect($_POST["host"],$_POST["name"],$_POST["pass"],$_POST["database"]); if(!is_resource($link) and $link != 'NO_DATABASE'){ $firstAttempt=false; msg_error($l->g(2001)." ".$l->g(249). " (".$l->g(2010)."=".$_POST["host"]. " ".$l->g(2011)."=".$_POST["name"]. " ".$l->g(2014)."=".$_POST["pass"]. ")
".$link); } else $instOk = true; } if( $hnd = @fopen(CONF_MYSQL, "r") ) { fclose($hnd); require(CONF_MYSQL); if (defined('COMPTE_BASE')) { // Upgrade from 2.0.x $valNme = COMPTE_BASE; } else if (isset($_SESSION["COMPTE_BASE"])) { // Upgrade from 1.3.x $valNme = $_SESSION["COMPTE_BASE"]; } else { // Fresh install $valNme = ''; } if (defined('PSWD_BASE')) { $valPass = PSWD_BASE; } else if (isset($_SESSION["PSWD_BASE"])) { $valPass = $_SESSION["PSWD_BASE"]; } else { $valPass = ''; } if (defined('SERVER_WRITE')) { $valServ = SERVER_WRITE; } else if (isset($_SESSION["SERVEUR_SQL"])) { $valServ = $_SESSION["SERVEUR_SQL"]; } else { $valServ = ''; } if (defined('DB_NAME')) { $valdatabase = DB_NAME; } else { // Upgrade from 1.3.x $valdatabase = 'ocsweb'; } } if( ! $instOk ) { require_once('require/function_table_html.php'); msg_info($l->g(2040) . " " . $MaxAvail . $l->g(1240) . "
" . $l->g(2041)."

".$l->g(2102).""); $form_name='fsub'; //echo "
"; $name_field=array("name","pass","database","host"); $tab_name= array($l->g(247).": ",$l->g(248).": ",$l->g(1233).":",$l->g(250).":"); $type_field= array(0,4,0,0); $value_field=array($valNme,$valPass,$valdatabase,$valServ); $tab_typ_champ=show_field($name_field,$type_field,$value_field); tab_modif_values($tab_name,$tab_typ_champ,$tab_hidden,$title="",$comment="",$name_button="INSTALL",$showbutton='BUTTON',$form_name); die(); } $msg_warning=""; if($firstAttempt==true && $_POST["pass"] == "") { $msg_warning.= $l->g(2042)."

"; } if(!mysql_query("set global max_allowed_packet=2097152;")) { $msg_warning.= $l->g(2043); } if ($msg_warning!="") msg_warning($msg_warning); mysql_select_db($_POST['database']); if(isset($_POST["label"])) { if($_POST["label"]!="") { @mysql_query( "DELETE FROM deploy WHERE NAME='label'"); $query = "INSERT INTO deploy VALUES('label','%s');"; $arg=$_POST["label"]; mysql2_query_secure($query,$link,$arg); //mysql_query($query) or die(mysql_error()); msg_info($l->g(2044)); } else { msg_info($l->g(2045)); } } if($_POST["fin"]=="fin") { // Configuration done, so try with account from config file if(!@mysql_connect($valServ,$valNme,$valPass)) { if(mysql_errno()==0) { echo "
" . $l->g(2043) . " " . $l->g(2044) . "
"; die(); } else echo "
" . $l->g(2043) . " (" . $l->g(2017) . " " . $l->g(2010) . "=" . $_POST["host"] . " " . $l->g(2011) . "=ocs " . $l->g(2014) . "=ocs)" . "
"; echo "
" . $l->g(2065) . "
"; unlink(CONF_MYSQL); } else { msg_success("" . $l->g(2050) . "

" . $l->g(2051) . ""); } die(); } if(!$ch = @fopen(CONF_MYSQL,"w")) { echo "
" . $l->g(2052) . "
"; die(); } //if you install ocs for the first time with root account //we create ocs/ocs if(!@mysql_connect($_POST['host'],$_POST["name"],$_POST['pass']) or ($_POST["name"] == 'root' and !mysql_query("USE ".$_POST['database']))) { $pass_connect='ocs'; $name_connect='ocs'; }else{ $name_connect=$_POST["name"]; $pass_connect=$_POST['pass']; } $error=""; $res = mysql_query("show databases like '" . $_POST['database'] . "'"); $val = mysql_fetch_array( $res ); if (!$val){ $db_file = "files/ocsbase_new.sql"; if (!mysql_query("CREATE DATABASE ".$_POST['database']." CHARACTER SET utf8 COLLATE utf8_bin;") or !mysql_query("USE ".$_POST['database']) or !mysql_query("GRANT ALL PRIVILEGES ON ".$_POST['database'].".* TO ".$name_connect." IDENTIFIED BY '".$pass_connect."'") or !mysql_query("GRANT ALL PRIVILEGES ON ".$_POST['database'].".* TO ".$name_connect."@localhost IDENTIFIED BY '".$pass_connect."'")) $error=mysql_errno(); }else{ $sql="SELECT DEFAULT_CHARACTER_SET_NAME FROM INFORMATION_SCHEMA.SCHEMATA where SCHEMA_NAME like '" . $_POST['database'] . "';"; $res = mysql_query($sql); $val = mysql_fetch_array( $res ); if ($val['DEFAULT_CHARACTER_SET_NAME'] == 'utf8') $db_file = "files/ocsbase_new.sql"; else $db_file = "files/ocsbase.sql"; } if ($error != "") $error= $l->g(2099)."

"; $dbf_handle = @fopen($db_file, "r"); if (!$dbf_handle) $error.= $l->g(2001) . " " . $db_file . " " . $l->g(2013); if ($error != ""){ msg_error($error); die(); }else{ echo "
" . $l->g(2053); flush(); $sql_query = fread($dbf_handle, filesize($db_file)); fclose($dbf_handle); $dejaLance=0; $li = 0; $data_sql=explode("--", $sql_query); foreach ($data_sql as $key=>$value){ if (strpos($value, ";") !== false){ $valuesql=explode(';', $value); $i=0; while (isset($valuesql[$i])){ $execute_sql[]=$valuesql[$i]; $i++; } } } foreach ( $execute_sql as $sql_line) { $li++; // echo $sql_line."
"; if(!mysql_query($sql_line)) { if( mysql_errno()==1062 || mysql_errno()==1061 || mysql_errno()==1065 || mysql_errno()==1060 || mysql_errno()==1054 || mysql_errno()==1091 || mysql_errno()==1061) continue; if( mysql_errno()==1071 ) { echo "
" . $l->g(2002) . " " . $li . ": ". $l->g(2015) . ":[" . $sql_line . "]" . $l->g(2054) . "
"; continue; } if(mysql_errno()==1007 || mysql_errno()==1050) { $dejaLance = 1; continue; } echo "
" . $l->g(2002) . " " . $li . ": " . $l->g(2015) . ":[" . $sql_line . "]" . $l->g(2009) . "
"; echo "" . $l->g(2003) . " " . mysql_error() . " (err:" . mysql_errno() . ")
"; $nberr++; } echo "."; flush(); } echo "
"; if(!$nberr&&!$dejaLance){ //update new lvlaccess $sql_up_accesslvl="select id,accesslvl,new_accesslvl from operators where new_accesslvl is null or new_accesslvl =''"; $result = mysql_query($sql_up_accesslvl) or die(mysql_error()); while($value=mysql_fetch_array($result)){ unset($new_lvl); if ($value['accesslvl'] == 1) $new_lvl='sadmin'; elseif ($value['accesslvl'] == 2) $new_lvl='ladmin'; elseif ($value['accesslvl'] == 3) $new_lvl='admin'; if (isset($new_lvl)){ $sql="UPDATE operators SET new_accesslvl='" . $new_lvl . "' where ID='" . $value['id'] . "'"; mysql_query($sql); } } msg_success($l->g(2055)); } } //$keepuser=1; // Provided user not MySQL Administror // Keep the account used for migration //echo "toto"; fwrite($ch,""); fclose($ch); echo "
" . $l->g(2056) . " (" . $l->g(2017) . " " . $name_connect . " " . $l->g(2007) . ")
"; /* else { // Use account created during installation fwrite($ch,""); fclose($ch); echo "
" . $l->g(2056) . " " . $l->g(2004) . "
"; }*/ if($dejaLance>0) echo "
" . $l->g(2057) . "
"; echo "
" . $l->g(2058); flush(); //TODO: dernieres tables $tableEngines = array("hardware"=>"InnoDB","accesslog"=>"InnoDB","bios"=>"InnoDB","memories"=>"InnoDB","slots"=>"InnoDB", "registry"=>"InnoDB","monitors"=>"InnoDB","ports"=>"InnoDB","storages"=>"InnoDB","drives"=>"InnoDB","inputs"=>"InnoDB", "modems"=>"InnoDB","networks"=>"InnoDB","printers"=>"InnoDB","sounds"=>"InnoDB","videos"=>"InnoDB","softwares"=>"InnoDB", "accountinfo"=>"InnoDB","netmap"=>"InnoDB","devices"=>"InnoDB", "locks"=>"HEAP"); $nbconv = 0; $erralter = false; foreach( $tableEngines as $tbl=>$eng ) { if( $res = mysql_query("show table status like '$tbl'") ) { $val = mysql_fetch_array( $res ); if( $val["Engine"] == $eng ) { echo "."; flush(); } else { $nbconv++; echo "."; flush(); if( ! $resAlter = mysql_query("ALTER TABLE $tbl engine='$eng'") ) { $nberr++; $erralter = true; echo "

" . $l->g(2059) . "
"; echo "mysql error: " . mysql_error() . " (err:" . mysql_errno() . ")
"; } } } else { echo "

" . $l->g(2060) . "
"; echo "mysql error: " . mysql_error() . " (err:" . mysql_errno() . ")
"; $nberr++; $erralter = true; } } $oneInnoFailed = false; $oneHeapFailed = false; foreach( $tableEngines as $tbl=>$eng ) { if( $res = mysql_query("show table status like '$tbl'") ) { $val = mysql_fetch_array( $res ); if( (strcasecmp($val["Engine"],$eng) != 0) && (strcasecmp($eng,"InnoDB") == 0) && $oneInnoFailed == false ) { echo "

" . $l->g(2061) . "
"; $oneInnoFailed = true; } if ( (strcasecmp($val["Engine"],$eng)!=0) && (strcasecmp($eng,"HEAP")) && (strcasecmp($val["Engine"],"MEMORY")!=0) && $oneHeapFailed == false ) { echo "

" . $l->g(2062) . "
"; $oneHeapFailed = true; } } else { echo "

" . $l->g(2060) . "
"; echo "mysql error: " . mysql_error() . " (err:" . mysql_errno() . ")
"; $nberr++; $erralter = true; } } if( ! $erralter ) { echo "

" . $l->g(2063) . " (" . $nbconv . " " . $l->g(2064) . ")" . "
"; } if($nberr) { echo "
" . $l->g(2065) . "
"; unlink(CONF_MYSQL); die(); } $nberr=0; $dir = "files"; $filenames = Array("ocsagent.exe"); $dejaLance=0; $filMin = ""; mysql_query("DELETE FROM deploy"); mysql_select_db($_POST['database']); foreach($filenames as $fil) { $filMin = $fil; if ( $ledir = @opendir("files")) { while($filename = readdir($ledir)) { if(strcasecmp($filename,$fil)==0 && strcmp($filename,$fil)!=0 ) { //echo "
$fil case is '$filename'
"; $fil = $filename; } } closedir($ledir); } else { echo "
" . $l->g(2066) . " " . $fil . " " . $l->g(2067) . "
"; } if($fd = @fopen($dir."/".$fil, "r")) { $contents = fread($fd, filesize ($dir."/".$fil)); fclose($fd); $binary = addslashes($contents); $query = "INSERT INTO deploy VALUES('$filMin','$binary');"; if(!mysql_query($query)) { if(mysql_errno()==1007 || mysql_errno()==1050 || mysql_errno()==1062) { $dejaLance++; continue; } if(mysql_errno()==2006) { echo "
" . $l->g(2001) . " " . $fil . " " . $l->g(2068) . "
"; echo "
" . $l->g(2065) . "
"; unlink(CONF_MYSQL); die(); } echo "
" . $l->g(2001) . " " . $fil . " " . $l->g(2012) . "
"; echo "" . $l->g(2003) . " " . mysql_error() . "
"; $nberr++; } } else { echo "
" . $l->g(2006) . " " . $dir . "/" . $fil . " " . $l->g(2070) . "
"; $errNorm = true; } } if($dejaLance>0) echo "
" . $l->g(2071) . "
"; if(!$nberr&&!$dejaLance&&!$errNorm) echo "
" . $l->g(2072) . "
"; mysql_query("DELETE FROM files"); $nbDeleted = mysql_affected_rows(); if( $nbDeleted > 0) echo "
" . $l->g(2073) . "
"; else echo "
" . $l->g(2074) . "
"; if($nberr) { echo "
" . $l->g(2065) . "
"; unlink(CONF_MYSQL); die(); } $row = 1; $handle = @fopen("subnet.csv", "r"); if( ! $handle ) { echo "
" . $l->g(2076) . "
"; } else { $errSub = 0; $resSub = 0; $dejSub = 0; echo "

" . $l->g(2077) . "
"; while (($data = fgetcsv($handle, 1000, ";")) !== FALSE) { $ipValide = "(([0-9]{1,3}\.){3}[0-9]{1,3})"; $masqueEntier = "([0-9]{1,3})"; $masqueValide = "(($ipValide|$masqueEntier)[ ]*$)"; $exp = $ipValide."[ ]*/[ ]*".$masqueValide; if( preg_match(":$exp:",$data[2],$res) ) { if( @mysql_query("INSERT INTO subnet(netid, name, id, mask) VALUES ('" . $res[1] . "','" . $data[0] . "','" . $data[1] . "','" . $res[4] . "')") ) { $resSub++; //echo "
//Network => name: ".$data[0]." ip: ".$res[1]." mask: ".$res[4]." id: ".$data[1]." successfully inserted
"; } else { if( mysql_errno() != 1062) { $errSub++; echo "
" . $l->g(2078) . " " . $data[0] . " " . $l->g(2079) . " " . mysql_errno() . ": " .mysql_error() . "
"; } else $dejSub++; } } else { $errSub++; echo "
" . $l->g(2080) . " " . $data[0] . " " . $l->g(2081) . ": " . $data[2] . ")
"; } } fclose($handle); echo "
" . $l->g(2005) . " => " . $resSub . " " . $l->g(2016) . ", " . "" . $dejSub . " " . $l->g(2019) . " , " . $errSub . " " . $l->g(2009) . "

"; } echo "
" . $l->g(2082) . "
"; flush(); $reqDej = "SELECT COUNT(id) as nbid FROM networks WHERE ipsubnet IS NOT NULL"; $resDej = mysql_query($reqDej) or die(mysql_error()); $valDej = mysql_fetch_array($resDej); $errNet = 0; $sucNet = 0; $dejNet = $valDej["nbid"]; $reqNet = "SELECT hardware_id, id, ipaddress, ipmask FROM networks WHERE ipsubnet='' OR ipsubnet IS NULL"; $resNet = mysql_query($reqNet) or die(mysql_error()); while ($valNet = mysql_fetch_array($resNet) ) { $netid = getNetFromIpMask( $valNet["ipaddress"], $valNet["ipmask"] ); if( !$netid || $valNet["ipaddress"]=="" || $valNet["ipmask"]=="" ) { $errNet++; } else { mysql_query("UPDATE networks SET ipsubnet='$netid' WHERE hardware_id='".$valNet["hardware_id"]."' AND id='".$valNet["id"]."'"); if( mysql_errno() != "") { $errNet++; echo "
" . $l->g(2083) . " " . $netid . " ," . $l->g(2008) . " " . mysql_errno() . ": " . mysql_error() . "
"; } else { $sucNet++; } } } echo "
" . $l->g(2084) . " => " . $sucNet . " " . $l->g(2016) . ", " . "" . $dejNet . " " . $l->g(2085) . ", " . $errNet . " " . $l->g(2086) . "
"; echo "
" . $l->g(2087) . "
"; flush(); $reqDej = "SELECT COUNT(mac) as nbid FROM netmap WHERE netid IS NOT NULL"; $resDej = mysql_query($reqDej) or die(mysql_error()); $valDej = mysql_fetch_array($resDej); $errNet = 0; $sucNet = 0; $dejNet = $valDej["nbid"]; $reqNet = "SELECT mac, ip, mask FROM netmap WHERE netid='' OR netid IS NULL"; $resNet = mysql_query($reqNet) or die(mysql_error()); while ($valNet = mysql_fetch_array($resNet) ) { $netid = getNetFromIpMask( $valNet["ip"], $valNet["mask"] ); if( !$netid || $valNet["ip"]=="" || $valNet["mask"]=="" ) { $errNet++; } else { mysql_query("UPDATE netmap SET netid= '$netid' WHERE mac='" . $valNet["mac"] . "' AND ip='" . $valNet["ip"] . "'"); if( mysql_errno() != "") { $errNet++; echo "
" . $l->g(2083) . " " . $netid . " ," . $l->g(2008) . " " . mysql_errno() . ": " . mysql_error() . "
"; } else { $sucNet++; } } } echo "
" . $l->g(2089) . " => " . $sucNet . " " . $l->g(2016) . ", " . "" . $dejNet . " " . $l->g(2085) . ", " . $errNet . " " . $l->g(2086) . "
"; //ORPH echo "
" . $l->g(2090); flush(); //TODO: orphelins dans nouvelle tables $tables=Array("accountinfo","bios","controllers","drives", "inputs","memories","modems","monitors","networks","ports","printers","registry", "slots","softwares","sounds","storages","videos","devices"); $cleanedNbr = 0; foreach( $tables as $laTable) { $reqSupp = "DELETE FROM $laTable WHERE hardware_id NOT IN (SELECT DISTINCT(id) FROM hardware)"; $resSupp = @mysql_query( $reqSupp ); if( mysql_errno() != "") { echo "

" . $l->g(2091) . " " . $laTable . ", " . $l->g(2008) . " " . mysql_errno() . ": " . mysql_error() . "
"; } else { if( $cleaned = mysql_affected_rows() ) $cleanedNbr += $cleaned; } echo "."; } echo "
" . $cleanedNbr . " " . $l->g(2092) . "
"; flush(); //NETMAP echo "
".$l->g(2093); flush(); $cleanedNbr = 0; $reqSupp = "DELETE FROM netmap WHERE netid NOT IN(SELECT DISTINCT(ipsubnet) FROM networks)"; $resSupp = @mysql_query( $reqSupp ); if( mysql_errno() != "") { echo "

" . $l->g(2094) . ", " . $l->g(2008) . " " . mysql_errno() . ": " . mysql_error() . "
"; } else { if( $cleaned = mysql_affected_rows() ) $cleanedNbr += $cleaned; } echo "
" . $cleanedNbr . " " . $l->g(2095) . "
"; flush(); /* echo "
Building software cache. Please wait...
"; flush(); mysql_query("TRUNCATE TABLE softwares_name_cache") or die(mysql_error()); mysql_query("INSERT INTO softwares_name_cache(name) SELECT DISTINCT name FROM softwares") or die(mysql_error()); echo "
Building registry cache. Please wait...
"; flush(); mysql_query("TRUNCATE TABLE registry_regvalue_cache") or die(mysql_error()); mysql_query("INSERT INTO registry_regvalue_cache(regvalue) SELECT DISTINCT regvalue FROM registry") or die(mysql_error()); */ function printEnTeteInstall($ent) { echo "
" . $ent . "
"; } ?>
g(2096) . "
(" . $l->g(2097) . ")"."


"?>