cookies not set

2003-02-16 Thread uma ramdoss
hai all, i tested the folowing proxy.pl prg. my browser displays cookies not set error. why when it sends the request to the original server, it sends connection :close header. why is it so. Thanks use strict; use HTTP::Daemon; use LWP::UserAgent; use HTTP::Request; my($CRLF)="\015\012";

Out of memory

2003-02-16 Thread Mike Blezien
Hello All, We installed a shopping cart program awhile back, written perl, which was working fine... no problems.. then when we upgraded the cart the other day, then started getting an "Out of Memory" errors from one of the scripts, but not all the time, and I've been working on this most day,

Re: mkdir will not work with a variable

2003-02-16 Thread Tom McKellips
Ok, I got it now. You mentioned tainted and I started looking at that closer. The variables were not properly untainted before using them to make a directory. Thanks for the help Tom On Thu, 13 Feb 2003 20:49:45 -0500, Wiggins d'Anconia wrote > Tom McKellips wrote: > > I tried your line and the

Re: executing system command via browser

2003-02-16 Thread Alex
Hi John Lin, you FIRST have to print the HTTP-Headers, and THEN everything else follows. this might look a little something like this: print "Content-Type: text/html\n\n"; open (COMHANDLE, '/usr/local/bin/gpg --no-tty --list-keys |') or die "can not list keys \n"; print ; close (COMHANDLE) o