Ahoj, měla jsem stejný problém, při použití vyhledávání se mi jako výsledek zobrazila errorová stránka.
Vyhledávání přestalo fungovat při aktualizaci na verzi 1.5.15
Dala jsem na Bonga a zadala na fóru joomla.org %252F joomla search
Řešení je zde, vyzkoušela jsem a funguje. Stačí v com_search, router.php zaměnit tento kód
function SearchBuildRoute( &$query )
{
$segments = array();
/*if (isset($query['searchword'])) {
$segments[] = $query['searchword'];
unset($query['searchword']);
}
// Retrieve configuration options - needed to know which SEF URLs are used
$app =& JFactory::getApplication();
// Allows for searching on strings that include ".xxx" that appear to Apache as an extension
if (($app->getCfg('sef')) && ($app->getCfg('sef_rewrite')) && !($app->getCfg('sef_suffix'))) {
$segments[] .= '/';
}
if (isset($query['view'])) {
unset($query['view']);
}*/
return $segments;
}
What I do is comment out part of the SearchBuildRoute function in /components/com_search/router.php, as follows (lines 22-36 in Joomla! 1.5.15):
Odkaz na příspěvek ve foru, kde se o tom píše:
forum.joomla.org/viewtopic.php?f=544&t=466898
byss