Home > Article > CMS Tutorial > What should I do if the content cannot be found in phpcms search?
What should I do if the content cannot be found in phpcms search?
When Phpcms v9 presents the search results, it will automatically segment the words, so the results will be incomplete. And the content cannot be searched. The specific solution for Phpcms v9 search results is incomplete or lacks content:
Open phpcms\modules\search\index.php and find
Related recommendations: phpcms tutorial Replacing
if(!empty($segment_q)) { $sql = "`siteid`= '$siteid' AND `typeid` = '$typeid' $sql_time AND MATCH (`data`) AGAINST ('$segment_q' IN BOOLEAN MODE)"; } else { $sql = "`siteid`= '$siteid' AND `typeid` = '$typeid' $sql_time AND `data` like '%$q%'"; }
with
$sql = "`siteid`= '$siteid' AND `typeid` = '$typeid' $sql_time AND `data` like '%$q%'";
means that you no longer use word segmentation for keyword searches, but directly use the keywords you entered to search.
For more about phpcms website building tutorials, please pay attention to Website Building Video Tutorial.
The above is the detailed content of What should I do if the content cannot be found in phpcms search?. For more information, please follow other related articles on the PHP Chinese website!