Replies: 1 comment 5 replies
-
|
Closing. Found another solution. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I moved my booking website to latest version of Formwork. At same time, php is also updated to 8.3 from 7.x
There is a different behavior than the old site using php 7 and Formork 2.0.0-beta.4. I'm not sure if it's related to Formwork or php 8.x
My workflow is:
The last step is no longer working. I always get error like 'array key not defined'
I make sure the session is started, I also added session_write_close before first redirect.
And I just tried to replace $_SESSION by Formwork built-in session using:
$this->app->request()->session()->set('reservation_id')
$this->app->request()->session()->save()
$this->app->request()->session()->get('reservation_id')
But same thing. When I'm going back the my site, the session variable is no longer there... like if it started a fresh new session..
Any idea ?
Beta Was this translation helpful? Give feedback.
All reactions