vBulletin ModsThe Official vBulletin Modifications Site
https://www.vbulletin.org/forum/showthread.php?t=127868 |
Quote:
|
Ask in the sphinx forum maybe....:O
|
I think that | is OR and & is AND, but I haven't tested it just yet. I hope they make it a tad more user friendly in the 0.9.7 release, my users aren't all that tech savy :)
|
As Oban says there has been discussion on these kind of things on the sphinx forum http://www.sphinxsearch.com/forum/
|
Right, that's where I found it. I'll probably end up doing search and replace additions to my search page to replace natural language operators with their character representation.
|
A quick question has anyone sucessfully configured there search to work with 2 letter words?
I have set my system for max length of 2 but I still only seem to be able to find 3 letter words. |
Quote:
|
Quote:
Rebuild your indexes :) |
I discovered that when you change the word lenght (or the stop bits file) you have to fully stop "searchd" and restart it for the changes to be taken into account.
Once searchd was restarted it behaved as expected. Another query / thought. I have been so impressed by Sphinx that over the last couple of days we have impelemented a search of our non forum content using it. It works well. But I then thought it might be nice to create a simple search for the forums. If anyone is interested I have some very basic code to do this - started with the code from test.php and once a valid result is found it does a search in the forum trhead database for the thread $docinfo[group2] $article_query = "SELECT title, threadid FROM ???_forum.thread WHERE threadid='$docinfo[group2]'"; From there you can select the article trhead and create a simple output page. If anyone in interest in more details shout and I might clean up the code so it can be looked at by all you pros :) |
Quote:
Other than that, I'm completely amazed at how fast search is running :) |
Are you guys using vB 3.6?
|
Quote:
|
i dropped 3 fulltext indexes
title and title_2 on post title on thread hope i did the correct thing what are the postindex and posthash tables for? i also have 3 tables called postindex_temp31480 and similar. what are those? |
Would love a little bit of help, if available?
I have tried getting this to work on one of our test forums which currently has about 1.5mil posts and is running vbul 3.5.4 first of all im not sure whether my conf is correct when i run the indexer is it supposed to say skipping index 'vbfulltext' (distributed indexes can not be directly indexed)... skipping index 'vbfulltextthread' (distributed indexes can not be directly indexed)... those are the last 2 results - the dirstributed indexes is that error suppose to be there? secondly when i run a search --config path qry it appears to work and give back results however upon turning on the searchd i dont seem to get any results the echos on my search.php Query '' retrieved 0 of 0 matches in 0.000 sec. Query stats: 'test' found 0 times in 0 documents and there are no queries on my searchd.log any starting point suggestions- i guess the searchd isnt being queried however when i switch it off the echo alerts me that searchd is not running? is one of the issues that im using 3.5? Thanks Nelly |
Quote:
Quote:
|
Wow, thanks for the really quick reply, yup am starting with the conf file
and the only lines in the log read: [Sun Nov 12 14:29:38 2006] [24295] creating server socket on 0.0.0.0:3312 [Sun Nov 12 14:29:38 2006] [24295] accepting connections Nelly |
There's two log files.
searchd.log and query.log What does query.log say? |
ahh didnt notice that there was a query log
ok so it must be hitting it [Sun Nov 12 14:34:13 2006] 0.009 sec [all/1/attr- 0 (0,500)] [vbpostindex] test qry hmmmm will go back to the search.php - is it likely to be something to do with using 3.5.4 and not 3.6? Nelly |
Quote:
Quote:
Jeez, there were like 4 replies while I was replying :) |
I don't really know... :(
you can try to work with the files in the /api/ folder of the archive you downloaded, and try to get that one work. mute: !! :D |
Thanx guys, will take a look at the api stuff but on initial inspection get error messages such as
Query failed: searchd error: index 'vbthreadindex': incompatible schemas: non-virtual attributes count mismatch: 4 in schema '/var/data/vbthreadindex', 5 in schema '/var/data/vbpost'. if this means anything that can be relayed then please mention otherwise gonna spend the afternoon reading and playing... as for 3.6 we hope to upgrade soon, but i havent ascertained what they have done to this upgrade (ie how much more 'beef' will our front ends need for this version!) cheers |
If i were you i'd verify that your sphinx.conf matches the example.
We upgraded to 3.6.2 about 2 weeks ago and it went pretty well, as far as our front end web traffic goes, I don't really notice a difference in terms of load :) |
Are you combining wrong indexes together?
|
Quote:
|
Neil,
The other thing to check is to use the test.php script to check that you can search the files correctly. If that works then you know you need to tweak the search.php code - it is possible as I have tweaked it all the way back to 3.0.x :) Though I doubt there will be much to change as the major changes occured in the the chnage from 3.0 to 3.5 |
Hey all, well i have been playing around with no real success with test.php which i can only assume means that my conf file is messed up somewhere, if anyone could take a few secs to see whether I have made any glaring errors
my tables use the extension vb_ and i went through and modified all the table names as per instructs. anything glaringly obvious>? Neil |
i have a problem
and the gibberish continues for another page or two to reproduce this error, go to http://www.xboard.us/bbb/forumdisplay.php?f=7 and click on the 'search this forum' link. in the dropdown which opens, type 'barnacles' in the search term field and select 'show results as posts' and click go happens with other forums and other search terms also, but not always. internet explorer and firefox show only a blank page. to see the error, use opera. |
Can you try to use the test.php and/or the "search" command tool?
|
search works 90% of the time, so its not a total failure
search command line tool gives the following output
|
Finally got it to work,
Now I have another question, I want to run this from a slave database ie grab the query data but the sphinx requires the REPLACE INTO which obv cant run on a slave instance so my question is this - is it possible to hook this up to run on the master for the replaces and the slave for the other queries. I intend on going and playing but wondered before hand whether anyone had a solution? Thanks Neil |
Why can't you have the counter table you run REPLACE INTO on the slave server?
Master: vB Slave: Replicated vB + counter table + sphinx Should work fine :O |
orban, any suggestions for my problem?
|
If you can reproduce the error with "search" I'd try the sphinx forums....or does it only happen when using sphinxapi.php?
|
The slave server as far as i know(and im pretty sure) has only read permissions hence the replace will have to be run on the master (which is then obv replicated across) so i cannot write to the slave db at all.
Neil |
Nothing can prevent you from creating a new table in the replicated db on the slave - granted your db user has the create/update privileges on that db. So your assertion that the slave is read-only isn't true.
(Actually nothing prevents you from messing with replicated tables on the slave, too - which obviously will break the replication integrity) |
Quote:
it does say that it got 11 results, so probably the error is not in the searchd portion looks like i may have solved the problem by using the array_walk and intval approach as discussed by orban and alanjay. strange thing is that my forums are running vb 3.6.1, not 3.0.x for which the discussion was originally intended. |
Hm. We're running into that "search results are out of order" bug again, even if a user has the sort set to by date, rather than relevancy.
Has anyone else using this run into it? |
Quote:
the values are numerals but sometimes they seem to be stored as strings no idea why but array_walk and intval seem to resolve the issue simply enough. By the way for anyone interested I have now used Sphix to create a search interface to both our news and forums databases outside of vBulletin. Next step to implement the sort order (which jsut needs to be made pretty). You can see the tool at http://www.digitalspy.co.uk/search/ds-search.php |
Quote:
Anyway, I am also running into the results out of order bug. I haven't changed anything, and it just seemed to start cropping up one day. |
Yeah, my users are complaining about the out of order results, but I haven't had the time lately to delve into it. I swear at one point it was working, but now.. not so much.
|
Quote:
searchd can be on any computer and the database it looks into can be on any other one (that it can see). You obvioulsy have to configure the front end to look at searchd on the correct computer and change the localhost references to the IP address of the machine that has searchd running on it. But the load from indexing the files isn't that great and the way Oban has implemented it with a main index and deltas means that even with a large board with lots of posts and we get from 10,000 to 40,000 a day running the rebuild of the full index once a day at a quite preriod will not put a load on the database (and in our case with a file with nearly 12 million posts it takes under 5 minutes). The creation of the delta file which I run every 5 minutes takes just a few seconds. Sphinx's overhead when indexing seems very small (as far as I can tell) on the mySQL database so I don't see the need to complicate things. In my setup: HTML front ends (x8 - 10.10.10.11 to 10.10.10.18) sphinx.php points to 10.10.10.19 10.10.10.19 - searchd when index created looks at 10.10.10.1 10.10.10.1 - mySQL master database As I understand it all Sphinx leaves in the database is a marker to say where the line between the main and delta database is. Good luck Neil :) |
Quote:
I never had this problem. |
Quote:
|
Can you reproduce this with "search" on the same input?
Might be worth asking in the sphinx forums. |
For curiousity's sake, can I get rid of any of my indexes on the post table now? The table crashes periodically, and with the fulltext index it takes almost an hour to repair.
|
hey,
cheers for the help, probably against our server peoples wishes i indexed from the master database (our master db is fairly heavily loaded - we were trying to avoid adding anything new which may "tip it over") - so i now have an indexed db, the searchd daemon running now all i need to do is play around and write some scripts to manipulate the data the searchd returns - my first job is to build a standalone search which can be used to test before it goes live on our forums. I am actually quite excited about this product and looking forward to using it. Cheers guys. Will keep you posted on progress. Neil |
has anyone managed to fix the out-of-order results on their forum, yet?
|
I'm taking a wild guess here, but maybe the returned results are sorted by relevance, that's why they seem out of order? (which order btw? date posted?)
|
Yeah, they're supposed to be sorted by date. Apparently I'm not the only person having the problem.
|
Quote:
ie //////////// // do query //////////// $cl = new SphinxClient (); $cl->SetServer ( $sphinx_server, $sphinx_port ); $cl->SetWeights ( array ( 100, 1 ) ); // Number of results to display // $cl->SetLimits ( intval(0), intval($limit) ); // $cl->SetMatchMode ( $any ? SPH_MATCH_ANY : SPH_MATCH_ALL ); $cl->SetMatchMode ( $sp_srch ); $cl->SetSortMode ( $sp_sort ); $cl->SetGroups ( $groups ); $cl->SetGroups2 ( $groups2 ); $cl->SetGroups3 ( $groups3 ); $cl->SetGroups4 ( $groups4 ); $cl->SetGroups5 ( $groups5 ); $res = $cl->Query ( $q, $index ); Works for me byt putting the "SetSortMode" below Group 5 didn't work not sure why :) But it might be worth checking where it appears. |
You realize that there is a difference between sorting in 0.9.6 and 0.9.7-RC1? They are NOT compatible.
|
Quote:
|
Is there any hope of Sphinx handling "Find all posts by user" searches?
|
I found a bug. When searching in title only, it doesn't honor datecut.
To fix, change:
to:
Another thing I found is that vb caches the search results and it tries to find the closest or exact match. There's no problem with exact matches, but when it saves the results sorted in ascending date order the subsequent searches in reverse order shows only old threads. To fix this, just comment out the $highScore = 1 & highScore = 2 lines in search.php. This disables using the stale cache for non-exact matches. Thanks for the great hack orban! |
http://www.sphinxsearch.com/index.html
RC2 released, I'll upgrade tomorrow and see if there are any changes for us. ----------- Recreated index, copied over new sphinxapi.php seems to work okay. There's a new "extended" search mode but don't think I'll use that (too complicated for users anyway). |
Hm. So all was going well, but out of the blue our subforum searches stopped working. If i don't specify a subforum, the searches work. If I do, I get an assertion failure in sphinxapi.php @ line 290 (with 0.9.7-rc2).
I ran into the problem on -rc1, and decided to upgrade to see if it had been fixed, but it has not. I'm a tad stumped. Edit: I seem to have fixed it by adding a "$value = intval($value);" before the assert() in sphinxapi.php. Guess this is related to the assertion failures earlier, so much for not having to cast variables :) |
Tried to do an intval() on the forumid?
|
@mute, good that you solved the problem, but i would not edit sphinxapi.php
since more people are facing the same problem, let me post an easy to follow solution. this is what i did to solve the problem on my forums, after reading the conversation between alanjay and orban in includes/sphinx.php, around line 44, change from:
to
around line 69, change from
to
and lastly, around line 157, right at the end of the file, change from
to
|
Thanks amcd, that is indeed a better solution. I've made the changes and all appears to be working well :)
|
Just out of curiosity.. Are people using the standard vb search or full text in conjunction with their sphinx implementations?
|
full text so vB doesn't populate its search tables (at least me, I just noticed that this is actually not mentioned in the guide)
|
great thanks.. :)
Orban have you updated to sphinx rc2 yet? |
orban, i think you should clearly mention this in the tutorial. if vb is not switched to fulltext, there will be hardly any benefit from sphinx. also, the fulltext indices should be dropped, otherwise mysql will keep updating them and waste time.
|
So, is there any hope to having sphinx handle searching for all of a users posts? I forget what we determined earlier in the thread. Despite sphinx being fast, I'm still seeing slowdowns related to doing the "find all posts by user" searches :(
|
I don't think Shodan (from sphinx) has implement keyword-less queries yet but he plans to afaik.
|
You can emulate the search by user in sphinx by adding a fake unique keyword per each member in the mix (e.g. "_userid_12345"). Searching by this keyword will return all posts by the member with userid 12345.
|
I've noticed a few people talking about the sorting of searches being off. I am having the same issue, has anyone found a fix for it yet?
|
Quote:
|
I think I figured out the problem, but not sure I know how to fix it at this very moment.
The sphinx.conf file that is being distributed in this thread builds the date_column as "dateline" for post index, and "lastpost" for thread index. I noticed the output from Sphinx is in proper order by dateline, but since the two indexes are not being given the same date source, then your threads will be out of order on search results when, I assume, that it groups the posts into the threads and the output displays the last post date of the thread and not the "post date" of the post that your search matched. While you could fetch the lastpost date of a thread that is associated with the post and this way you use one date column unique across the indexes, my assumption is that unless you rebuild the full index (not deltas) constantly, that your searches will still be messed up. We already know that when we say we want 1000 results and 7000 documents match, that we may only have 853 results, once all posts are grouped under specific threads. I will have to think about this one. Wait, hold on, things are coming to quickly... Example: You do a search on "Trees", and it finds 10 posts with the word "Trees" in it. For the sake of this discussion, "Trees" is only in one post in each thread. The results come back and order in DESC order, all the post's dateline. Well, this is great, except, additional posts to those threads may have happened, and as such the search results are all out of order, because the search returns the dateline order, not the lastpost order of the associated thread. This ALSO explains why when each of us first installed this and indexed our boards, that everything worked perfectly, because it was a brand new index. But, once you start building onto that index that is when things go astray. I believe this is what is causing it all, but I might be missing something. |
DigitalCrowd, I think you have hit the nail right on the head. I rebuild my full index everyday, and my results are just slightly out of order. And the thread which are our of order are the ones which have been updated today, after the last rebuild.
So, how do we fix this problem? Once the search results have been received from sphinx, we then re-sort them by lastpost if the user has requested 'show results as threads'? |
Well, then you get into having to fetch the current lastpost field of all matching threads and that would be, on larger boards, significant overhead. Now you move away from just searching Sphinx, to now search the database as well, then sorting your resulting arrays and pretty soon... you have a SLOW search again.
After further testing.. I rebuilt my index, search results in order. I did a reply to a post about the third the way down, not using the word "the" (my search word) in it. Now, when I do a search for "the", the third post down is out of order. The ONLY way for a thread to get bumped up, is if the search word has been used again at a later time in that thread. The Best way to do search, IMHO is to give more weight to recent threads, but get away from sort by date search results. Even Google doesn't offer this, but we are so accustomed to it in the forum world that getting people to break from it is hard. The best way would be to optimize how Sphinx (or the code that makes the call to Sphinx) weighs results. I did notice on the Sphinx Forums that the sort mode "SPH_SORT_TIME_SEGMENTS" was made to address this and that if it doesn't work to our liking, it can be modified to perform better. I will have too look into it. Without adding overhead to the search process, I think the days of instant lastpost sorting are gone, unless you can rebuild your full index every 15 minutes or so and for some people, that index process might last that long or longer. |
Boy, if ever a hack was ripe for a commercial opportunity... ;) A no-fuss, easy-to-install sphinx search for VBulletin with full search functionality and smart results ordering - how many big boarders would pay big money for this? (I would... it'd be a lot cheaper than buying another new server... :cool: ). I certainly HOPE this free development continues, but I look forward to the time when bugs like this aren't an issue.
|
Quote:
|
Itīs amazing. Iīm bookmarking too.
|
I wouldn't classify this as a bug, just more of an oversight. The max_matches variable in the sphinx.conf file is ignored when using the PHP API script. It doesn't matter if it's left at the default 1000, the 1500 that orban's file has been modified to use, or 1000000 as the config file says not to do. If you want to change the number of results returned then you need to change line 15 of 'includes/sphinx.php'.
Old:
New (replace '2500' with the number you want):
Otherwise, great work! This has really sped up searching on the forums I have used for testing (6K posts, 820K posts, and 3.2M posts). |
Just installed on a forum with ~5.4 million posts... Before some searches would literally take forever (I had a query kill script that would kill the thread after a minute), now searches come back in less than a second! :)
Slow searches are a killer on a forum since it locks the post table. Also users seem to have a habit of clicking the search button multiple times if results aren't returned within a few seconds. One thing, search results I've noticed don't always come back sorted by date properly. I skimmed over a few posts talking about this, I guess I need to go back and read it more in-depth. I'm sure the fix wouldn't be too hard. Here's the data from the initial build, even with such a large index file it is still super fast. Quote:
|
Quote:
|
this is fantastic well done all involved :)
im having a small issue i need some help with 1) if i issue the search command from ssh it gives me alot of results with words and if i do a search in the forums it gives me 1 or 2 results which i know there is alot more 2) i have a few words that i like included in the vboptions that are 3 letter words how do i enable them in sphinx without enabling all 3 letter words ? any ideas ? cheers |
Quote:
Have you managed to find a fix for this short of doing a full reindex? We're still just doing incremental updates, but I am still pretty annoyed about the "out of order" results. |
Quote:
sort_search_items() in includes/functions_search.php It's just one query, and it runs on a slave server if it's set up. Also its overhead depends only on the number of returned search results. And you don't even need to run through it on every search, only when listing the results as threads, sorted by lastpost. |
anyone know why its not getting the full amount of results ?
if i search with command line its getting houndreds and if i search from the forums its finding 1 or 2 things which i know there is more of ? |
Quote:
Forgot to ask, is there any kind of setting to block indexing before a certain date? One of my admins informed me that he cannot find any post prior to 2005. Later, RayJ |
Quote:
Most likly I am just misunderstanding the results. Here are the results from a command line search: (displaying matches: snipped) [[email protected] ~/]# search test Sphinx 0.9.7-RC2 Copyright (c) 2001-2006, Andrew Aksyonoff index 'mypostidx': query 'test': returned 1000 matches of 191296 total in 0.029 sec words: 1. 'test': 191296 documents, 475585 hits index 'mypostidxdelta': query 'test': returned 56 matches of 56 total in 0.000 sec words: 1. 'test': 56 documents, 134 hits index 'mythreadidx': query 'test': returned 1000 matches of 2847 total in 0.154 sec words: 1. 'test': 2847 documents, 2879 hits index 'mythreadidxdelta': query 'test': returned 0 matches of 0 total in 0.000 sec But, searching in the forum: (show posts/search entire post) Search: Key Word(s): test Showing results 1 to 40 of 392 (I created a huge test forum and it has many more posts with the word "test" than 392) And using test.php php test.php test Query failed: searchd error: index 'mythreadidx': incompatible schemas: non-virtual attributes count mismatch: 4 in schema '/var/sphinx/mythreadidx', 5 in schema '/var/sphinx/mypostidx'. On the forum, the search never returns any more that 400 results (i.e. Showing: 40 of 400). I cannot find a setting that cuts off the results at 400. I have read through this thread (twice!) and made suggested changes to sphinx.php [$cl->SetLimits()] and sphinx.conf (max_matches) with no change to the results. (I also searches the "Common Forum" at sphinxsearch.com, no luck!) Any insight into this would be most appreciated! Later, RayJ |
Have you restarted searchd?
|
There were some problems with the assert function around post #280.
My solution to these was to turn assert warnings off using the single line of code:
You can do this in the api file or in sphinx.php I've just re-indexed with the post table at a min word length of 3. As you can see from the command line the process was niced at 20 and there were 400 active users on the site. I'm hugely impressed by this implemention.
|
2 Attachment(s)
Another post from me (might get auto-merged)...
I wanted to easily see the query.log that searchd creates, I always think it's good to try to give something back to a project that you like too :)
It's really that easy. Now look in your AdminCP menu system under Statistics & Logs for Sphinx Search Log :) |
Quote:
After I read your post I restarted searchd and preformed command line and forum search again, but the results were the same. I indexed -all as well and tried again, no joy! Do you know of any settings in vBulletin that would limit the search results? Later, RayJ |
Quote:
Depending on what people searched before, queries could of taken several minutes (and we all know nobody waits that long for a web page to load). Queries like that would cause the post table to be locked and thus anyone trying to post would of also been sitting waiting until the search compelted. Usually people got impatient too and would click the search button several times, only queuing up the searches even more. Until I installed this sphinx search mod, the only course of action was to have a custom script that would kill any search queries that took over 60 seconds (to prevent the issues above). Yes everything on the server was extremely optimized, and I even had to set the mysql fulltext min characters to 5, and max to like 12-15 I think it was. Basically the only two things out there is sphinx & mnogosearch mods for vB. I chose this one because it was the most transparent. Now searches are usually done in way under 1 second, and even though the results could sometimes be out of (date) order, it still works a million times better than before. I plan on installing this on my own forum too, as searches are starting to cause issues. Searching is one of the last weak points of vBulletin and really needs to be addressed. Quote:
vB also does a lot of weighting and will toss out low results (irritating as it can produce no results even when there are). I do not know if this is still used with sphinx though, if it is then that probably explains your issue. |
Quote:
Eureka! :D vBulletin Control Panel -> vBulletin Options -> Message Searching Options -> Maximum Search Results to Return (was set to 400 now set to 9000) Worked perfectly! :D Thank you! And thanks to all who worked on helping get Sphinx Search working on vBulletin! Extra thanks to orban! Later, RayJ |
Glad to hear you found it, I guess I should go back and check what I have it set to also.
Ah, post #301 was what I was referring to before. Anyhow, glad you figured out what it was. I guess all three of those settings need to be the same for the most optimal results. This is a true must-have for any large forum, the mysql fulltext index search goes painfully slow after you exceed a certain number of posts, and the other vB search feature never worked all that wll for me. This would really be the next big thing I would like to see vB integrate into new versions. They already support things like other datastore caches, why not other search engines? Anyhow, I'm about to tackle another install, this time on my forum. Should go smoother than the first time now that I know all the ins & outs. The biggest thing is just making sure you rename everything properly in the config files. |
I got some large forums and i try to use Sphinx now.
Problem 1.) using config file '/usr/local/sphinx/etc/sphinx.conf'... WARNING: index 'vbpost': failed to preload schema and docinfos - NOT SERVING WARNING: index 'vbpostindex': failed to preload schema and docinfos - NOT SERVING WARNING: index 'vbthreadindex': failed to preload schema and docinfos - NOT SERVING WARNING: index 'vbthreadindexdelta': failed to preload schema and docinfos - NOT SERVING WARNING: index 'vbfulltext': no such local index 'vbpost' - NOT SERVING WARNING: index 'vbfulltext': no such local index 'vbpostindex' - NOT SERVING WARNING: index 'vbfulltext': no valid local/remote indexes in distributed index - NOT SERVING WARNING: index 'vbfulltextthread': no such local index 'vbthreadindex' - NOT SERVING WARNING: index 'vbfulltextthread': no such local index 'vbthreadindexdelta' - NOT SERVING WARNING: index 'vbfulltextthread': no valid local/remote indexes in distributed index - NOT SERVING The stuff was build, still i get this. What todo ? Problem 2.) Can it be used for multiple forums on the same server ? |
You probably have a configuration error, I would double-check the conf file and compare to the one in the post. One little mistake and the whole thing breaks (took me forever to find the one line I missed).
I don't see why you couldn't use it for multiple forums, just create more things in the config file with different names connecting to the different databases. |
Here it is. I donīt see any mistake.
It would be really nice if someone could confirm it. Thanks alot.
|
Do you have sphinx as a separate DB? I just made it a table within my forum to keep everything consolidated (since the tables don't hold much data anyhow).
I would double check the sphinx table & field names. Like on mine they are 'sph_counter', not 'sphinx_counter', which is an inconsistency within the documentation and supplied example stuff. Other than that, the code looks okay to me. |
Quote:
|
Did anyone else upgrade to php 5.2.1 and have their sphinx install break? I haven't had time to look into it yet, but mine fails to return results and I'm getting a:
Query '' retrieved -2114543231 of 1 matches in -2147483.222 sec. Heh. Hm. It is definitely something PHP 5.2.1 related. I went back to 5.2.0 and it is working just fine. I guess I'll have to look at the changelog in the morning to see if I can figure out what is wrong. |
Yeah I had that, and recreated all my indices and restarted searchd and then it worked ;/ Really wierd tho.
|
Quote:
Quote:
I made sure I upgraded my sphinxapi.php file when I upgraded too, and that didn't do it, so it is either that or something in your sphinx.php that is breaking, but I haven't been able to figure out what just yet. Is anyone else running 5.2.1? |
I'm running 5.2.1 :/
It didn't work but after recreating all indices and restarting searchd it suddenly did. I didn't have to change any other files. |
Quote:
Update: I'm working with the Sphinx author on a fix. It's a 64-bit/PHP 5.2.1 + sphinxapi bug. |
All times are GMT. The time now is 08:38. |
Powered by vBulletin® Version 3.8.14
Copyright © 2022, MH Sub I, LLC dba vBulletin. All Rights Reserved. vBulletin® is a registered trademark of MH Sub I, LLC
Copyright ©2001 - , vbulletin.org. All rights reserved.