Reserving tickets does not work #1177
-
I tried to run Alfio on a system of mine, but after creating an event and trying to reserve a ticket, I get the following messages in the log and Alfio does not seem to respond on the UI-side: Select amount of tickets: Click 'Continue': I installed Alfio and ran it manually (java -jar alfio.war) with alfio accessible through an Apache2 reverse proxy (admin section works just fine). Dev disabled and the required headers to make it work (x-forwarded-proto and x-forwarded-ssl and x-forwarded-for and x-real-ip) have been configured to pass through. Enabling dev-mode does not help and gives the same errors. What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Hi, by looking at the corresponding issue #1176 , it looks like that for some reasons the client (or the browser) is not picking up the session when you try to submit the ticket reservation request.
|
Beta Was this translation helpful? Give feedback.
-
I believe that your Apache proxy is doing more than it should. This is how the cookies should look like:
here are cookies from your response:
it looks like it's adding |
Beta Was this translation helpful? Give feedback.
I believe that your Apache proxy is doing more than it should. This is how the cookies should look like:
here are cookies from your response:
it looks like it's adding
;HttpOnly;Secure;SameSite=strict
at the end of each cookie (see SESSION withHttpOnly
defined twice)XSRF-TOKEN
cannot beHttpOnly
. It must be accessible…