1、全部文章動態或靜態的解決方法 (針對已經添加好的文章) 進入「系統」 --> "SQL命令行工具" 輸入如下命令便可 全站全部文章爲動態 執行SQL: update dede_archives set ismake=-1 全站全部文章爲靜態 執行SQL: update dede_archives set ismake=0 欄目批量設置爲動態 執行SQL: update dede_arctype set isdefault=-1 改成1便是靜態 假如要ID =10 的欄目內 全部文章生成動態,其它所有爲靜態 執行SQL: update dede_archives set ismake=-1 where typeid=10 2、若是想之後添加的文章 都默認是動態的話,還須要進行如下設置: 1.增長欄目時動態化: 找到 /dede/templates/catalog_add.htm 文件後 在文件中搜索: (連接到默認頁) 這幾個字 定位到這三行: <input type='radio' name='isdefault' value='1' class='np' checked="checked" /> 連接到默認頁 <input type='radio' name='isdefault' value='0' class='np' /> 連接到列表第一頁 <input type='radio' name='isdefault' value='-1' class='np' /> 使用動態頁 把第一行的 checked="checked" 剪切到 最後一行代碼中便可,記得把找到默認首頁改爲index.php後綴的 2.增長文章時(只限普通文章類):找到 /dede/templates/article_add.htm 文件後 在文件中搜索: (生成HTML) 這幾個字 定位到這幾行: <input name="ishtml" type="radio" class="np" value="1" checked="1"/> 生成HTML <input type="radio" name="ishtml" class="np" value="0" /> 僅動態瀏覽 把第一行的 checked="1" 剪切到 第二行代碼中便可. 如還需默認 "禁止評論" 的 搜索找到位 (容許評論) 幾個字 定位到這二行 <input type='radio' name='notpost' class='np' value='0' <?php if($cfg_feedback_forbid=='Y') echo "checked='1' "; ?> />容許評論 <input type='radio' name='notpost' class='np' value='1' <?php if($cfg_feedback_forbid=='N') echo "checked='1' "; ?> />禁止評論 把兩行中的 php if($cfg_feedback_forbid== 等於號的Y和N對換便可 3.其它類僅動態的,方法同理,找到相應文件便可 3、首頁動態設置 (去除if語句) 把如下一段 ===================================================== //自動生成HTML版 if(isset($_GET['upcache'])) { 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']); $pv->SaveToHtml(dirname(__FILE__).'/index.html'); include(dirname(__FILE__).'/index.html'); exit(); } else { header('HTTP/1.1 301 Moved Permanently'); header('Location:index.html'); } ?> ===================================================== 換成 ===================================================== //自動生成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']); $pv->SaveToHtml(dirname(__FILE__).'/index.html'); include(dirname(__FILE__).'/index.html'); exit(); ?>