vote up 1 vote down star

I have a Rails application that uses ActiveRecordStore for sessions. I need a PHP application running on a subdomain to share the session.

I have updated the environment to allow session cookies to be accessed across subdomains, but I don't know what the php application will have to do to access the session data. Please could someone help me out with the next steps?

Thanks in advance

flag

3 Answers

vote up 0 vote down check

Thanks for the answers guys. Eventually I decided against sharing the sessions themselves, instead opting to share a hashed cookie which both applications could use to verify a user was signed in.

link|flag
vote up 3 vote down

I believe the best solution would be to turn handling of sessions over to Memcached for both PHP and Rails. If you write a simple wrapper for each (a number available online actually), then you'll be able to access the same data from either application.

link|flag
vote up 1 vote down

you need to configure in php.ini where the sessions data are stored. but even after that i am not sure it will work as php / rails probably use different formats for storing sessions.

best would probably be to store variables as JSON in some file that both rails/php can access and then import into both languages (php/ruby-rails)?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.