2 questions.
1) how do we make the live search to work site wide instead of only under /forum/.
If i have a search box in
www.site.com.
www.site.com/wiki/
where do we use the absolute path ?
Right now, if i search under
www.site.com, it will show this error
http://www.site.com/ xx.xxx.xx.xxx /ajax_search.php?query=and
www.site.com Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13 404 Please contact
admin@site.com if you can not find the content you are looking for.
3) The live search stops working after I added a new plug in. Found out it was a new plug in for openX i added.
If i disable it, it works fine.
Here is the instruction for the plug in
Product: vbulletin
hook location: global_start
title: OpenX Banners
Exec order: 4
Code:
// The MAX_PATH below should point to the base of your OpenX installation
define('MAX_PATH', '/home/quantnet/public_html/openx');
if (@include_once(MAX_PATH . '/www/delivery/alocal.php')) {
if (!isset($phpAds_context)) {
$phpAds_context = array();
}
$phpAds_raw = view_local('', 4, 0, 0, '', '', '0', $phpAds_context);
}
Any idea why it conflicts with the quick search mod and how to fix it ?