Re: Apache and cgi-bin directory - Redhat 7.1

2001-07-16 Thread Mel Matsuoka
At 05:15 PM 07/16/2001 -0400, you wrote: >I have apache set up on a Linux machine running Redhat 7.1 (local home >network). The install (from rpm) placed the directories as follows: > >/var/www/html >/var/www/cgi-bin >/var/www/icons > >I can point a browser to 192.168.xxx.xxx and I am taken to th

RE: Excel to html via CGI

2001-07-16 Thread Deneb Pettersson (LMF)
> "Deneb Pettersson (LMF)" wrote: > > > > Do both these things handle graphs aswell, or do i have to use > > something else for that. Basically this is at the moment a planning > > with the spreadsheet::parseexcel module, it simply reads cell contents > in a worksheet. if you want to handle g

RE: Apache and cgi-bin directory - Redhat 7.1

2001-07-16 Thread Fco. Javier Valladolid Hdez.
- Original Message - From: Frank J. Schmuck <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 4:15 PM Subject: Apache and cgi-bin directory - Redhat 7.1 > I have apache set up on a Linux machine running Redhat 7.1 (local home > network). The install (from rpm) plac

Re: Crtl + C

2001-07-16 Thread Sergio Gonzalez
try ctrl-d, finishes sending input to command ctrl-z, suspends current process, logging out kills it Sergio Gonzalez On Mon, 16 Jul 2001, Thomas Jakub wrote: > This is the code segment I was working with. When I > hit Crtl + C, or whatever, it doesn't break at all. > It just keeps on going...

RE: Apache and cgi-bin directory - Redhat 7.1

2001-07-16 Thread Kuchler, David
Couple of things to check: Now, if I'm reading this correctly, you already have http://hostname/cgi-bin/perlfile.cgi running if you point the browser directly to that link. Now, you're trying to get that script to run by pointing to http://hostname/cgi-bin/ itself. The first thing I would check

Re: Apache and cgi-bin directory - Redhat 7.1

2001-07-16 Thread fliptop
"Brett W. McCoy" wrote: > > On Mon, 16 Jul 2001, Frank J. Schmuck wrote: > > > I have apache set up on a Linux machine running Redhat 7.1 (local home > > network). The install (from rpm) placed the directories as follows: > > > > However I can't point the browser to http://192.168.xxx.xxx//cgi-

Re: Apache and cgi-bin directory - Redhat 7.1

2001-07-16 Thread Brett W. McCoy
On Mon, 16 Jul 2001, Frank J. Schmuck wrote: > I have apache set up on a Linux machine running Redhat 7.1 (local home > network). The install (from rpm) placed the directories as follows: > > /var/www/html > /var/www/cgi-bin > /var/www/icons > > I can point a browser to 192.168.xxx.xxx and I am

Apache and cgi-bin directory - Redhat 7.1

2001-07-16 Thread Frank J. Schmuck
I have apache set up on a Linux machine running Redhat 7.1 (local home network). The install (from rpm) placed the directories as follows: /var/www/html /var/www/cgi-bin /var/www/icons I can point a browser to 192.168.xxx.xxx and I am taken to the /var/www/html directory and the file index.html

Re: checkbot text field

2001-07-16 Thread Randal L. Schwartz
> "Jerry" == Jerry Preston <[EMAIL PROTECTED]> writes: Jerry> This does not work: Jerry> undef $All_Wafers_Tested; Jerry> foreach $key ($query->param) { Jerry> undef $check_; Jerry> $check_ = $key if $key =~ /Slot/; Jerry> if( $check_ >= 0 ) { Jerry> $All_Wafers_Tested .

checkbot text field

2001-07-16 Thread Jerry Preston
Hi, This works: foreach $id ( keys %{ $actual_slots{ $wafer_id } } ) { #print "* id * $actual_slots{ $wafer_id }{ $id }* j *$j*"; if( !$table_file{ $Lot_Number }{ $j } ) { $sw_array[ $j ] = $j; $s = "$lot_number_header$Lot_Number-$sw_array[ $j ]"; my $check

Re: Crtl + C

2001-07-16 Thread Thomas Jakub
--- Chris Wilson <[EMAIL PROTECTED]> wrote: > TAKE ME OFF THIS LIST! You should send your email to [EMAIL PROTECTED] You'd get more help with how to unsuscribe if you are indeed suscribed, as opposed to sending me an email, personally... Anyhow, I've included the relevant selections of how to un

Re: Excel to html via CGI

2001-07-16 Thread fliptop
"Deneb Pettersson (LMF)" wrote: > > Do both these things handle graphs aswell, or do i have to use > something else for that. Basically this is at the moment a planning with the spreadsheet::parseexcel module, it simply reads cell contents in a worksheet. if you want to handle graphs, you'd

Re: e-mailin HTML of form results

2001-07-16 Thread fliptop
"Bradley M. Handy" wrote: > > Check out the documentation for the Net::SMTP module at: > > http://search.cpan.org/search?module=Net::SMTP you may also want to investigate mime::lite: http://search.cpan.org/search?dist=MIME-Lite -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

Re: Excel to html via CGI

2001-07-16 Thread Curtis Poe
--- Bernhard Schmalhofer <[EMAIL PROTECTED]> wrote: > When you are familiar with DBI you might also want to check DBD::Excel. > It is based on Spreadsheet::WriteExcel and Spreadsheet::ParseExcel. > CU, Bernhard > > Brad Handy I'd be very concerned about that. I've looked into the DBD::Excel modu

RE: e-mailin HTML of form results

2001-07-16 Thread Bradley M. Handy
Check out the documentation for the Net::SMTP module at: http://search.cpan.org/search?module=Net::SMTP Brad Handy --www.jack-of-all-trades.net [EMAIL PROTECTED] > -Original Message- > From: Helen Dickey [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 16, 2001 7:40 AM > To: '[E

RE: Crtl + C

2001-07-16 Thread Bradley M. Handy
If you have Term::ReadKey installed try this. If you don't have Term::ReadKey installed then you can get from CPAN at: http://search.cpan.org/search?module=Term::ReadKey If you are using Windows, then I'm not sure if Term::ReadKey will work. Here is a test script I wrote to show how Te

Crtl + C

2001-07-16 Thread Thomas Jakub
This is the code segment I was working with. When I hit Crtl + C, or whatever, it doesn't break at all. It just keeps on going... Just to make sure I have all my basis covered, what are some of the other linux break keystrokes? Here's the unbreakable code, which I want to be made breakable: $

RE: Excel to html via CGI

2001-07-16 Thread Deneb Pettersson (LMF)
Do both these things handle graphs aswell, or do i have to use something else for that. Basically this is at the moment a planning stage, and in 2-3 weeks i'll have to decide on whether it's worht the effort that i would put into this , or if it's not easier to just have a page, which someone t

Re: Excel to html via CGI

2001-07-16 Thread Bernhard Schmalhofer
"Bradley M. Handy" wrote: > > Take a look at the module Spreadsheet::ParseExcel. > > http://search.cpan.org/search?module=Spreadsheet::ParseExcel. When you are familiar with DBI you might also want to check DBD::Excel. It is based on Spreadsheet::WriteExcel and Spreadsheet::ParseExcel. CU, Bern

e-mailin HTML of form results

2001-07-16 Thread Helen Dickey
Hi, I wrote an HTML form. I wrote a perl script to read the form input and print the results on a pretty HTML table. I get the results fine and prety on my screen when I submit but I want to know how to send the resulting HTML page that I see to an e-mail address. Helen -- To unsubscribe, e-ma

RE: breakable loop???

2001-07-16 Thread Bradley M. Handy
If you are using the Term::ReadKey module, what read module do you have it in? Can you post your code? Brad Handy --www.jack-of-all-trades.net [EMAIL PROTECTED] > -Original Message- > From: Thomas Jakub [mailto:[EMAIL PROTECTED]] > Sent: Sunday, July 15, 2001 2:33 AM > To: [EMAIL PROTE

RE: Excel to html via CGI

2001-07-16 Thread Bradley M. Handy
Take a look at the module Spreadsheet::ParseExcel. http://search.cpan.org/search?module=Spreadsheet::ParseExcel. Brad Handy --www.jack-of-all-trades.net [EMAIL PROTECTED] > -Original Message- > From: Deneb Pettersson (LMF) [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 16, 2001 4:58

Excel to html via CGI

2001-07-16 Thread Deneb Pettersson (LMF)
Hi. Just wondering if someone has doen dynamic pages with infromation extracted from a excel document. My current solution for the problem is pretty simple, but it could be even easier if you can get the info out of the excel. Atm. I am thinking of saving the excel document as excel, that way i