从 Sage 网关返回后会话被销毁

发布于 2024-12-17 08:02:24 字数 149 浏览 2 评论 0原文

我使用 SagePay Form 集成方法开发了一个模块。它工作正常,直到它从 Sagepay 站点返回并且我的所有本地用户会话变量由于某种原因被破坏。因此我无法使用我自己创建的会话变量并保存有关该特定订单的用户信息。 它返回的 url 是成功和失败的 url。 可能的原因是什么?

I have developed a module using SagePay Form integration method. It works fine until it returns from the Sagepay site and all of my local user session vars are destroyed for some reason.Thus i am unable to use my own created session vars and save information about a user regarding that specific order.
The url's it returns to are success and failure urls.
What might be the possible reason?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲凉≈ 2024-12-24 08:02:24

不要依赖当您返回站点时会话变量可用 - 由于多种原因,它们可能不可用。相反,请在传递到 SagePay 之前保存您的交易数据(您随后应该使用此处生成的唯一标识符来识别您的交易,例如数据库主键条目)。将此交易标记为“待付款”或类似交易。

当 SagePay 将客户返回到您的站点时,您将拥有唯一标识符来相应地查找已保存的交易数据。然后,您可以将交易标记为“已付款”或“付款被拒绝”等,并且您将能够根据需要显示用户的交易数据。

Don't rely on the session variables to be available when you're returned to your site - for a variety of reasons, they may not be. Instead, save your transaction data prior to passing to SagePay (you should subsequently use a unique identifier generated here to identify your transaction, eg a database primary key entry). Flag this transaction as "pending payment" or similar.

When SagePay returns the customer to your site, you'll have the unique identifier to look up the saved transaction data accordingly. You can then mark the transaction as "paid" or "payment declined" etc, and you'll be able to display the user's transaction data as you wish.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文