Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Internet Explorer Cookies

by SuperCruncher (Pilgrim)
on Jul 01, 2000 at 14:27 UTC ( [id://20739]=note: print w/replies, xml ) Need Help??


in reply to Internet Explorer Cookies

Here is a script that I wrote a few weeks back to teach myself about cookies. (Please forgive the reference to my site -- the 100 sexiest women -- but I figure that mt2k is pretty desperate to get this sorted out). I just tried the script with IE, and it works brilliantly. You'll have to change the reference to sharedcode, that's just a small package I wrote with a few shared functions in it.

#!/usr/bin/perl # # the100sexiestwomen.com - cookies.cgi # # Cookie test. # # ---------------------------------------------- # # History: # - Started 8th June 2000. # use sharedcode; ($id = scalar localtime) =~ s/(:| )//sg; if (defined($ENV{'HTTP_COOKIE'})) { print sharedcode::generate_page("Cookie test.", "Cookie value: $ENV{'HTTP_COOKIE'}<p>Hope it worked.\n"); exit; } print "Set-Cookie: 100sexy=$id; expires=Mon, 01-Jan-2001 00:00:00 GMT\ +n"; print "Location: http://www.the100sexiestwomen.com/100/cookies.cgi\n\n +";
Hope this helps. BTW I have no idea why PM puts in a plus sign there on the last 2 lines!

Replies are listed 'Best First'.
Re: Re: Internet Explorer Cookies
by tenatious (Beadle) on Jul 01, 2000 at 15:46 UTC

    I've had some wierd problems with cookies before, but they weren't limited to IE. The problem seemed to be related to not specifying either the path.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-19 10:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found