Jump to content

Bug in ModuleCore Administration


Recommended Posts

Bonjour j'ai un problème dans ma page d'adminisration prestashop 1.6 merci de me donner quelque piste:

/srv/data/web/vhosts/www.epitex.fr/htdocs/modules/lyoshowvatname/lyoshowvatname.php on line 13

Strict Standards: Declaration of shopimporter::cleanPositions() should be compatible with ModuleCore::cleanPositions($id_hook, $shop_list = NULL) in /srv/data/web/vhosts/www.epitex.fr/htdocs/modules/shopimporter/shopimporter.php on line 31

Strict Standards: Declaration of LyoShowVatFreeModuleCore::enable() should be compatible with ModuleCore::enable($forceAll = false) in /srv/data/web/vhosts/www.epitex.fr/htdocs/modules/lyoshowvatfree/lyoshowvatfree.php on line 13

Strict Standards: Declaration of LyoShowVatFreeModuleCore::disable() should be compatible with ModuleCore::disable($forceAll = false) in /srv/data/web/vhosts/www.epitex.fr/htdocs/modules/lyoshowvatfree/lyoshowvatfree.php on line 13

Link to comment
Share on other sites

Bonjour,

 

Il s'agit du module LyoShowVatFreeModuleCore de votre site qui ne respecte pas certains standard. Surement du à une mise à jour récente de votre Prestashop ou de l'affichage des erreurs.

 

Vous devriez regarder dans le fichier /htdocs/modules/lyoshowvatfree/lyoshowvatfree.php et mettre à jour les fonctions cleanPositions(), enable() et disable().

Link to comment
Share on other sites

Bonjour,

 

J'ai également une erreur qui s'affiche depuis l'installation de ce module.

 

Que puis-je faire?

 

Voici l'erreur qu'il m'affiche :

 

Unknow error à la ligne 567 du fichier /var/www/vhosts/articlesdebureau.be/httpdocs/modules/lyoshowvatfree/core/LyoModuleCore.php
[2048] Declaration of LyoShowVatFreeModuleCore::enable() should be compatible with ModuleCore::enable($forceAll = false)

Unknow error à la ligne 567 du fichier /var/www/vhosts/articlesdebureau.be/httpdocs/modules/lyoshowvatfree/core/LyoModuleCore.php
[2048] Declaration of LyoShowVatFreeModuleCore::disable() should be compatible with ModuleCore::disable($forceAll = false)

 

 

 

Merci d'avance pour votre aide.

 

Olivier

Link to comment
Share on other sites

  • 1 month later...

La déclaration de enable devrai peut-être contenir le paramètre $forceAll = false

 

public function enable($forceAll = false)
{
    //Tes propres instructions
    //...


   return parent::enable($forceAll = false);
}


public function disable($forceAll = false)
{
    //Tes propres instructions
    //...


    return parent::disable($forceAll = false);
}
  • Like 1
Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...