TvBegin Posted May 29, 2017 Share Posted May 29, 2017 Hola a todos el viernes me salto un error en el apartado de pedidos en las ventas por TPV, adjunto imagen del error. La versión de PHP que tengo instalada en el servidor es la 5.6.15 La versión de Prestashop es 1.6.1.6 En la linea 54 que es donde indica el error hay la siguiente linea $ciphertext = mcrypt_encrypt(MCRYPT_3DES, $key, $message, MCRYPT_MODE_CBC, $iv); //PHP 4 >= 4.0.2 Esta linea esta insertada en la función function encrypt_3DES($message, $key){ // Se establece un IV por defecto $bytes = array(0,0,0,0,0,0,0,0); //byte [] IV = {0, 0, 0, 0, 0, 0, 0, 0} $iv = implode(array_map("chr", $bytes)); //PHP 4 >= 4.0.2 // Se cifra $ciphertext = mcrypt_encrypt(MCRYPT_3DES, $key, $message, MCRYPT_MODE_CBC, $iv); //PHP 4 >= 4.0.2 return $ciphertext; } ¿Alguien más a tenido este error y lo ha podido solucionar? Un Saludo a todos! Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted June 1, 2017 Share Posted June 1, 2017 Revisa estos temas, para ver si te pueden ser de ayuda: https://www.prestashop.com/forums/topic/401033-cannot-access-back-office-of-fresh-installed-prestashop-1609/https://stackoverflow.com/questions/28945278/mcrypt-warning-on-update-to-php-5-6-2-key-of-size-x-not-supported Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now