Contact support

Software - TimeLOG Web / Synergy WF

SWF Local Installation - The required anti-forgery cookie "__RequestVerificationToken" is not present.

SWF

For local installations the following error may occur when trying to login to the website. The required anti-forgery cookie "__RequestVerificationToken" is not present.

This is caused by the Web.Config coming from a cloud server where the following lines need to be changed to 'false'

<authentication mode="Forms"> <!-- Use requireSSL="true" in order to generate a forms auth cookie with "Secure" attribute --> <forms loginUrl="~/Account/LogOn" timeout="4320" cookieless="UseCookies" requireSSL="false" /> </authentication> <!-- Use requireSSL="true" in order for the http cookies to be generated with "Secure" attribute --> <httpCookies requireSSL="false" /> <!--<authentication mode="Windows" /> ________________________________________________________________________________________________________________