Ciao a tutti,
ho un problema con una migrazione.
Premetto che ne ho fatte mille e sempre andate a buon fine senza problemi.
Oggi mi trovo a migrare un sito da un server ad un altro dove incorro in questo errore:
"Fatal error: Call to a member function Header() on a non-object in /web/htdocs/www.xxx.com/home/templates/canvas/index.php on line 25"
e andando a vedere cosa c'è in quella riga di testo mi trovo questo:
<?php
JHtml::_('behavior.framework', true);
r25 ------>>>> $this->helix->Header()
->addJS('fixed-menu.js') //fixed header
->addJS('animation.js') //animation
->addCSS('flat-ui.css') //flat ui
->addCSS('animate.css,animate.min.css') //animation
->setLessVariables(array(
'preset'=>$this->helix->Preset(),
'topbar_color'=> $this->helix->PresetParam('_topbar'),
'header_color'=> $this->helix->PresetParam('_header'),
'menu_color'=> $this->helix->PresetParam('_menu'),
'bg_color'=> $this->helix->PresetParam('_bg'),
'text_color'=> $this->helix->PresetParam('_text'),
'link_color'=> $this->helix->PresetParam('_link'),
'bottom_color'=> $this->helix->PresetParam('_bottom'),
'footer_color'=> $this->helix->PresetParam('_footer')
))
->addLess('master', 'template')
->addLess( 'presets', 'presets/'.$this->helix->Preset() );
?>
Qualcuno sa dirmi che vuol dire e che devo fare?