Re: [PHP] Custom Session Handler

2006-09-29 Thread Richard Lynch
On Thu, September 28, 2006 8:37 pm, Glenn Richmond wrote: > As for open sourcing it, that call's up to my employer, but it may > actually be a requirement (not that familiar with the license on php > source). Unless I'm very mistaken, there is no requirement for them to OpenSource it! > Anyway, t

Re: [PHP] Custom Session Handler

2006-09-28 Thread Glenn Richmond
Hi Richard, No suggestions yet, but hopefully something will come through. Wouldn't you know it, I had a brainstorm while writing this response. amazing what a night's sleep will do. The key to getting a module registered is in session.c in the function PHPAPI int php_session_register_module(ps_m

Re: [PHP] Custom Session Handler

2006-09-28 Thread Richard Lynch
On Thu, September 28, 2006 1:46 am, Glenn Richmond wrote: > I couldn't find a developers list, so I hope this is the right list to If you get no answer here, php-internals is a potential source, for a quick reference to the right part of the source where that bit of code lives. Also try finding i

[PHP] Custom Session Handler

2006-09-27 Thread Glenn Richmond
Hi guys, I couldn't find a developers list, so I hope this is the right list to post to. I need to create a custom session handler for our PHP server. We have a memcache server and so want to use that to handle our session information. I was able to get basic session code working via the custom PH