I have a CF-7 file with 30 line of code.I am getting an error on the 31st line saying
** Invalid token '\n' found on line 31 at column 0.**
what does the error message mean?
Regards
Vas
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The error is slightly misleading. The CF compiler is trying to parse the code but failing because of a unclosed tag / block so it keeps on trying to parse until the end of the document and then it reports the error since the last thing it found was a newline which isn’t closing the tag that’s currently open. So go over the source code and check where you aren’t properly closing something. The error is before line 31.
it could be something like
and then not having a closing tag. Or it could also be you have a CF style comment