Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Re: Server getting and utilizing cookie

by sutch (Curate)
on Mar 02, 2001 at 08:13 UTC ( [id://61741]=note: print w/replies, xml ) Need Help??


in reply to Re: Server getting and utilizing cookie
in thread Server getting and utilizing cookie

This is close to what I have done for testing for users/browsers acceptance of cookies. Instead of using a test cookie though, directly set the necessary cookie and pass a query string in the redirect. I have run into situations where a user may accept one cookie but not the next!

Modifying dvergin's pseudo-code:

if $cookie = $cgi->cookie("CookieName") check to see if it meets our standards do business else if $cgi->param("TestingCookie") # no need to test value #we tried to set a cookie and failed bailout # or notify user of cookie failure and continue set the cookie set a http location: header line that includes: the url by which we arrived here + CookieName=value in the query string + a query string TestingCookie=1 clean up and exit end

Replies are listed 'Best First'.
Re: Re: Re: Server getting and utilizing cookie
by dvergin (Monsignor) on Mar 03, 2001 at 00:12 UTC
    Good catch sutch. I puzzled over your comments until I realized that I had mis-typed. The line in my post should, of course, be:
    elsif $cgi->param("CookieTest") not elsif $cgi->cookie("CookieTest")
    And with that, I think our solutions are substantially the same.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://61741]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-20 01:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found