Jump to content

V1.6.1.4 Suite Maj : Probleme Fichier Cookie.php


Recommended Posts

Bonjour,



Suite au passage hier de 1.6.0.14 à 1.6.1.4 tout était oK --> backoffice et front office.



Depuis ce matin, plus d'acces au backoffice et au front office sans aucune modification avec le messsage d'erreur (mode dev) suivant :





Fatal error: Class 'Blowfish' not found in /var/www/vhosts/laboutiquedelisa.fr/httpdocs/classes/Cookie.php on line 82

 Apres edition du fichier cookie.php : 

****************************

_COOKIE_IV_;
if ($this->_standalone) {
$this->_cipherTool = new Blowfish(str_pad('', 56, md5('ps'.__FILE__)), str_pad('', 56, md5('iv'.__FILE__)));
} elseif (!Configuration::get('PS_CIPHER_ALGORITHM') || !defined('_RIJNDAEL_KEY_')) {
$this->_cipherTool = new Blowfish(_COOKIE_KEY_, _COOKIE_IV_);
} else {
$this->_cipherTool = new Rijndael(_RIJNDAEL_KEY_, _RIJNDAEL_IV_);
}
$this->_secure = (bool)$secure;

$this->update();
}


 Que faire pour pouvoir acceder au back office et quels correctif apportée ?


 Merci de votre aide

Jean Pierre

Link to comment
Share on other sites

Vérifiez si vous avez le fichier /classes/Blowfish.php. Vous pouvez également essayer de supprimer le fichier /cache/class_index.php à vider le cache de classe.

 

Check if you have the /classes/Blowfish.php file. You can also try to remove the /cache/class_index.php file to clear class cache.

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