04/09/2013 at 9:18 pm
#256453
Keymaster
@ Ben
I took a look and as I kind of thought … it the page slug, search. Either one of the other plugins or maybe even the theme is adding custom rewrite rules that effectively looks for that slug and turns it in to a search. These rules happen before the rules for Connections so they run instead. Changing the page slug to something other than search will fix the issue. please understand this is not a Connections bug or issue and there’s not really anything I can do about it. Here are the custom rewrite rules that are being added.
search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$
index.php?s=$matches[1]&feed=$matches[2]
search
search/(.+)/(feed|rdf|rss|rss2|atom)/?$
index.php?s=$matches[1]&feed=$matches[2]
search
search/(.+)/page/?([0-9]{1,})/?$
index.php?s=$matches[1]&paged=$matches[2]
search
search/(.+)/?$
index.php?s=$matches[1]
search
I hope this helps.
