Hello,
I have several forms in CF6 that use session save and retrieve, usually because of using a payment gateway. I need to store session data, go and take a payment, and then return to the form and retrieve the previously entered data.
So these forms have been working without modification for a long time (months) but suddenly all of them have stopped retrieving the session data.
We are using Joomla 3.5.1, PHP 7.2, CF 6.1.4.
I have tried both the classic and new (DataBuilder2) save session actions, with the correct session name "ss_eway" and I am retrieving the data with
// reload session data
$sessiondata = \GApp::session()->get("ss_eway", "");
$this->data['se'] = $sessiondata;
This worked for many months until about 2 days ago and I can't see any change that would cause the problem. In fact, no change at all that I know about. It affects every CF6 form that uses session save/retrieve logic.
Does anyone have suggestions about what may have happened, or how to debug the problem?
Thank you
Tim
I have several forms in CF6 that use session save and retrieve, usually because of using a payment gateway. I need to store session data, go and take a payment, and then return to the form and retrieve the previously entered data.
So these forms have been working without modification for a long time (months) but suddenly all of them have stopped retrieving the session data.
We are using Joomla 3.5.1, PHP 7.2, CF 6.1.4.
I have tried both the classic and new (DataBuilder2) save session actions, with the correct session name "ss_eway" and I am retrieving the data with
// reload session data
$sessiondata = \GApp::session()->get("ss_eway", "");
$this->data['se'] = $sessiondata;
This worked for many months until about 2 days ago and I can't see any change that would cause the problem. In fact, no change at all that I know about. It affects every CF6 form that uses session save/retrieve logic.
Does anyone have suggestions about what may have happened, or how to debug the problem?
Thank you
Tim