Re: how to make http cgi pages work for https

2006-08-29 Thread Joerg Keller
hello krishna! there are no changes to be made in the script. Also want to know if any configuration changes need to be made in the apache web server. that's the point. delete ScriptAlias from default-file in the $PATH/site-enabled/ directory. if apache is set for ssl, in this path you find

RE: how to make http cgi pages work for https

2006-08-29 Thread Charles K. Clarkson
krishna prasad wrote: : Presently the above script works fine for http, when I invoke : by http:///logout.cgi. I seriously doubt that claim. For one thing you are calling subroutines from a module named Func which is not apparently loaded. Granted, Func may be loaded in another module, but it

RE: Perl script problem

2006-08-29 Thread Moore, George T.
The cgi attachment is here, but the html didn't make it. The lack of comments comes from this: tie(%mail, "SDBM_File", "c09ex3", O_RDONLY, 0) or die "Error opening c09ex3. $!, stopped"; $mail{$email} = "$name|$comments"; untie(%mail); The line $mail{$email} = "$name|

perplexing popup problem -- CGI .pm bug?

2006-08-29 Thread Mary Anderson
I am having a problem with popup-menus. Basically I have an application which first displays my popups with a default value of 'null' on the first page. I then save these to a hidden field. On a later page I call the same routine with values I have retrieved from a database and display the

RE: perplexing popup problem -- CGI .pm bug?

2006-08-29 Thread Moore, George T.
Take a look at the if statement below. I think you want <= not just < -Original Message- From: Mary Anderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2006 11:42 AM To: beginners-cgi@perl.org Subject: perplexing popup problem -- CGI .pm bug? I am having a problem with popup-me

how to pass the data in an array

2006-08-29 Thread chen li
Dear all, I am new to this list. I have a CGI script and I want to analyze the data from textarea. What I try to is to copy some data from Excel and paste them in the textarea. After pass them into param method I want to process the data line by line. Which code line does this job? Thanks, Li T

Print to new file for each results

2006-08-29 Thread Ron McKeever
I am try to use part of someones elses code that creats the data file which prints out like this: ip|result|deptA|data ip|result|deptB|data ip|result|deptC|data My goal instead of having all the data in one big file is to loop this and create a file for each result. So I would have a deptA.out

Re: Print to new file for each results

2006-08-29 Thread Sean Davis
Ron McKeever wrote: I am try to use part of someones elses code that creats the data file which prints out like this: ip|result|deptA|data ip|result|deptB|data ip|result|deptC|data My goal instead of having all the data in one big file is to loop this and create a file for each result. So I w