Re: [Boston.pm] Setting cookies in different browsers

2004-09-01 Thread Alex Brelsfoard
Thanks. Good stuff. --Alex - Original Message - From: Jeremy Muhlich To: [EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 3:30 PM Subject: Re: [Boston.pm] Setting cookies in different browsers On Wed, 2004-09-01 at 14:53, Alex Brelsfoard wrote: > I am m

Re: [Boston.pm] Setting cookies in different browsers

2004-09-01 Thread Jeremy Muhlich
On Wed, 2004-09-01 at 14:53, Alex Brelsfoard wrote: > I am most certainly NOT one who knows all the nooks and crannies. > However this is a larger project that I am only picking up my part > on. Changing things to use CGI.pm would require a LOT of re-coding. > Plus these are things that I should

Re: [Boston.pm] Setting cookies in different browsers

2004-09-01 Thread Alex Brelsfoard
AB> I am not using CGI to handle the information coming in from forms. It's a AB> long story, but believe me, it works out better this way. URI> i don't believe you. show us proof. 99% of home rolled cgi solutions URI> have bugs and security holes. are you part of the 1% who knows all the UR

Re: [Boston.pm] Setting cookies in different browsers

2004-09-01 Thread Uri Guttman
> "AB" == Alex Brelsfoard <[EMAIL PROTECTED]> writes: AB> I am not using CGI to handle the information coming in from forms. It's a AB> long story, but believe me, it works out better this way. i don't believe you. show us proof. 99% of home rolled cgi solutions have bugs and security ho

RE: [Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Tal Cohen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bob Rogers Sent: Tuesday, August 31, 2004 7:21 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [Boston.pm] Setting cookies in different browsers From: "Alex Brelsfoard" <[EMAIL PROTECTED]>

Re: [Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Bob Rogers
From: "Alex Brelsfoard" <[EMAIL PROTECTED]> Date: Tue, 31 Aug 2004 14:26:35 -0500 (CDT) . . . The advice you guys gave me did indeed fix the problem for mozilla (haven't tested Safari yet) I really just needed teh \n Thanks much! So I guess the fact that it "... works beautifu

Re: [Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Alex Brelsfoard
> On 31 Aug 2004, at 3:05 PM, Alex Brelsfoard wrote: > >>> or even using CGI to create the cooking instead of doing it by hand. >> I started out using CGI, but it got in the way of other things I was >> doing > > How did it get in the way? If you use it in the object-oriented > interface, and

Re: [Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Richard Morse
On 31 Aug 2004, at 3:05 PM, Alex Brelsfoard wrote: or even using CGI to create the cooking instead of doing it by hand. I started out using CGI, but it got in the way of other things I was doing How did it get in the way? If you use it in the object-oriented interface, and don't use it to cre

Re: [Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Alex Brelsfoard
> On Tue, Aug 31, 2004 at 01:46:35PM -0500, Alex Brelsfoard wrote: > >> I am currently using the followin code to write the cookie: >> my $cookie = "Set-Cookie: " . >> "$COOKIENAME=$userID; " . >> "domain=.breltech.com; " . >> "expires=+1d"; >> print $cookie; >>

RE: [Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Tal Cohen
xt/html\n\n"; Tal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alex Brelsfoard Sent: Tuesday, August 31, 2004 2:47 PM To: [EMAIL PROTECTED] Subject: [Boston.pm] Setting cookies in different browsers OK, so here's my situation. I have a web appl

Re: [Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Ronald J Kimball
On Tue, Aug 31, 2004 at 01:46:35PM -0500, Alex Brelsfoard wrote: > I am currently using the followin code to write the cookie: > my $cookie = "Set-Cookie: " . >"$COOKIENAME=$userID; " . >"domain=.breltech.com; " . >"expires=+1d"; > print $cookie; > . > print

[Boston.pm] Setting cookies in different browsers

2004-08-31 Thread Alex Brelsfoard
OK, so here's my situation. I have a web applicaiton that you log into and it writes a tiny little userID cookie to the browser. This all works beautifully in IE. However, in Mozilla and Safari it's a different story. In Sfari, the cookie is not written at all. In Mozilla the writing of the co