Last modified: 2010-05-15 15:59:52 UTC
Hi. At the end of 2007 I installed MW 1.11.0 at home.pl servers. It uses PHP 5.2.1 (ucgi5) and MySQL 5.0.33-log. Home.pl is using their own IdeaWebServer software instead of Apache. Pre-built search is returning no matches, though I already have some content. I tried to install GoogleSiteSearch, but it returns something like (before and after entering Google AdSense code in LocalSetting.php): <searchfulltext> [search field] And there is nothing more I can do, it gets me back to this page whatever I enter there. What should I do? I readed about some search server in old bug reports, but so small installation shouldn't have it separately (maybe, I don't know).
This is a problem with your URL rewrite rules; they're removing query string information.
Thanks! Changing RewriteRule ^wiki/?(.*)$ /w/index.php?title=$1 [L] to RewriteRule ^wiki/?(.*)$ /w/index.php?title=$1 [L,QSA] made it working again.