UndefinedConstant
A reference is made to a constant that has not been defined.
Example
Section titled “Example”<?phpecho MAX_RETRIES; // constant not definedHow to fix
Section titled “How to fix”Define the constant with define() or const, or fix the spelling.