<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Custom Field Searching WordPress Using Sphinx</title>
	<atom:link href="http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/</link>
	<description>Send us your brain...let us do the thinking for you!</description>
	<lastBuildDate>Tue, 03 Jan 2012 13:57:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Rotten Monkey</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-753</link>
		<dc:creator>Rotten Monkey</dc:creator>
		<pubDate>Thu, 12 May 2011 16:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-753</guid>
		<description>John......YOU ARE THE MAN!  Thanks to your custom field search article (the one you mentioned in this article), I was on the hunt for Sphinx....sadly it doesn&#039;t search and index custom fields....however, THIS POST seems to have that solution for me, as Ivinko want&#039;s $300 to modify their plugin to function with custom fields.

My question to you is.....Should I just copy the changed files and store them for when they have a Sphinx update, or should I just not update when their updates come around?</description>
		<content:encoded><![CDATA[<p>John&#8230;&#8230;YOU ARE THE MAN!  Thanks to your custom field search article (the one you mentioned in this article), I was on the hunt for Sphinx&#8230;.sadly it doesn&#8217;t search and index custom fields&#8230;.however, THIS POST seems to have that solution for me, as Ivinko want&#8217;s $300 to modify their plugin to function with custom fields.</p>
<p>My question to you is&#8230;..Should I just copy the changed files and store them for when they have a Sphinx update, or should I just not update when their updates come around?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ways to get your ex back</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-669</link>
		<dc:creator>ways to get your ex back</dc:creator>
		<pubDate>Fri, 11 Mar 2011 22:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-669</guid>
		<description>[...] The Braindonor Network    &#187; Custom Field Searching Wordpress Using Sphinx [...]</description>
		<content:encoded><![CDATA[<p>[...] The Braindonor Network    &raquo; Custom Field Searching WordPress Using Sphinx [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Researching better search functionality for the CUNY J-School network &#124; Daniel Bachhuber&#039;s weblog</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-607</link>
		<dc:creator>Researching better search functionality for the CUNY J-School network &#124; Daniel Bachhuber&#039;s weblog</dc:creator>
		<pubDate>Mon, 24 Jan 2011 19:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-607</guid>
		<description>[...] on extending WordPress search with Sphinx.Extending search sources to custom fields is apparently as simple as adding to the select query.The best way to dynamically add new blogs to the index for WordPress multisite is by editing the [...]</description>
		<content:encoded><![CDATA[<p>[...] on extending WordPress search with Sphinx.Extending search sources to custom fields is apparently as simple as adding to the select query.The best way to dynamically add new blogs to the index for WordPress multisite is by editing the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress and Sphinx &#171; EVOL.reverse</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-427</link>
		<dc:creator>Wordpress and Sphinx &#171; EVOL.reverse</dc:creator>
		<pubDate>Fri, 03 Sep 2010 11:39:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-427</guid>
		<description>[...] http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/   &#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/" rel="nofollow">http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/</a>   &nbsp; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Hoff</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-130</link>
		<dc:creator>John Hoff</dc:creator>
		<pubDate>Wed, 18 Nov 2009 05:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-130</guid>
		<description>Using a serialized array does get tricky.  You have to unpack part of the array in the SQL statement and only use SQL to do it.  Say you are given meta_value along the lines of:
&lt;code&gt;custom.meta_value = &quot;aaa,bbb,ccc&quot;&lt;/code&gt;&lt;br /&gt;

You can unpack that and assign each piece to an sql column:
&lt;code&gt;SUBSTRING_INDEX(SUBSTRING_INDEX(custom.meta_value, &quot;,&quot;, 1), &quot;,&quot;, -1) as first,
SUBSTRING_INDEX(SUBSTRING_INDEX(custom.meta_value, &quot;,&quot;, 2), &quot;,&quot;, -1) as second,
SUBSTRING_INDEX(SUBSTRING_INDEX(custom.meta_value, &quot;,&quot;, 3), &quot;,&quot;, -1) as third,&lt;/code&gt;&lt;br /&gt;
You might also need to use TRIM to remove any quote marks.  Hope that points you in the right direction.</description>
		<content:encoded><![CDATA[<p>Using a serialized array does get tricky.  You have to unpack part of the array in the SQL statement and only use SQL to do it.  Say you are given meta_value along the lines of:<br />
<code>custom.meta_value = "aaa,bbb,ccc"</code></p>
<p>You can unpack that and assign each piece to an sql column:<br />
<code>SUBSTRING_INDEX(SUBSTRING_INDEX(custom.meta_value, ",", 1), ",", -1) as first,<br />
SUBSTRING_INDEX(SUBSTRING_INDEX(custom.meta_value, ",", 2), ",", -1) as second,<br />
SUBSTRING_INDEX(SUBSTRING_INDEX(custom.meta_value, ",", 3), ",", -1) as third,</code><br />
You might also need to use TRIM to remove any quote marks.  Hope that points you in the right direction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jörn</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-129</link>
		<dc:creator>Jörn</dc:creator>
		<pubDate>Tue, 17 Nov 2009 10:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-129</guid>
		<description>Hi, thanks for this!
i have a serialized Array in one meta_value. Is there a way to make them searchable too?</description>
		<content:encoded><![CDATA[<p>Hi, thanks for this!<br />
i have a serialized Array in one meta_value. Is there a way to make them searchable too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Hoff</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-70</link>
		<dc:creator>John Hoff</dc:creator>
		<pubDate>Mon, 22 Jun 2009 19:47:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-70</guid>
		<description>My post concerned how to modify an existing plugin, &lt;a href=&quot;http://wordpress.org/extend/plugins/wordpress-sphinx-plugin/&quot; rel=&quot;nofollow&quot;&gt;Sphinx Search&lt;/a&gt;, to perform searches on custom fields.  I have not created a plugin to handle custom fields automatically.  The primary reason for this is that using custom fields heavily in a Wordpress installation already requires a lot of customization--so adding another plugin into the mix isn&#039;t really necessary.</description>
		<content:encoded><![CDATA[<p>My post concerned how to modify an existing plugin, <a href="http://wordpress.org/extend/plugins/wordpress-sphinx-plugin/" rel="nofollow">Sphinx Search</a>, to perform searches on custom fields.  I have not created a plugin to handle custom fields automatically.  The primary reason for this is that using custom fields heavily in a WordPress installation already requires a lot of customization&#8211;so adding another plugin into the mix isn&#8217;t really necessary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kamal</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-69</link>
		<dc:creator>kamal</dc:creator>
		<pubDate>Mon, 22 Jun 2009 19:10:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-69</guid>
		<description>Hi, and thanks for the info, as i&#039;m bad in english and php :p i would like to know wher can i download you plugin?
Thanks</description>
		<content:encoded><![CDATA[<p>Hi, and thanks for the info, as i&#8217;m bad in english and php :p i would like to know wher can i download you plugin?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JamesD</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-48</link>
		<dc:creator>JamesD</dc:creator>
		<pubDate>Thu, 11 Jun 2009 13:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-48</guid>
		<description>Thanks for the useful info. It&#039;s so interesting</description>
		<content:encoded><![CDATA[<p>Thanks for the useful info. It&#8217;s so interesting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andres Carvajal</title>
		<link>http://www.braindonor.net/coding-blog/custom-field-searching-wordpress-using-sphinx/199/comment-page-1/#comment-24</link>
		<dc:creator>Andres Carvajal</dc:creator>
		<pubDate>Wed, 20 May 2009 23:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.braindonor.net/?p=199#comment-24</guid>
		<description>Hey John, this was really helpful! I don&#039;t think there&#039;s another site which explains how to do it.

Thank you very much,

Andres.</description>
		<content:encoded><![CDATA[<p>Hey John, this was really helpful! I don&#8217;t think there&#8217;s another site which explains how to do it.</p>
<p>Thank you very much,</p>
<p>Andres.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

