vote up 0 vote down star

I'm using Perl's CGI::Session with MySQL. No problems there.

I want to incorporate some other languages, most notably PHP, to use the same session cookie. How would I do that?

Almost the entire site is in Perl, but I want to use free PHP things, like forums and mediawiki, and still use the same session cookie.

flag

2 Answers

vote up 2 vote down

I've never tried this, but see the session_set_save_handler function. Some frameworks (like CakePHP) use this to store the session in a database. Maybe you could write some code to use the same session as perl, prepending this script to your forum, wiki, etc.

link|flag
Mediawiki already has hooks to allow you to determine how the session is read, but I don't know (exactly) how to parse the CGI::Session object into php.. – Timmy May 7 at 19:06
vote up 2 vote down

You could use the PHP::Session module. Check out Using Perl Code from PHP for other ideas.

link|flag

Your Answer

Get an OpenID
or

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