0
votes
1answer
25 views

Parsing Cookies in bash cgi scripts [closed]

I am trying to transfer from less of query strings and more of cookies. So i need to make a script that parses the cookies from the HTTP_COOKIE request header. The format of the cookies is: ...
1
vote
1answer
40 views

Perl CGI::Cookie not setting in Safari

I'm very new to perl. I have made a simple login script that is supposed to set a cookie before redirecting to my form page. I have tried everything I can think of but the cookie does not set in ...
0
votes
2answers
50 views

Passing session variables from php to perl

I need to pass php session variables from my php form to a perl script and vice versa so the forms fields can keep their values. form.php <?php session_start(); if (isset($_POST['submit'])){ ...
0
votes
2answers
238 views

Ruby CGI::Cookie raw cookie parsing

I want to be able to parse raw cookie strings in ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin10.8.0]. The CGI::Cookie library looked promising, however, it does not work how I thought it ...
0
votes
1answer
75 views

Adding cookie to webpage, with python CGI

I'm trying to add a cookie to a webpage using python's Cookie so I have: def cookie(): #create cookie1 and cookie2 here using Cookie.SimpleCookie() print cookie1 print cookie2 print ...
0
votes
0answers
269 views

CGI::Session not working with all Browsers

I have some troubles with a login/session code with PerlCGI , I can't get to resolve. Please give me a hand ! So , I have a home.pl script who creates a page with a login submit form using Jquery ...
2
votes
2answers
245 views

Perl - Redirect loop when redirect and setting cookie

I am a Perl newbie, and i'm stuck with ths problem: I have a _login.cgi script who manages the login and redirects to the index.cgi page when credentials are correct: if ...
0
votes
1answer
150 views

Retrieving value from Python SimpleCookie and using it in SELECT query

I posted a question yesterday : Redirect python script to another python script for validation of login credentials after i was done with that bit, i had another problem related to cookies. I sent ...
0
votes
0answers
249 views

Python CGI Cookies

I have a question. I am coding a python CGI script in which i have to change the background and foreground colors using html input. I am suppose to implement cookies. The problem i am facing is that i ...
2
votes
2answers
194 views

How to save a cookie after the header has been sent in Perl CGI?

I know you send a cookie to a user's browser via the HTTP header, but how do you do this after the header has been sent. For example you set a value in a form you want to grant session wide scope to. ...
2
votes
1answer
654 views

My CGI script cookie set and get

I have a site on CGI and working fine yesterday but suddenly its cookie stop working. I am unable to set cookie and get cookie in my script. below is my code. To set cookie #!/usr/bin/perl use ...
0
votes
1answer
418 views

How to (server-side) read cookies with cgi and bash?

I want to read the cookies I have set on the client with cgi and bash. However, by searching around I found that the suggestion is to use jQuery. The problem is that I want to check the cookie ...
1
vote
2answers
89 views

Managing cookies in Perl

I'm working on a Perl script that has to retrieve a file from a server. The server requires authentication that is handled internally by a different server. What I need to do to retrieve the file, is ...
1
vote
2answers
400 views

How to test if a Perl CGI::Cookie cookie is almost about to expire?

If the cookie is between 0 and x minutes away from expiration, I would like to refresh the expires value of that cookie to some set value (if the cookie is already expired, I do not want to refresh ...
1
vote
1answer
884 views

Firefox not deleting expired Perl CGI::Cookie cookies

I am using Firefox 3.6.10 (OS X Intel), and the browser collects new cookies, instead of expiring ("deleting") the old cookies. These cookies are created and added via Perl's CGI and CGI::Cookie ...
0
votes
3answers
839 views

Simple python CGI cookie script, get's data from form

Hello all I am trying to create a very simple python CGI script that takes form data and puts it in a COOKIE. Here is my code. #!/usr/bin/python print "Content-type: text/html" print import Cookie, ...
0
votes
2answers
243 views

Can't seem to access cookie in Python (2.4)

I have a CGI script for which I've successfully set a cookie (which I can see in Firefox/Chrome!) which has (say) the name uid and the content 1. I don't seem to understand how to access this cookie ...
0
votes
1answer
271 views

Python cookie is either not saved or somehow not accessible to CGI script

I think this is going to have an obvious answer... I've been looking at a bunch of examples of cookies in Python and have gathered that the proper order to present things is: get the cookie if it ...
5
votes
2answers
670 views

Why would Perl's CGI::cookie be able to set a cookie in IE, but not Firefox?

I have a bit of Perl CGI code which I'm trying to run in the project web space of a SourceForge account. The code is able to set a browser cookie just fine when talking to IE, but the cookie is not ...
0
votes
1answer
690 views

Ho to get PHP setrawcookie value back?

The IETF recommends to use base64 encoding for binary cookie values. http://tools.ietf.org/html/draft-ietf-httpstate-cookie-07 So I use setrawcookie(..) but I don't know what variable to use to get ...
0
votes
1answer
501 views

How can I detect if a cookie exists using the Ruby programming language?

I know how to read cookies using CGI and Ruby but the problem is, if I try to read cookies.value[0] when it does not exists, it breaks my program. So I need to check if the cookie is there to read ...
1
vote
2answers
341 views

How do I design a Perl cookie initialization login screen?

Guys, Based on this question I asked earlier on setting up cookies in Perl, I successfully got an answer and way to do this but am now faced with a new interesting challenge. In Perl CGI scripts, it ...
-2
votes
1answer
1k views

How do I set cookies using Perl CGI?

I have tried without success setting cookies using Perl CGI. My code looks like this: $qry = new CGI $cookie = $qry->cookie(-name=>'SERVER_COOKIE', ...
0
votes
1answer
415 views

What web servers use `COOKIE` instead of `HTTP_COOKIE`?

In the source code of the Perl module CGI.pm, in the submodule CGI::Cookies.pm, there is the following line: $raw_cookie = $ENV{HTTP_COOKIE} || $ENV{COOKIE}; I'm interested in $ENV{COOKIE} here. ...
2
votes
2answers
415 views

Is there any thing similar to HttpURLConnection in Perl?

I want to create an HTTPURLConnection to a PHP script and get the HTTP response returned by the script. Is there a way to do this in Perl? In short i want Perl equivalent to following: ...
1
vote
2answers
2k views

Python Cookies question

import cgitb import Cookie, urllib2 from cookielib import FileCookieJar cgitb.enable() c = Cookie.SmartCookie() c['ini'] = 1 savedc = FileCookieJar() savedc.add_cookie_header(c.output()) savedc.save() ...
0
votes
1answer
858 views

How does the CGI cookie work in Ruby?

Hey, This is the example I keep seeing online as how to set cookies. require "cgi" cookie = CGI::Cookie.new("rubyweb", "CustID=123", "Part=ABC"); cgi = CGI.new("html3") cgi.out( "cookie" => ...
-1
votes
1answer
698 views

Set cookies in a php cgi enviroment without using php api

How can I use cookies in a php CGI Enviroment without using any api functions from PHP?
3
votes
4answers
2k views

How would you implement FORM based authentication without a backing database?

I have a PHP script that runs as a CGI program and the HTTP Authenticate header gets eaten and spit out. So I would like to implement some kind of FORM based authentication. As an added constraint, ...