Tarayıcınızın çerezleri kapalı görünüyor. Bu özellik kapalı olduğu sürece kurulum uygulaması devam etmeyecektir.
Yazar: SBayir Tarih: Ekim 25, 2009 · Yorum Yap , Kategori: Joomla
Etiketler: joomla çerez hatası, joomla hata
Bazen joomla kurarken aldığımız pekte meşhur olmayan bir hata.
installation/installer/controller.php dosyasını açarak ;
if ( ! $goodEnoughForMe )
{
$model =& $this->getModel();
$model->setError(JText::_(‘WARNCOOKIESNOTENABLED’));
$view =& $this->getView();
$view->error();
return True;}
If koşuluna ait satırları aşağıda ki gibi değiştiriniz ;
if ( ! $goodEnoughForMe )
{
$session =& JFactory::getSession();
$registry =& $session->get(‘registry’);
$registry->makeNameSpace(‘application’);// Set the cookie test seed
$mainframe->setUserState(‘application.cookietest’, 1);
}
Ve Mutlu son. Problemimiz çözüldü.
