新聞中心
phpbb3怎么在網(wǎng)站內添加google搜索
對于使用phpbb的用戶大部分都是喜歡國外環(huán)境的用戶,對于國內的百度搜索并不習慣,phpbb本身的搜索功能也沒有google的功能強大,如果能把phpbb和谷歌搜索整合該多好啊,無憂主機小編參考了以前網(wǎng)站整合百度搜索的經(jīng)驗和phpbb官網(wǎng)的材料終于完成了這篇整合教程,下面無憂主機小編就非常榮幸的給大家講解phpbb整合google搜索的全部過程。 1、用谷歌搜索驅動現(xiàn)有的站長搜索 通過ftp工具連接您的php虛擬主機 打開styles/prosilver/template/overall_header.html <form action="{U_SEARCH}" method="get" id="search"> <fieldset> <input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" /> <input class="button2" value="{L_SEARCH}" type="submit" /><br /> <a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a> {S_SEARCH_HIDDEN_FIELDS} </fieldset> </form> 把這些代碼替換成: <form method="get" action="http://www.google.com/search" target="google_window"> <input type="text" style="color: #000000" name="q" size="30"maxlength="255" value=" 試試google搜索..." onfocus="if(this.value==' 試試google搜索...')this.value=''" onblur="if(this.value=='')this.value=' 試試google搜索...'"/> <input type="submit" style="color: #000000" name="sa" value="Search"></input> <input type="hidden" name="sitesearch" value="www.linuxsir.tk" checked="checked"><br /> </form> 2、整合谷歌到高級搜索 打開styles/prosilver/template/search_body.html 找到: <h2 class="solo">{L_SEARCH}</h2> 在上面這段代碼后面添加 <div class="panel bg3"> <div class="inner"> <span class="corners-top"><span></span></span> <h3>Google Search query</h3> <fieldset> <dl> <dt><label for="q">Google Site Search:</label><br><span>To search a phrase, surround in double quotes ""<br/> To exclude terms, lead with -<br/> For exact terms, lead with +<br/>For wildcards use * </span></dt> <dd> <form method="get" action="http://www.google.com/search"> <input type="text" name="q" size="40" maxlength="255" value="" class="inputbox"/><br/> <input type="radio" name="sitesearch" value="bbs.linuxsir.tk" checked="checked" /> 僅論壇 <br/> <input type="radio" name="sitesearch" value="www.linuxsir.tk" /> 整個網(wǎng)絡<br/> <input type="submit" value="Google Search" /> </form> </dd> </dl> </fieldset> </div> <span class="corners-bottom"><span></span></span> </div> 添加好就可以看到新的搜索功能了,當然上傳的時候要注意編碼格式的問題。 相關文章推薦閱讀: PHPBB如何找回網(wǎng)站后臺管理員密碼 PHPBB論壇系統(tǒng)安裝中文語言包的完整教程 如何在PHPBB論壇首頁調用最新帖子和最新回復
本文地址:http://www.gle-technology.com/phpbb/14231.html