You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a sign_out link that has a DELETE HTTP method (browser posted it as POST with _method=delete in the query string). Because its url matches the SslEnforcer, so its protocol gets modified to https. However, the browser displays 404 and my server logs say:
ActionController::RoutingError (No route matches [GET] "/users/sign_out")
It means that it is rerouted but the method was changed to GET instead of POST, and rails didn't find this route.
The text was updated successfully, but these errors were encountered:
I have a sign_out link that has a DELETE HTTP method (browser posted it as POST with _method=delete in the query string). Because its url matches the SslEnforcer, so its protocol gets modified to https. However, the browser displays 404 and my server logs say:
ActionController::RoutingError (No route matches [GET] "/users/sign_out")
It means that it is rerouted but the method was changed to GET instead of POST, and rails didn't find this route.
The text was updated successfully, but these errors were encountered: