衆所周知,dedecms在第一次運行時會檢測是否安裝,若是沒有,則自動跳轉到安裝界面,進行用戶友好的安裝步驟,下面咱們就來從源碼看看這一切是如何完成的。php
默認服務器配置入口文件是index.html,index.php等,織夢uploads文件夾中僅有index.php,遂直接運行index.php文件啊,源碼以下:html
<?php /** 1. @version $Id: index.php 1 9:23 2010-11-11 tianya $ 2. @package DedeCMS.Site 3. @copyright Copyright (c) 2007 - 2010, DesDev, Inc. 4. @license http://help.dedecms.com/usersguide/license.html 5. @link http://www.dedecms.com */ if(!file_exists(dirname(__FILE__).'/data/common.inc.php')) { header('Location:install/index.php'); exit(); } //自動生成HTML版 if(isset($_GET['upcache']) || !file_exists('index.html')) { require_once (dirname(__FILE__) . "/include/common.inc.php"); require_once DEDEINC."/arc.partview.class.php"; $GLOBALS['_arclistEnv'] = 'index'; $row = $dsql->GetOne("Select * From `#@__homepageset`"); $row['templet'] = MfTemplet($row['templet']); $pv = new PartView(); $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']); $row['showmod'] = isset($row['showmod'])? $row['showmod'] : 0; if ($row['showmod'] == 1) { $pv->SaveToHtml(dirname(__FILE__).'/index.html'); include(dirname(__FILE__).'/index.html'); exit(); } else { $pv->Display(); exit(); } } else { header('HTTP/1.1 301 Moved Permanently'); header('Location:index.html'); } ?>
縱觀整個文件,其中代碼大概分紅了兩部分:mysql
判斷是存在全局配置文件(是否安裝)web
判斷根目錄是否存在index.html文件,沒有則生成sql
具體請看下面帶有註釋的代碼:數據庫
<?php /** * @version $Id: index.php 1 9:23 2010-11-11 tianya $ * @package DedeCMS.Site * @copyright Copyright (c) 2007 - 2010, DesDev, Inc. * @license http://help.dedecms.com/usersguide/license.html * @link http://www.dedecms.com */ /** * 這裏是判斷data文件夾下是否存在common.inc.php全局配置文件 * 程序初始未安裝狀態下,這個文件是沒有的 * 那麼若是檢測到不存在,則會跳轉到根目錄下的install文件夾下,執行index.php文件 */ if(!file_exists(dirname(__FILE__).'/data/common.inc.php')) { header('Location:install/index.php'); // 不存在則跳轉 exit(); // 終止 } //自動生成HTML版 /** * 判斷是否接收到upcache參數,若是接收到,說明當前正處於調試預覽模式,直接運行php * 判斷本地index.html文件是否存在,若是不存在則直接運行php * */ if(isset($_GET['upcache']) || !file_exists('index.html')) { // 包含全局配置文件 require_once (dirname(__FILE__) . "/include/common.inc.php"); // 載入視圖類文件 require_once DEDEINC."/arc.partview.class.php"; // 設置全局變量 $GLOBALS['_arclistEnv'] = 'index'; // 查詢homepageset表(#@是前綴,會通過替換) $row = $dsql->GetOne("Select * From `#@__homepageset`"); // 模板目錄規則 $row['templet'] = MfTemplet($row['templet']); // 建立視圖對象 $pv = new PartView(); // 設置要解析的模板 $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']); // 這裏接收的應該是模塊參數,方便後面進行判斷 $row['showmod'] = isset($row['showmod'])? $row['showmod'] : 0; // 判斷當前模塊 if ($row['showmod'] == 1) { // 生成index.html文件 $pv->SaveToHtml(dirname(__FILE__).'/index.html'); // 生成後包含進來(注意不是跳轉哦) include(dirname(__FILE__).'/index.html'); // 終止 exit(); } else { // 直接執行 $pv->Display(); // 終止 exit(); } } else { // 設置301header跳啊轉 header('HTTP/1.1 301 Moved Permanently'); // 跳轉進入index.html頁面 header('Location:index.html'); } ?>
好,index.php入口文件咱們從上面的註釋中已經可以大概明白他的內容和做用了,下面就順着安裝步驟找安裝文文件install/index.php吧,因爲這個文件內容太多,源碼我就不放了,直接放上我註釋過的源碼內容:數組
<?php /** * @version $Id: index.php 1 13:41 2010年7月26日Z tianya $ * @package DedeCMS.Install * @copyright Copyright (c) 2007 - 2010, DesDev, Inc. * @license http://help.dedecms.com/usersguide/license.html * @link http://www.dedecms.com */ // 設置超時時間-永不超時 @set_time_limit(0); //error_reporting(E_ALL); // 設置報錯等級-顯示除了notice警告以外的全部錯誤 error_reporting(E_ALL || ~E_NOTICE); // 定義版本信息 $verMsg = ' V5.7 GBKSP1'; // 定義語言編碼信息 $s_lang = 'gb2312'; // 定義默認數據庫名稱 $dfDbname = 'dedecmsv57gbksp1'; // 錯誤信息,默認爲空 $errmsg = ''; // 定義數據體驗包名稱 $install_demo_name = 'dedev57demo.txt'; // 安裝鎖文件名稱 $insLockfile = dirname(__FILE__).'/install_lock.txt'; // 定義模型臨時配置文件 $moduleCacheFile = dirname(__FILE__).'/modules.tmp.inc'; // 定義程序配置文件路徑常量 define('DEDEINC',dirname(__FILE__).'/../include'); // 定義程序數據文件路徑常量 define('DEDEDATA',dirname(__FILE__).'/../data'); // 定義程序根目錄路徑常量啊 define('DEDEROOT',preg_replace("#[\\\\\/]install#", '', dirname(__FILE__))); // 設置編碼-根據上面定義的$s_lang顯示 header("Content-Type: text/html; charset={$s_lang}"); // 包含進入安裝配置文件-主要包含一些函數方法 require_once(DEDEROOT.'/install/install.inc.php'); // 包含進入zip壓縮類文件 require_once(DEDEINC.'/zip.class.php'); // 遍歷三個超全局變量鍵名 foreach(Array('_GET','_POST','_COOKIE') as $_request) { // 過濾超全局變量值內容-若是get_magic_quotes_gpc沒有開啓,則使用addslashes進行轉義,而且直接按照表單過來的name名稱做爲變量名稱 foreach($$_request as $_k => $_v) ${$_k} = RunMagicQuotes($_v); } // 包含進入系統核心函數文件 require_once(DEDEINC.'/common.func.php'); // 檢測安裝鎖文件是否已經存在,若是存在終止程序執行,並提示文件已經安裝 if(file_exists($insLockfile)) { exit(" 程序已運行安裝,若是你肯定要從新安裝,請先從FTP中刪除 install/install_lock.txt!"); } // 初始化文件安裝步驟 if(empty($step)) { $step = 1; } /*------------------------ 使用協議書 function _1_Agreement() ------------------------*/ // 若是爲第一步,則引入使用協議書頁面 if($step==1) { // 引入第一個頁面(使用協議書) include('./templates/step-1.html'); // 終止當前執行 exit(); } /*------------------------ 環境測試 function _2_TestEnv() ------------------------*/ // 若是爲第二部,則引入環境測試頁面 else if($step==2) { // 獲取php版本 $phpv = phpversion(); // 獲取當前操做系統類型 $sp_os = PHP_OS; // 得到GD的版本 $sp_gd = gdversion(); // 獲取服務器標識的字串 $sp_server = $_SERVER['SERVER_SOFTWARE']; // 獲取當前host-若是ip不存在,則直接獲取主機名,不然爲ip $sp_host = (empty($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_HOST'] : $_SERVER['REMOTE_ADDR']); // 獲取當前服務器主機名稱 $sp_name = $_SERVER['SERVER_NAME']; // 獲取當前配置最大執行時間 $sp_max_execution_time = ini_get('max_execution_time'); // 獲取當前在函數調用時參數被按照引用傳遞時是否發出警告-php5.4以上已經移除 $sp_allow_reference = (ini_get('allow_call_time_pass_reference') ? '<font color=green>[√]On</font>' : '<font color=red>[×]Off</font>'); // 獲取當前是否 URL 形式的 fopen 封裝協議 $sp_allow_url_fopen = (ini_get('allow_url_fopen') ? '<font color=green>[√]On</font>' : '<font color=red>[×]Off</font>'); // 獲取當前是否已經打開php的安全模式 $sp_safe_mode = (ini_get('safe_mode') ? '<font color=red>[×]On</font>' : '<font color=green>[√]Off</font>'); // 獲取當前是否打開gd庫 $sp_gd = ($sp_gd>0 ? '<font color=green>[√]On</font>' : '<font color=red>[×]Off</font>'); // 獲取當前是否打開mysql擴展 $sp_mysql = (function_exists('mysql_connect') ? '<font color=green>[√]On</font>' : '<font color=red>[×]Off</font>'); // 判斷並定義mysql錯誤 if($sp_mysql=='<font color=red>[×]Off</font>') $sp_mysql_err = TRUE; else $sp_mysql_err = FALSE; // 定義測試目錄 $sp_testdirs = array( '/', '/plus/*', '/dede/*', '/data/*', '/a/*', '/install', '/special', '/uploads/*' ); // 包含第二部文件 include('./templates/step-2.html'); // 終止本次執行 exit(); } /*------------------------ 設置參數 function _3_WriteSeting() ------------------------*/ // 第三部設置參數 else if($step==3) { // 取得當前URL的 路徑地址 if(!empty($_SERVER['REQUEST_URI'])) $scriptName = $_SERVER['REQUEST_URI']; // 若是存在,則直接寫入 else $scriptName = $_SERVER['PHP_SELF']; // 獲取正在執行腳本的文件名 // 經過正則替換,得到基礎目錄-根目錄路徑 $basepath = preg_replace("#\/install(.*)$#i", '', $scriptName); // 獲取當前請求的 Host: 頭部的內容。 if(!empty($_SERVER['HTTP_HOST'])) $baseurl = 'http://'.$_SERVER['HTTP_HOST']; // 存在則寫入 else $baseurl = "http://".$_SERVER['SERVER_NAME']; // 獲取服務器主機的名稱 // 大小寫字母和阿拉伯數字 $chars='abcdefghigklmnopqrstuvwxwyABCDEFGHIGKLMNOPQRSTUVWXWY0123456789'; // 隨機cookie編碼 $rnd_cookieEncode=''; // 隨機長度 $length = rand(28,32); // $chars最大長度 $max = strlen($chars) - 1; // 按隨機生成的長度進行for循環 for($i = 0; $i < $length; $i++) { // 每次存入$chars中一個隨機字符 $rnd_cookieEncode .= $chars[mt_rand(0, $max)]; } // 初始化數據體驗包爲關閉 $isdemosign = 0; // 判斷若是存在初始化體驗包的文件,則數據體驗包設置爲開啓 if(file_exists($install_demo_name) && file_get_contents($install_demo_name)) $isdemosign = 1; // 定義數據模塊目錄 $module_local = DEDEDATA.'/module/'; // 包含第三個頁面文件 include('./templates/step-3.html'); // 終止執行 exit(); } /*------------------------ 普通安裝 function _4_Setup() ------------------------*/ // 進入普通安裝步驟 else if($step==4) { // 按照用戶輸入鏈接mysql數據庫 $conn = mysql_connect($dbhost,$dbuser,$dbpwd) or die("<script>alert('數據庫服務器或登陸密碼無效,\\n\\n沒法鏈接數據庫,請從新設定!');history.go(-1);</script>"); // 若是數據庫不存在,則建立數據庫 mysql_query("CREATE DATABASE IF NOT EXISTS `".$dbname."`;",$conn); // 選擇數據庫 mysql_select_db($dbname, $conn) or die("<script>alert('選擇數據庫失敗,多是你沒權限,請預先建立一個數據庫!');history.go(-1);</script>"); //得到數據庫版本信息 $rs = mysql_query("SELECT VERSION();",$conn); // 從結果集中取得一行做爲數組 $row = mysql_fetch_array($rs); // 按.分割 $mysqlVersions = explode('.',trim($row[0])); // 重組,只要前兩個主要和次要版本便可 $mysqlVersion = $mysqlVersions[0].".".$mysqlVersions[1]; // 設置字符集 mysql_query("SET NAMES '$dblang',character_set_client=binary,sql_mode='';",$conn); // 建立全局配置文件 $fp = fopen(dirname(__FILE__)."/common.inc.php","r"); // 讀取全局配置文件 $configStr1 = fread($fp,filesize(dirname(__FILE__)."/common.inc.php")); // 關閉文件資源 fclose($fp); // 打開安裝配置緩存文件 $fp = fopen(dirname(__FILE__)."/config.cache.inc.php","r"); // 讀取安裝配置緩存文件 $configStr2 = fread($fp,filesize(dirname(__FILE__)."/config.cache.inc.php")); // 關閉資源 fclose($fp); //common.inc.php 定義部分須要寫入全局配置文件的內容 $configStr1 = str_replace("~dbhost~",$dbhost,$configStr1); $configStr1 = str_replace("~dbname~",$dbname,$configStr1); $configStr1 = str_replace("~dbuser~",$dbuser,$configStr1); $configStr1 = str_replace("~dbpwd~",$dbpwd,$configStr1); $configStr1 = str_replace("~dbprefix~",$dbprefix,$configStr1); $configStr1 = str_replace("~dblang~",$dblang,$configStr1); // 設置根目錄data目錄權限 @chmod(DEDEDATA,0777); // 打開全局配置文件(建立),若是沒法建立,則說明目錄沒有寫入權限 $fp = fopen(DEDEDATA."/common.inc.php","w") or die("<script>alert('寫入配置失敗,請檢查../data目錄是否可寫入!');history.go(-1);</script>"); // 將自帶的緩存配置文件中部分相應內容寫入全局配置文件中 fwrite($fp,$configStr1); // 關閉文件資源 fclose($fp); //config.cache.inc.php // CMS安裝目錄,匹配至少一個/ $cmspath = trim(preg_replace("#\/{1,}#", '/', $cmspath)); // 若是匹配到了至少一個/並且也沒有匹配到以/開頭的(加上/,即加上根目錄) if($cmspath!='' && !preg_match("#^\/#", $cmspath)) $cmspath = '/'.$cmspath; // 若是cms路徑爲空,則indexUrl爲/ if($cmspath=='') $indexUrl = '/'; // 不然indexUrl等於cms路徑 else $indexUrl = $cmspath; // 從安裝配置緩存文件中讀取部分配置用於後面寫入 $configStr2 = str_replace("~baseurl~",$baseurl,$configStr2); $configStr2 = str_replace("~basepath~",$cmspath,$configStr2); $configStr2 = str_replace("~indexurl~",$indexUrl,$configStr2); $configStr2 = str_replace("~cookieEncode~",$cookieencode,$configStr2); $configStr2 = str_replace("~webname~",$webname,$configStr2); $configStr2 = str_replace("~adminmail~",$adminmail,$configStr2); // 建立data目錄下的緩存配置文件 $fp = fopen(DEDEDATA.'/config.cache.inc.php','w'); // 寫入 fwrite($fp,$configStr2); // 關閉資源 fclose($fp); // 建立data目錄下的緩存配置備份文件 $fp = fopen(DEDEDATA.'/config.cache.bak.php','w'); // 寫入 fwrite($fp,$configStr2); // 關閉資源 fclose($fp); // 檢測mysql版本是否大於4.1 if($mysqlVersion >= 4.1) { // 若是大於,則將引擎設置爲MyISAM,字符集設置爲$dblanag內容 $sql4tmp = "ENGINE=MyISAM DEFAULT CHARSET=".$dblang; } //建立數據表 // 初始化定義變量 $query = ''; // 以只讀方式打開數據表文件 $fp = fopen(dirname(__FILE__).'/sql-dftables.txt','r'); // while循環-若是文件沒有到達末尾 則執行while中的代碼 while(!feof($fp)) { // 從文件指針中讀取一行,並去除首尾空格 $line = rtrim(fgets($fp,1024)); // 正則匹配出;號 if(preg_match("#;$#", $line)) { // 將每行末尾加上\n換行符 $query .= $line."\n"; // 將#@__替換成數據庫表前綴 $query = str_replace('#@__',$dbprefix,$query); // 若是數據庫版本小於4.1的狀況下 if($mysqlVersion < 4.1) { // 直接執行查詢 $rs = mysql_query($query,$conn); } else { // 不然匹配出query中是否存在create建立語句 if(preg_match('#CREATE#i', $query)) { // 若是有,則將其中的TYPE=MyISAM替換成上面定義的$sql4tmp內容,而且執行建立 $rs = mysql_query(preg_replace("#TYPE=MyISAM#i",$sql4tmp,$query),$conn); } else { // 不然直接執行 $rs = mysql_query($query,$conn); } } // while末尾,清空$query,方便下一次存入數據 $query=''; } else if(!preg_match("#^(\/\/|--)#", $line)) { // 正則匹配是否存在//或者--,若是不存在,則賦值$query,方便下一次鏈接執行 $query .= $line; } } // 關閉文件資源 fclose($fp); //導入默認數據 // 初始化定義變量 $query = ''; // 以只讀方式打開數據表內容文件 $fp = fopen(dirname(__FILE__).'/sql-dfdata.txt','r'); // while循環-若是文件沒有到達末尾 則執行while中的代碼 while(!feof($fp)) { // 讀取第一行,並清空兩邊空格 $line = rtrim(fgets($fp, 1024)); // 正則匹配;號 if(preg_match("#;$#", $line)) { // 接入 $query .= $line; // 替換前綴符號 $query = str_replace('#@__',$dbprefix,$query); // 若是mysql版本小於4.1,直接執行 if($mysqlVersion < 4.1) $rs = mysql_query($query,$conn); // 不然將文件中的lang換成$dblang內容 else $rs = mysql_query(str_replace('#~lang~#',$dblang,$query),$conn); // 重置 $query $query=''; } else if(!preg_match("#^(\/\/|--)#", $line)) { // 不到末尾,繼續拼接 $query .= $line; } } // 關閉資源 fclose($fp); //更新配置 // 下面是按照頁面中的變量,更新剛纔插入數據庫中的一些數據 $cquery = "Update `{$dbprefix}sysconfig` set value='{$baseurl}' where varname='cfg_basehost';"; mysql_query($cquery,$conn); $cquery = "Update `{$dbprefix}sysconfig` set value='{$cmspath}' where varname='cfg_cmspath';"; mysql_query($cquery,$conn); $cquery = "Update `{$dbprefix}sysconfig` set value='{$indexUrl}' where varname='cfg_indexurl';"; mysql_query($cquery,$conn); $cquery = "Update `{$dbprefix}sysconfig` set value='{$cookieencode}' where varname='cfg_cookie_encode';"; mysql_query($cquery,$conn); $cquery = "Update `{$dbprefix}sysconfig` set value='{$webname}' where varname='cfg_webname';"; mysql_query($cquery,$conn); $cquery = "Update `{$dbprefix}sysconfig` set value='{$adminmail}' where varname='cfg_adminemail';"; mysql_query($cquery,$conn); //增長管理員賬號 $adminquery = "INSERT INTO `{$dbprefix}admin` VALUES (1, 10, '$adminuser', '".substr(md5($adminpwd),5,20)."', 'admin', '', '', 0, '".time()."', '127.0.0.1');"; mysql_query($adminquery,$conn); //關連前臺會員賬號 $adminquery = "INSERT INTO `{$dbprefix}member` (`mid`,`mtype`,`userid`,`pwd`,`uname`,`sex`,`rank`,`money`,`email`, `scores` ,`matt` ,`face`,`safequestion`,`safeanswer` ,`jointime` ,`joinip` ,`logintime` ,`loginip` ) VALUES ('1','我的','$adminuser','".md5($adminpwd)."','$adminuser','男','100','0','','10000','10','','0','','".time()."','','0',''); "; mysql_query($adminquery,$conn); $adminquery = "INSERT INTO `{$dbprefix}member_person` (`mid`,`onlynet`,`sex`,`uname`,`qq`,`msn`,`tel`,`mobile`,`place`,`oldplace`,`birthday`,`star`, `income` , `education` , `height` , `bodytype` , `blood` , `vocation` , `smoke` , `marital` , `house` ,`drink` , `datingtype` , `language` , `nature` , `lovemsg` , `address`,`uptime`) VALUES ('1', '1', '男', '{$adminuser}', '', '', '', '', '0', '0','1980-01-01', '1', '0', '0', '160', '0', '0', '0', '0', '0', '0','0', '0', '', '', '', '','0'); "; mysql_query($adminquery,$conn); $adminquery = "INSERT INTO `{$dbprefix}member_tj` (`mid`,`article`,`album`,`archives`,`homecount`,`pagecount`,`feedback`,`friend`,`stow`) VALUES ('1','0','0','0','0','0','0','0','0'); "; mysql_query($adminquery,$conn); $adminquery = "Insert Into `{$dbprefix}member_space`(`mid` ,`pagesize` ,`matt` ,`spacename` ,`spacelogo` ,`spacestyle`, `sign` ,`spacenews`) Values('1','10','0','{$adminuser}的空間','','person','',''); "; mysql_query($adminquery,$conn); //安裝體驗數據 if($installdemo == 1) { // 獲取體驗數據內容 if($setupsql = file_get_contents($install_demo_name)) { // 替換引擎 $setupsql = preg_replace("#ENGINE=MyISAM#i", 'TYPE=MyISAM', $setupsql); // 定義大於4.1時的建立sql $sql41tmp = 'ENGINE=MyISAM DEFAULT CHARSET='.$cfg_db_language; if($mysql_version >= 4.1) { // 若是mysql版本大於4.1,則執行此替換 $setupsql = preg_replace("#TYPE=MyISAM#i", $sql41tmp, $setupsql); } // 替換rooturl $setupsql = preg_replace("#_ROOTURL_#i", $rooturl, $setupsql); // 替換換行符 $setupsql = preg_replace("#[\r\n]{1,}#", "\n", $setupsql); // 替換表前綴 $setupsql = preg_replace('/#@__/i',$dbprefix,$setupsql); // 按製表符分割 $sqls = preg_split("#;[ \t]{0,}\n#", $setupsql); // 遍歷執行sql代碼 foreach($sqls as $sql) { if(trim($sql)!='') mysql_query($sql,$conn); } // 更新欄目緩存 UpDateCatCache(); } else { // 沒有體驗包,提示下載 die("沒有體驗數據包文件,請檢查是否下載."); } } //不安裝任何可選模塊 if(!isset($modules) || !is_array($modules)) { //鎖定安裝程序 // 開始建立鎖文件 $fp = fopen($insLockfile,'w'); // 寫入內容ok fwrite($fp,'ok'); // 關閉資源 fclose($fp); // 包含最後提示文件內容 include('./templates/step-5.html'); // 終止程序執行,若是不安裝模塊,則程序到此結束 exit(); } else // 安裝模塊 { // 按照逗號分割模塊 $module = join(',',$modules); // 以寫入形式打開模塊緩存文件 $fp = fopen($moduleCacheFile,'w'); // 寫入 <?php fwrite($fp,'<'.'?php'."\r\n"); // 寫入模塊 fwrite($fp,'$selModule = "'.$module.'"; '."\r\n"); // 寫入結束標記 fwrite($fp,'?'.'>'); //若是不能寫入緩存文件,退出模塊安裝 if(!$fp) // 若是沒法寫入 { //鎖定安裝程序 $fp = fopen($insLockfile,'w'); // 寫入內容ok fwrite($fp,'ok'); // 關閉資源 fclose($fp); // 錯誤信息 $errmsg = "<font color='red'>因爲沒法寫入模塊緩存,安裝可選模塊失敗,請登陸後在模塊管理處安裝。</font>"; // 包含最後提示文件內容 include('./templates/step-5.html'); // 終止程序 exit(); } // 關閉資源 fclose($fp); // 包含第4 include('./templates/step-4.html'); // 終止 exit(); } // 終止 exit(); } /*------------------------ 安裝可選模塊 function _5_SetupModule() ------------------------*/ else if($step==5) { // 跳轉進入模塊安裝文件啊 header("location:module-install.php"); exit(); } /*------------------------ 檢測數據庫是否有效 function _10_TestDbPwd() ------------------------*/ else if($step==10) { // 不緩存頁面 header("Pragma:no-cache\r\n"); // 不留下頁面備份 header("Cache-Control:no-cache\r\n"); // 不過時 header("Expires:0\r\n"); // 鏈接數據庫 $conn = @mysql_connect($dbhost,$dbuser,$dbpwd); // 若是鏈接成功 if($conn) { // 數據庫名稱不爲空 if(empty($dbname)){ echo "<font color='green'>信息正確</font>"; }else{ // 不然提示信息 $info = mysql_select_db($dbname,$conn)?"<font color='red'>數據庫已經存在,系統將覆蓋數據庫</font>":"<font color='green'>數據庫不存在,系統將自動建立</font>"; echo $info; } } else { // 鏈接失敗時提示信息 echo "<font color='red'>數據庫鏈接失敗!</font>"; } // 關閉數據庫 @mysql_close($conn); // 終止程序執行 exit(); } // 遠程獲取體驗包 else if($step==11) { // 包含更新服務器配置文件 require_once('../data/admin/config_update.php'); // 定義文件名,拼接url $rmurl = $updateHost."dedecms/demodata.{$s_lang}.txt"; // 按照文件url獲取資源 $sql_content = file_get_contents($rmurl); // 以寫入方式建立文件 $fp = fopen($install_demo_name,'w'); // 寫入資源內容 if(fwrite($fp,$sql_content)) // 寫入成功提示 echo ' <font color="green">[√]</font> 存在(您能夠選擇安裝進行體驗)'; else // 寫入失敗提示 echo ' <font color="red">[×]</font> 遠程獲取失敗'; // 釋放$sql_content變量 unset($sql_content); // 關閉資源 fclose($fp); // 終止程序 exit(); }
由上面代碼能夠看出,主要的安裝都是在這個文件中進行的,至於其餘的都是輔助性文件,好比sql-dfdata.sql存放數據庫數據內容等文件。緩存
安裝的話,到此結束了,基本都是接收表單參數,操做文件和數據庫的東西。其餘的輔助性文件,你們能夠本身看看,有空的話,我也會寫一些關於那些文件的詳解。安全