Sobi2 search is now working. Joomla search never worked completely with sh404SEF but i don´t care anymore. If it is some extension that i would like more to get rid of then it is this damn sh404SEF.
Line 637 in shsef.php:
function _parseSefRoute(&$uri)
{
$called = $uri->getQuery();
$exceptions = array( 'delete', 'edit', 'renew', 'save', 'update', 'search' );
foreach ( $exceptions as $exception ) {
if( stristr( $called, "task={$exception}" ) ) {
return $this->_parseRawRoute( $uri );
}
}
if( $uri->getVar( 'no_html', 0 ) ) {
return $this->_parseRawRoute( $uri );
}
$vars = array();
_log( '_parseSefRoute, parsing _uri ' . $uri->_uri);
_log( '_parseSefRoute, parsing _host ' . $uri->_host);
_log( '_parseSefRoute, parsing _path ' . $uri->_path);
include(JPATH_ROOT.DS.'components'.DS.'com_sh404sef'.DS.'sh404sef.inc.php');
I didn´t deleted log lines.