Jump to content

Error message - please translate :)


nadiap

Recommended Posts

Hope someone can help.. using default store ver 1.5.3.1

Last few days I've noticed an error message at the bottom of the BO page - problem is can't remember when exactly, but often when I configure a module (any module)...

 

Can someone explain what it's trying to tell me, why I should be seeing it.

don't have any paid modules, only 2 free ones, but they work well on the site..

 

Error Message:

 

[PrestaShop] Fatal error in module Cookie:

Use of undefined constant _RIJNDAEL_IV_ - assumed '_RIJNDAEL_IV_'

Link to comment
Share on other sites

I have no idea... but to get the ball rolling, perhaps you can try and grep the RIJNDAEL string in your code base. At least you will be able to pinpoint the location(s) where this message is generated.

Note that Rijndael is an encryption algorithm...

 

IIRC, you see such message when PHP tries to use a constant and it is not defined. Perhaps you are missing a file with a define() in it, or you edited one and accidentally removed the corresponding line (or a module isn't finished...).

Link to comment
Share on other sites

Hm ok lol, have no idea what you just wrote and how to debug :) but was getting this message before I edited any files - I haven't touched any tpl files - only edited css files to style the shop.

 

If I'm missing a file, it must be from the default installation or one of the included modules... how to find it I have no idea...

Link to comment
Share on other sites

Ah, since you posted in the Developer forum, I supposed you were one...

 

I did the search for you, and found out that you probably miss lines like:

define('_RIJNDAEL_KEY_', 'Some7Letters8And9Digits1');

define('_RIJNDAEL_IV_', 'Other3Letters4And5Digits2');

in config/settings.inc.php

 

From a glance at the code, this code might be written at installation or upgrade of the shop.

 

Not sure how to fix this cleanly...

Edited by PhiLho (see edit history)
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...