The most likely answer is that you have missed a $
on a variable called $test
and used test
in your code somewhere.
This is hard to verify without your code, but the error message you are referring to is what generally happens when a variable is written without the $
at the start - PHP tries to assume it is a constant of the same name.
The second option is that there is an array index 'test'
with the missing quotes, i.e. $array[test]
instead of $array['test']
.
Edit: If you are not writing any code yourself, and using only using plug-ins, you might want to do two things:
- See if you can find the error in their code (search for a variable called
test
without a $
in front of it
- Raise a bug on their site, so that they can update it