Forum Moderators: coopster
I'm setting up an e-commerce site and now I want to accept payments on my secure server which is on a different domain.
The problem is that my cart uses session variables from a different domain than the one that I want to accept payment form (my secure server).
Is there a way to read session variables from a different domain ie: share the session variables?
If you are going to do that then you had also better sign the information. As this would help to stop other people sending encrypted info to your server.
So you would need to look at the mycrypt [php.net] functions and openSSL [php.net]. This would not be for the faint of hart but is another way to get around the problem.