Bonjour,
Voilà, je suis en localhost, et j'ai installé ozziogallery3, et ça fonctionne bien, mais j'ai sous le menu et avant l'affichage des photos, ces erreurs:
Strict Standards: Declaration of OzioController::display() should be compatible with JController::display($cachable = false, $urlparams = false) in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\controller.php on line 31
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 38
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 40
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 41
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 42
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 61
Sur le controleur.php la ligne 31 est un }
Sur le viev.html.php, il y a ces lignes (commence à la ligne 36):
36 {
37 jimport('joomla.html.pane');
38 $pane = & JPane::getInstance('sliders');
39
40 $pubblicate = & $this->get( 'Pubblicate' );
41 $nonpubblicate = & $this->get( 'Nonpubblicate' );
42 $cestinate = & $this->get( 'Cestinate' );
43
44 $this->assignRef('pane' , $pane);
45 $this->assignRef('pubblicate' , $pubblicate);
46 $this->assignRef('nonpubblicate' , $nonpubblicate);
47 $this->assignRef('cestinate' , $cestinate);
48
49 if (count($errors = $this->get('Errors'))) {
50 JError::raiseError(500, implode("\n", $errors));
51 return false;
52 }
53
54 $this->addToolbar();
55 parent::display($tpl);
56 }
57
58
59 protected function addToolbar()
60 {
61 $document = & JFactory::getDocument();
Ces lignes n'empêchent pas de marcher, mais les erreurs affichées font désordre...
A votre avis, il se passe quoi ? Merci d'avance.
Voilà, je suis en localhost, et j'ai installé ozziogallery3, et ça fonctionne bien, mais j'ai sous le menu et avant l'affichage des photos, ces erreurs:
Strict Standards: Declaration of OzioController::display() should be compatible with JController::display($cachable = false, $urlparams = false) in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\controller.php on line 31
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 38
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 40
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 41
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 42
Strict Standards: Only variables should be assigned by reference in D:\xampplite\htdocs\papa\administrator\components\ com_oziogallery3\views\ozio\view.html.php on line 61
Sur le controleur.php la ligne 31 est un }
Sur le viev.html.php, il y a ces lignes (commence à la ligne 36):
36 {
37 jimport('joomla.html.pane');
38 $pane = & JPane::getInstance('sliders');
39
40 $pubblicate = & $this->get( 'Pubblicate' );
41 $nonpubblicate = & $this->get( 'Nonpubblicate' );
42 $cestinate = & $this->get( 'Cestinate' );
43
44 $this->assignRef('pane' , $pane);
45 $this->assignRef('pubblicate' , $pubblicate);
46 $this->assignRef('nonpubblicate' , $nonpubblicate);
47 $this->assignRef('cestinate' , $cestinate);
48
49 if (count($errors = $this->get('Errors'))) {
50 JError::raiseError(500, implode("\n", $errors));
51 return false;
52 }
53
54 $this->addToolbar();
55 parent::display($tpl);
56 }
57
58
59 protected function addToolbar()
60 {
61 $document = & JFactory::getDocument();
Ces lignes n'empêchent pas de marcher, mais les erreurs affichées font désordre...
A votre avis, il se passe quoi ? Merci d'avance.
Commentaire