Handy PHP
Forum
Welcome, Guest
Please Login or Register.    Lost Password?
Fireboard Searchbot not returning results.
(1 viewing) 1 Guest
Go to bottom
TOPIC: Fireboard Searchbot not returning results.
#179
Ninjakitten
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Fireboard Searchbot not returning results. 4 Years, 10 Months ago Karma: 0
Hi --

Installed the fireboard searchbot (1.1.0), but it isn't returning any results. I'm searching for words I know are in a post, subject, or board title, but it tells me there are 0 results. I can't find any sign of anyone else having this problem, but I can't see what I could have done wrong. If I search for a word that appears elsewhere in the site, that shows up, so it doesn't seem to be search itself that's broken. A word in the forum and elsewhere brings up only the elsewhere result.

Using Joomla 1.0.12 and Fireboard 1.0.1. Sorry I can't give much more detail, but... there isn't much more to tell. Hope there's some obvious known problem I'm missing. Thanks.
 
Logged Logged
  The topic has been locked.
#181
vujsa
Moderator
Posts: 143
graph
User Offline Click here to see the profile of this user
Re:Fireboard Searchbot not returning results. 4 Years, 10 Months ago Karma: 5
My first guess is that the bot hasn't been published. My second thought would be that it's permissions are set for your user level but this would only occur if you weren't logged in or if your user level is below the required user authorization level. Since you are more than likely the Admin, I am going back to the unpublished theory.

Goto, Admin Control Panel -> Mambots -> Site Mambots -> FireBoard SearchBot -> Publish

If this doesn't do it, I'll need Debug information from your site to find the problem.

vujsa
 
Logged Logged
 
Do not post small or one line posts.
Do not post unsolicited links or any referal links.
Do not post copied content.
Do not use foul language.
Always be respectful to the other posters.
  The topic has been locked.
#182
Ninjakitten
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Re:Fireboard Searchbot not returning results. 4 Years, 10 Months ago Karma: 0
Alas, it was (and is) published. And I'm Super Administrator, so that ought not be it. What do you need in the way of debug info?

Thanks for the help.
 
Logged Logged
  The topic has been locked.
#184
vujsa
Moderator
Posts: 143
graph
User Offline Click here to see the profile of this user
Re:Fireboard Searchbot not returning results. 4 Years, 10 Months ago Karma: 5
 
Logged Logged
 
Do not post small or one line posts.
Do not post unsolicited links or any referal links.
Do not post copied content.
Do not use foul language.
Always be respectful to the other posters.
  The topic has been locked.
#186
Ninjakitten
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Re:Fireboard Searchbot not returning results. 4 Years, 10 Months ago Karma: 0
Thanks -- I'll PM that to you now.
 
Logged Logged
  The topic has been locked.
#187
vujsa
Moderator
Posts: 143
graph
User Offline Click here to see the profile of this user
Re:Fireboard Searchbot not returning results. 4 Years, 10 Months ago Karma: 5
Yes, I got your PM and the debug information and did see one problem with the search query but more importantly, I noticed several queries were missing!

I had a little trouble at first trying to read the queries since so many are missing and you are using a different database prefix than the default. Here is a filtered excerpt from your debug information that you forwardd to me.
CODE
31
SELECT b.subject AS title,
a.message AS text,
c.pub_access,
c.published,
c.pub_access,
c.description,
FROM_UNIXTIME(b.time) AS created,
CONCAT('My Forum','/', c.name) AS section,
'2' AS browsernav,
CONCAT('index.php?option=com_kunena&Itemid=', '99', '&func=view&catid=',b.catid,'&id=',b.thread) AS href
FROM jos_fb_messages_text AS a
INNER JOIN jos_fb_messages AS b ON b.id = a.mesid
INNER JOIN jos_fb_categories AS c ON c.id = b.catid
WHERE ( b.subject LIKE '%searchterm%'
OR a.message LIKE '%searchterm%'
OR b.name LIKE '%searchterm%'
OR c.name LIKE '%searchterm%'
OR c.description LIKE '%searchterm%' )
AND c.published = 1
AND c.pub_access folder = 'search'


Notice the last line where it reads
"AND c.pub_access folder = 'search'", this is incorrect. It looks like two queries spliced together. After "AND c.pub_access", there should be the following:
CODE
<= 99
LIMIT 0, 50


The query shown above is number 31. I really need queries 28, 29, 30, and 31 to get all of the FireBoard SearchBot data.

I hope the added data will show me the problem.

vujsa
 
Logged Logged
 
Do not post small or one line posts.
Do not post unsolicited links or any referal links.
Do not post copied content.
Do not use foul language.
Always be respectful to the other posters.
  The topic has been locked.
Go to top