Jump to content

Hack attempt (OrderHistory->id_order_state is empty) avec paiement Paypal !


Recommended Posts

Bonjour,

Afin d'avoir plus de précisions sur votre problème, pouvez-vous éditer le fichier classes/Tools.php à la ligne 324 afin que la fonction displayError ressemble à ça :

    static public function displayError($string = 'Hack attempt', $htmlentities = true)
   {
       global $_ERRORS;

       Tools:(debug_backtrace());
       if (!is_array($_ERRORS))
           return str_replace('"', '"', $string);
       $key = md5(str_replace('\'', '\\\'', $string));
       $str = (isset($_ERRORS) AND is_array($_ERRORS) AND key_exists($key, $_ERRORS)) ? ($htmlentities ? htmlentities($_ERRORS[$key], ENT_COMPAT, 'UTF-8') : $_ERRORS[$key]) : $string;
       return str_replace('"', '"', stripslashes($str));
   }



Il faut en fait retirer les deux // devant Tools::D(debug_backtrace());

Link to comment
Share on other sites

  • 4 months later...

Bonjour,

J'ai le même message d'erreur sur un module chèque modifié. J'ai regardé les classes Order et OrderHistory, mais j'ai un peu de mal à savoir ce qui manque à mon module pour que ca marche. Si vous pouviez m'en dire plus sur cet id_order_state, je vous serai très reconnaissant. :)

Link to comment
Share on other sites

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...