I added the security: true flag to my settings for the backend and was able to log in just fine in my dev env, but not having any luck in production. I keep getting the above error. Any ideas or directions you could point me in?
Share
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 was because in my production env I have no_script_name set to true and the login request was getting forward to the front end app which didn’t recognize the token. I set up a subdomain with
DirectoryIndex backend.phpset in the vhost. Problem solved.