Invalid CSRF token. Send the form again. Adminer

RamanSall picture RamanSall · Jul 11, 2016 · Viewed 10.9k times · Source

I am getting this error on export of my database in adminer. Error: Invalid CSRF token. Send the form again. If you did not send this request from Adminer then close this page. Need Help

Answer

cweiske picture cweiske · Nov 9, 2016

The problem for me was that the session cookie had the secure flag, while I was accessing adminer via http only (not https).


Our nginx configuration had

fastcgi_param HTTPS on;

which I had to remove.