[問題] 請問如何限制搜尋時輸入的關鍵字

phpBB 2 MOD Support
無論是官方或非官方認證之外掛,安裝與使用問題討論。
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

主題已鎖定
頭像
men_lok
星球公民
星球公民
文章: 75
註冊時間: 2003-11-03 12:25

[問題] 請問如何限制搜尋時輸入的關鍵字

文章 men_lok »

phpBB 2.0.6

怕資料庫及電腦負荷過大\r

如何限制所有會員 (包括 Admin) 於搜尋文章時只可最多使用 2 個關鍵字 (即不可一直加入 AND , OR, NOT 這些導致資料庳繁忙,最多加一個,例如 123 AND 456)

謝謝指點 ^___^
動感超人
竹貓忠實會員
竹貓忠實會員
文章: 485
註冊時間: 2003-02-09 14:06

文章 動感超人 »

http://phpbb-tw.net/phpbb/viewtopic.php?t=18300


如果只要限制關鍵字個數,改下面這段就好了。

代碼: 選擇全部

#-----[ OPEN ]------------------------------------------ 
# 
search.php 
#-----[ FIND ]------------------------------------------ 
# 

         $word_match = array(); 
         $result_list = array(); 

         for($i = 0; $i < count($split_search); $i++) 
         { 
            switch ( $split_search[$i] ) 
            { 
               case 'and': 
                  $current_match_type = 'and'; 
                  break; 
# 
#-----[ REPLACE ]--------------------------------------- 
# 

         $word_match = array(); 
         $result_list = array(); 

         if ( count($split_search) > [color=red]2[/color] ) 
         { 
            message_die(GENERAL_MESSAGE, $lang['No_search_match']); 
         } 
         for($i = 0; $i < count($split_search); $i++) 
         { 
            switch ( $split_search[$i] ) 
            { 
               case 'and': 
                  $current_match_type = 'and'; 
                  break; 
# 
#-----[ SAVE/CLOSE ALL FILES ]-------------------------- 
無限期蒸發中
頭像
men_lok
星球公民
星球公民
文章: 75
註冊時間: 2003-11-03 12:25

文章 men_lok »

謝謝^^
頭像
men_lok
星球公民
星球公民
文章: 75
註冊時間: 2003-11-03 12:25

文章 men_lok »

請問安裝好後使用多於一個 AND 是否顯示為 "沒有相關主題或文章符合您要搜尋的條件"??

謝^^
動感超人
竹貓忠實會員
竹貓忠實會員
文章: 485
註冊時間: 2003-02-09 14:06

文章 動感超人 »

是的。

自訂錯誤訊息:

代碼: 選擇全部

         if ( count($split_search) > 2 ) 
         { 
            message_die(GENERAL_MESSAGE, $lang['No_search_match']); 
         }
改成:

代碼: 選擇全部

         if ( count($split_search) > 2 ) 
         { 
            message_die(GENERAL_MESSAGE, '[color=red]您使用的搜尋條件太多[/color]'); 
         }
就可以了。
無限期蒸發中
頭像
men_lok
星球公民
星球公民
文章: 75
註冊時間: 2003-11-03 12:25

文章 men_lok »

謝謝動感超人 ^^
主題已鎖定

回到「外掛問題討論」