RE: Newbie cookie question

2001-01-05 Thread Stephen Beitzel
On Fri, 5 Jan 2001, James Hall wrote: [snip] $user=$query-param('login'); $password=$query-param('pass'); Okay, there's your problem. You may want to try it this way: use CGI::Cookie; ... my %cookies = CGI::Cookie-parse($r-header_in('Cookie')): my $user = $cookies{'login'};

Re: setting a variable based on the server.

2000-12-01 Thread Stephen Beitzel
The solution i'm working on is something like this: in the httpd.conf add in the linux box PerlSetVar NETP 0 in the solaris box PerlSetVar NETP 1 then change the code to if ($NETP) { return $netp-run(); }else{ return 0; } I've seen some problems with the PerlSetVar directive at my

Re: Apache::ASP (QueryString eats +)

2000-11-21 Thread Stephen Beitzel
On 21 Nov, sergen wrote: When sending text with "+" by "?" on url $Request-QueryString eats "+" (the text is absolutely the same but only this sign). Is it a bug or may be some else ? using: Mandrake 7.2 Apache 1.3.14-2mdk apache-mod_perl