2
catscity:
Thanks for calling my attention to a real problem I had solved and then reinstalled (lol). The search function was working in a n early iteration of the module; later I switched to the new group permissions mode, but the file search.inc.php remained as it was.
To make Soapbox searchable all you have to do is open the mentioned file, look for line 28 and delete the reference to groupid from the query. So, instead of
Quote:
$sql = "SELECT artID, headline, lead, bodytext, uid, datesub, groupid FROM " . $xoopsDB -> prefix( "sbarticles" ) . " WHERE submit = 0 AND offline = 0 ";
you should have
Quote:
$sql = "SELECT artID, headline, lead, bodytext, uid, datesub FROM " . $xoopsDB -> prefix( "sbarticles" ) . " WHERE submit = 0 AND offline = 0 ";
This will make the search work ok.
With respect to your other comment, I don't quite understand what the problem is. When you're in the index page, you CAN click on the columns' names to go to a page where all the articles for that column are listed. Of course you can also click directly on the articles' names to read the pieces directly, but there's always the first option.
Additionally, in case you haven't noticed, in the modules' config options you can select to show the columns' names in the menu. This will display these names on your main menu, and when you click on one of them, of course you go to that specific column page.
I'll look for a way to add keywords to the META tags, but since those are controlled in the theme file, I didn't explore enough a way to make them grow...
Cheers.