PDA

Zobacz pełną wersję : przenosiny na inny serwer - nietypowy problem



whitefrog
08-11-2010, 21:35
Czy faktycznie jest to nietypowy problem to pewien nie jestem, lecz na forum odpowiedzi nie znalazłem, stąd to pytanie, ale do rzeczy:

Przenosiny z home.pl na webd
Przeniosłem pliki oraz bazę, poprawiłem cofiguration.php i po próbie odpalenia mam taki błąd:



Fatal error: Undefined class name 'jrouter' in /home/spkkolob/public_html/libraries/joomla/application/application.php on line 655
W tymże pliku jest to ten fragment:



/**
* Return a reference to the application JRouter object.
*
* @access public
* @param array $options An optional associative array of configuration settings.
* @return JRouter.
* @since 1.5
*/
function &getRouter($name = null, $options = array())
{
if(!isset($name)) {
$name = $this->_name;
}

jimport( 'joomla.application.router' );
$router =& JRouter::getInstance($name, $options);
if (JError::isError($router)) {
$null = null;
return $null;
}
return $router;
}

W powyższym fragmencie linia 655 to:

$router =& JRouter::getInstance($name, $options);W czym tkwi problem?