我做了這么多帝國(guó)cms了,test.txt這個(gè)文件幾乎極少用到,至于title.txt這個(gè)文件,官方的帝國(guó)cms源代碼包里面是沒(méi)有這個(gè)文件的,不知道你是從哪兒下載的。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:空間域名、雅安服務(wù)器托管、營(yíng)銷軟件、網(wǎng)站建設(shè)、辛集網(wǎng)站維護(hù)、網(wǎng)站推廣。
因?yàn)槠匠6己苌儆玫?,官方似乎也沒(méi)有太多這方面的教程,網(wǎng)上也搜不到相關(guān)有用的信息,我給出我自己的答案,僅供參考:
1、test.txt:我原先猜測(cè)test.txt可能是帝國(guó)cms官方給出的測(cè)試用的搜索關(guān)鍵詞,但是打開這個(gè)文件,只有簡(jiǎn)單的一行代碼!--EmpireCMS--,讓人摸不著頭腦,百度一下也沒(méi)有相關(guān)方面的介紹,官方文檔也沒(méi)有描述。后來(lái)我在\e\class\comdofun.php文件中的ClearTmpFileData()函數(shù)中找到了該文件的用法。這個(gè)函數(shù)是帝國(guó)后臺(tái)的數(shù)據(jù)更新功能中 “清空臨時(shí)數(shù)據(jù)與文件”操作用的。我仔細(xì)查看了該函數(shù)對(duì)test.txt的用法,基本可以確定,test.txt的用途,只是用來(lái)提供帝國(guó)檢驗(yàn) 某個(gè)文件夾或目錄 的可寫可讀等 權(quán)限用的。換句話說(shuō),這是帝國(guó)的系統(tǒng)自帶的檢測(cè)功能的某個(gè)組成部分,對(duì)于用戶來(lái)說(shuō),絕大多數(shù)情況下 幾乎不會(huì)用到 這個(gè)文件。
建議:保留這個(gè)文件,如果刪除可能導(dǎo)致帝國(guó)對(duì)該目錄 的檢測(cè)失靈。
2、title.txt:這個(gè)不是帝國(guó)官方的文件,我看了一下你的截圖,里面的格式應(yīng)該屬于 常用的標(biāo)題搜索熱詞 之類的。具體看內(nèi)容,我猜你很有可能下載的是 影視類的帝國(guó)cms,是經(jīng)過(guò)別人再次開發(fā)過(guò)的源代碼,由于我沒(méi)有你這個(gè)版本的 源代碼,所以不能肯定 這個(gè)文件是否 在別人開發(fā)過(guò)的源代碼中被引用到。建議你也保留。
form?action='/e/search/index.php'?method="post"?name="search_news"?id="search_news"
input?type="hidden"?name="show"?value="title"?style="display:none;"?/
input?name="keyboard"?type="text"?class="search-keyword"?id="keyboard"?value="在這里搜索..."?onfocus="if(this.value=='在這里搜索...'){this.value='';}"??onblur="if(this.value==''){this.value='在這里搜索...';}"?/
input?type="submit"?name="Submit22"?value=""?class="s_sumbit"/
/form
你把上面的form放到相應(yīng)的位置即可。這就是帝國(guó)cms的搜索。
form??id="searchform"?name="searchform"?method="post"?action="/e/search/index.php"?target="_blank"??????
input?style="float:left;"?class="main?text"?maxlength="70"??size="42"?type="text"?name="keyboard"?id="keyboard"?value=""?/????
input?type="hidden"?name="show"?value="title,smalltext"?/????
input?type="hidden"?name="tempid"?value="1"?/????
input?style="float:left;"??type="image"?value="?搜?索?"?src="/images/img/searchbutton.jpg"?//form
上面代碼是搜索標(biāo)題和簡(jiǎn)介的,你說(shuō)的全站搜索,只能搜索標(biāo)題和簡(jiǎn)介,內(nèi)容是無(wú)法參與搜索的
!doctype html
html
head
meta charset="UTF-8"
titleUntitled Document/title
/head
body
script
function CheckSearchForm(){
? ? if(document.getElementById("searchform").stitle.value=="")
? ? {
? ? ? ? ? ? alert("請(qǐng)輸入標(biāo)題");
? ? ? ? ? ? return false;
? ? }
? ? if(document.getElementById("searchform").swriter.value=="")
? ? {
? ? ? ? ? ? alert("請(qǐng)輸入作者");
? ? ? ? ? ? return false;
? ? }
? ? return true;
}
/script
form name="searchform" id="searchform" method="post" action="/e/search/index.php" onsubmit="return CheckSearchForm();"
table width="550" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder"
input type="hidden" name="tbname" value="zhengshu"
input type="hidden" name="tempid" value="1"
input type="hidden" name="andor" value="and"
tr class="header"
? td colspan="2"新聞搜索/td
/tr
tr bgcolor="#FFFFFF"
? td width="97"姓名:/td
? td width="388"
? ? ? input type="hidden" name="show[]" value="title"
? ? ? input type="hidden" name="hh[]" value="LK"
? ? ? input name="keyboard[]" type="text" id="stitle"
? /td
/tr
tr bgcolor="#FFFFFF"
? td編號(hào):/td
? td
? ? ? input type="hidden" name="show[]" value="xingming"
? ? ? input type="hidden" name="hh[]" value="LK"
? ? ? input name="keyboard[]" type="text" id="swriter"
? /td
/tr
? ? tr bgcolor="#FFFFFF"
? td /td
? td
? ? input type="submit" name="Submit" value="馬上搜索"
? ? font color="#666666"(不設(shè)置為不限)/font
? /td
/tr
/table
/form
/body
/html