Hi I want to protect a cgi with a login+pwd window first. In further actions of my cgi, is there a way to remember that login+pwd were correct ? Or do I have...
523
Jürgen Weisental
weisen@...
Jul 3, 2000 2:02 pm
hi, ... ere correct ? 1. You can set a cookie (login ok, and a time stamp) check the cookie is valid problem: cookies 2. You can log the User IP, Time and the...
524
Yiango
yiango@...
Jul 6, 2000 2:51 am
Hi all, I've been trying to solve this problem for several hours without any success so I decided to seek help. I have a text database containing comments for...
525
Don
unixsysadm@...
Jul 6, 2000 7:30 pm
... Hello, I've got this working now, but I've run into a problem. If the file I'm editing through the browser interface is larger than approx. 700 lines, it...
526
Bill Lanier
bilanier@...
Jul 6, 2000 8:06 pm
You're probably running out of space on /tmp on the server... ... _ . __ __ ______________________________________________________|__/-\|92;||(-_|-< W O R L D...
527
beau@...
Jul 7, 2000 6:05 am
Candidate will design, develop and/or modify the programming code necessary, to implement e-commerce sites using an existing PERL application, and following...
528
beau@...
Jul 7, 2000 6:08 am
If you are or know any peers or friends who are looking to get their feet wet in Perl, send me your/their resume. I have multiple clients in NYC looking for...
529
beau@...
Jul 7, 2000 6:09 am
If you are a programmer who knows PERL and UNIX inside and out, you will have a chance to create your dream job at a great start-up with competitive salary and...
530
Greg Webster
greg@...
Jul 7, 2000 1:28 pm
As moderator, that was WAY over the top...not only did you not submit through me, or ask permission to post, but it was not just an occasional post ...
531
Smith, Eric - WPAFB/Y...
eric.smith@...
Jul 7, 2000 1:47 pm
use the DBI module and the ODBC DBD....
532
Don
unixsysadm@...
Jul 7, 2000 5:24 pm
Hello, I should have been more clear. The editing is done using perl, not vi, if that is what you are referring to. Code snippet looks like this: open(INPUT,...
533
Greg Webster
greg@...
Jul 8, 2000 12:34 am
Just for your info, after telling beau@... the rules about posting job ads here, I received the following email back. I've also put his address on...
534
Greg Webster
greg@...
Jul 8, 2000 8:40 am
Dunno if any of you know about the Obfuscated Perl contest held by The Perl Journal annually, but here is my own attempt at making obfuscated perl: ...
535
Randy Johnson
Programmer@...
Jul 11, 2000 2:36 pm
I would like to create a variabl that combines 3 variables for example OrderID= "REMOTE_ADDRESS DATE()TIME()" Where date and time is the current date and...
536
Tom Barron
tbarron@...
Jul 11, 2000 3:52 pm
... Environment variables are available from the %ENV hash. For example, $ENV{"REMOTE_ADDRESS"} would get you the value of the REMOTE_ADDRESS environment var....
537
capela@...
Jul 12, 2000 12:34 pm
I´m using sript to create an HTML document (a form, for example) I can send HTML tags to browser normally. But, when I use <img src = "xxxx.GIF">, instead of...
538
Tom Barron
tbarron@...
Jul 12, 2000 1:02 pm
... What happens when you send the script output to a file and have your browser load the file? Does it behave the same? What if you have your browser load...
539
Maisha Walker
maisha@...
Jul 12, 2000 1:06 pm
i second tom's question, what happens if you just load the image directly into the browser? does it come up? it might be a MIME extensions problem - do you...
540
Andy Dougherty
doughera@...
Jul 12, 2000 1:49 pm
... The standard localtime() function (see perldoc -f localtime) will give you the current time. The POSIX::strftime() function offers extremely flexible...
541
Nancy Pettigrew
nancy@...
Jul 12, 2000 4:23 pm
Regular expression question... I'd like to extract text from a line, from between the symbols "[" and "]". I could do multiple splits on the line, but is the a...
542
bob jacobson
bjacobson@...
Jul 12, 2000 4:28 pm
you could try something like this... you can also add more validation of course $yourlinevariable =~ /[(.+)]/; $result = $1; print("your result is $result\n");...
543
bob jacobson
bjacobson@...
Jul 12, 2000 4:31 pm
oh, don't forget to escape the [ and ]... sorry about that. $yourlinevariable =~ /\[(.+)92;]/; $result = $1; print("your result is $result\n"); ... From: bob...
544
Andy Dougherty
doughera@...
Jul 12, 2000 4:44 pm
... If you wish to do-it-yourself, you might find it useful to check out the comma-separated example in perlfaq4 (perldoc perlfaq4). Depending on the exact...
545
Andrew Johnson
andrew-johnson@...
Jul 12, 2000 5:45 pm
[regarding extracting data from between [ and ] delimiters] ! oh, don't forget to escape the [ and ]... sorry about that. ! ! $yourlinevariable =~...
546
capela@...
Jul 12, 2000 6:41 pm
... example) ... image ... in ... perl ... Thanks Tom, But let me explain better : 1- My test environment is : "NT Workstaion" + "Sambar Server 4.1" + "Perl v...
547
David E Newman
denewman@...
Jul 13, 2000 3:45 am
... Give a sample of what's in your file....
548
Rich Foreman
rich@...
Jul 13, 2000 2:57 pm
Hi guys, I am fairly new to perl and I am trying to write a script that has me stumped... First, I need to be able to edit a file that contains the following...
549
Rich Foreman
rich@...
Jul 13, 2000 7:55 pm
I tried doing this script to access a file and change it, but I keep getting an error 500.... any idea why? I will post the script below: ...
550
Andy Dougherty
doughera@...
Jul 13, 2000 9:56 pm
... 1. Let perl help you help yourself. Use the -w and -T command flags. Use the 'use strict;' pragma. #!/usr/local/bin/perl -wT use strict; ... 2. Try your...
551
Rich Foreman
rich@...
Jul 13, 2000 10:57 pm
Andy, I changed it as follows and now it works to read the data, but it will not save any changes.. Any clue: You can try it at ...