PHP is writing this error in the logs: \"Notice: Use of undefined constant\".
Error in logs:
PHP Notice: Use of undefined constant
you probably forgot to use "".
""
For exemple:
$_array[text] = $_var;
change to:
$_array["text"] = $_var;