]> granicus.if.org Git - php/commitdiff
- mnogosearch example updated to include searchd support
authorSergey Kartashoff <gluke@php.net>
Mon, 10 Dec 2001 07:21:50 +0000 (07:21 +0000)
committerSergey Kartashoff <gluke@php.net>
Mon, 10 Dec 2001 07:21:50 +0000 (07:21 +0000)
ext/mnogosearch/index.php

index f7b70b53001c5b23c34c3cc633d0375a1774aaeb..e9a4d0ff07d56790fdf9eeb7b421eedef4f973bf 100644 (file)
@@ -44,6 +44,7 @@ $spell_file['en']='/opt/udm/ispell/en.dict';
 $stopwordtable_arr[]='stopword';
 // $stopwordfile_arr[]='stopwords.txt';
 $synonym_arr[]='/opt/udm/synonym/english.syn';
+$searchd_arr[]='localhost';
 
 $minwordlength=1;
 $maxwordlength=32;
@@ -601,6 +602,15 @@ function make_nav($query_orig){
                Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SYNONYM,$synonym_arr[$i]);
            }
         }
+       
+       for ($i=0; $i < count($searchd_arr); $i++) {
+           if ($searchd_arr[$i] != '') {
+               Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SEARCHD,$searchd_arr[$i]);
+           }
+        }
+
+       Udm_Set_Agent_Param($udm_agent,UDM_PARAM_QSTRING,$QUERY_STRING);
+        Udm_Set_Agent_Param($udm_agent,UDM_PARAM_REMOTE_ADDR,$REMOTE_ADDR);
    }
 
    if  ($m=='any') {