Re: multiple cookies in Apache module.

1999-10-14 Thread Rick Myers
On Oct 15, 1999 at 15:30:08 +0700, Simon Tneoh Chee-Boon twiddled the keys to say: > Hello, I already tested by using telnet. I found that CGI->header works fine, > it sends two line > of "Set-Cookie". Apache->header_out doesn't work, if I call it twice, only the > second > cookie is sent in one

Re: multiple cookies in Apache module.

1999-10-14 Thread Simon Tneoh Chee-Boon
Jay J wrote: > Hey Simon, > In order to debug.. why not temporarily send two headers, then one gets sent > to the browser (so you can see it)? > Either that or use telnet/lwp-request and get a look at it that way.. > -Jay J Hello, I already tested by using telnet. I found that CGI->header wo

multiple cookies in Apache module.

1999-10-14 Thread Simon Tneoh Chee-Boon
module: $r->header_out('Set-Cookie' => [$cookie1, $cookie2]); or $r->header_out('Set-Cookie' => $cookie1); $r->header_out('Set-Cookie' => $cookie2); they fail. I wonder how to send multiple cookies in Apache module? Or I can only combine all the informa