General Question

2001-02-11 Thread Buddy Lee Haystack
Situation: I press the submit button on a form 55 times in 15 seconds. Each request would normally return data to the browser within ten seconds due to the time it takes the database query to execute. Question: What happens to the 54 earlier processes, since I submitted the request 55 times? H

General Question

2001-02-15 Thread Kiran Kumar.M
hi,     I would like to know what header to print to view this on the browser, if text/html is entered the image is not displayed and if image/gif is entered  the image does not appear , thanks in advance   Kiran   ps: if this is not the right place to ask this question please tell me where

Re: General Question

2001-02-11 Thread Stas Bekman
On Sun, 11 Feb 2001, Buddy Lee Haystack wrote: > Situation: > I press the submit button on a form 55 times in 15 seconds. Each request would >normally return data to the browser within ten seconds due to the time it takes the >database query to execute. > > > Question: > What happens to the 5

Re: General Question

2001-02-11 Thread Ken Williams
[EMAIL PROTECTED] (Buddy Lee Haystack) wrote: >Situation: >I press the submit button on a form 55 times in 15 seconds. Each >request would normally return data to the browser within ten seconds >due to the time it takes the database query to execute. > > >Question: >What happens to the 54 earlier

Re: General Question

2001-02-12 Thread Mike Wojcikiewicz
If youre looking for a solution, i suggest putting in a little javascript on the form.. ... as for the other processes, its been my experience tha

Re: General Question

2001-02-12 Thread Buddy Lee Haystack
Yes, I remember Gunther recommending the javascript approach a while back, and I think it is a good solution, but I just can't stand javascript. I always surf with it turned off, because it frequently causes my browser to hang. It's a personal hang-up. I was really interested in just learning h

Re: General Question

2001-02-16 Thread G.W. Haywood
Hi there, On Fri, 16 Feb 2001, Kiran Kumar.M wrote: > I would like to know what header to print to view this on the browser Your question is not very clear, are you using mod_perl? If so how is it configured? Have you read .../mod_perl/SUPPORT? Have you seen the Eagle Book? Have you read th

RE: General Question

2001-02-17 Thread S Muthu Ganesh
al Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kiran Kumar.MSent: 16 February 2001 13:36To: modperlSubject: General Question hi,     I would like to know what header to print to view this on the browser, if text/html is entered the image is not di

general question regarding sessions

2000-07-29 Thread me
I came to a web application development(modperl) in a middle way. The existing session management is basically save pairs of info(user:xxx...) into a /tmp file named clientip-random#-random#-timestamp, and use a similar format cookie to find corresponding session in /tmp to do authentication.

Stop button (was: Re: General Question)

2001-02-11 Thread Bill Moseley
At 08:43 AM 02/12/01 +0800, Stas Bekman wrote: >> What happens to the 54 earlier processes, since I submitted the request 55 times? How do Apache & mod_perl handle the processes to nowhere? > >They get aborted the first moment they try to send some output (or read >input if they didn't finish yet)

Re: Stop button (was: Re: General Question)

2001-02-11 Thread Bill Moseley
I don't know why I have to learn this fresh again each time -- it appears I'm confusing mod_perl and mod_cgi. Let's see if I have this right. Under mod_perl and apache >= 1.3.5 if the client drops the connection Apache will ignore it (well it might print an info message to the log file about "br

Re: Stop button (was: Re: General Question)

2001-02-13 Thread Stas Bekman
On Sun, 11 Feb 2001, Bill Moseley wrote: > I don't know why I have to learn this fresh again each time -- it appears > I'm confusing mod_perl and mod_cgi. > > Let's see if I have this right. Under mod_perl and apache >= 1.3.5 if the > client drops the connection Apache will ignore it (well it mi

Re: Stop button (was: Re: General Question)

2001-02-26 Thread Steve Hay
Hi, Stas Bekman wrote: > Apache 1.3.6 and up -- STOP pressed: > > the code keeps on running until it tries to read from or write to the > socket. the moment this happens, the script will stop the execution, and > run cleanup phase. > > I think it's the same under mod_perl and mod_cgi. Am I right

Re: Stop button (was: Re: General Question)

2001-02-26 Thread Bill Moseley
At 02:02 PM 02/26/01 +, Steve Hay wrote: >I have a script which I wish to run under either mod_perl or CGI which does >little more than display content and I would like it to stop when the user >presses Stop, but I can't get it working. You need to do different things under mod_perl and mod_c

Re: Stop button (was: Re: General Question)

2001-02-27 Thread Steve Hay
Bill Moseley wrote: > At 02:02 PM 02/26/01 +, Steve Hay wrote: > >I have a script which I wish to run under either mod_perl or CGI which does > >little more than display content and I would like it to stop when the user > >presses Stop, but I can't get it working. > > You need to do different

OT: Is there a general question apache mailing list?

1999-10-15 Thread Olsen, James
Hello list, I have apache 1.3.6 with mod_perl 1.21 installed. I've been using it without any problems for a long time, and I've now reach a point where I'd like to use server side includes like Normally, on other web sites this is a painless procedure. The httpd.conf is pretty much unmodifie

Re: OT: Is there a general question apache mailing list?

1999-10-15 Thread Joshua Chamas
I've found SSI to be often problematic since when it doesn't work, it does so silently like you are saying. Your syntax below looks fine, so I'm no help there, but if you want other options, the modperl modules Apache::SSI, and Apache::ASP will also handle the include file SSI directive. Thes

Re: OT: Is there a general question apache mailing list?

1999-10-15 Thread Pouneh Mortazavi
I had a similar problem. in order to get includes to work, you need to set 'Options Includes' in a Location/Directory directive. > _ > Joshua Chamas Chamas Enterprises Inc. > NODEWORKS >> free web link moni

Re: OT: Is there a general question apache mailing list?

1999-10-15 Thread Eugene Sotirescu
Do you have Includes enabled in the Options for the directory that has your .shtml files? (http://www.apache.org/docs/mod/mod_include.html) "Olsen, James" wrote: > > Hello list, > > I have apache 1.3.6 with mod_perl 1.21 installed. I've been using it > without any problems for a long time, and

Re: OT: Is there a general question apache mailing list?

1999-10-27 Thread Greg Stark
Two things wrong, 1) as others have pointed out you need Options +Includes 2) you need a space before the --> otherwise it's misparsed (you must _not_ have a space in or after the > > Normally, on other web sites this is a painless procedure. The httpd.conf > is pretty much unmodified as

Re: OT: Is there a general question apache mailing list?

1999-10-28 Thread Ken Williams
[EMAIL PROTECTED] (Greg Stark) wrote: >2) you need a space before the --> otherwise it's misparsed > (you must _not_ have a space in or after the