Re: [EMAIL PROTECTED] Newbie: Adding multiple Location directive to httpd.conf

2006-11-14 Thread Amit Khemka
On 11/15/06, Joshua Slive <[EMAIL PROTECTED]> wrote: On 11/14/06, Amit Khemka <[EMAIL PROTECTED]> wrote: > Hello List, > > I am using Apache/2.0.54 on Linux 2.6.11-1.1369_FC4smp. > I have a python based application server with apache, which had added > the following to htttpd.conf file: > > >

Re: [EMAIL PROTECTED] apache 2 webserver tuning

2006-11-14 Thread Sean Conner
It was thus said that the Great Xuekun Hu once stated: > Thanks for replying. > > > I've sent a message a few minutes ago, ranting about the mean of > > " > >simultaneous users". > > Here 2000 simultaneous users means 2000 connections at the same time, > not the 2000 requests/s.

Re: [EMAIL PROTECTED] apache 2 webserver tuning

2006-11-14 Thread Xuekun Hu
Thanks for replying. I've sent a message a few minutes ago, ranting about the mean of " simultaneous users". Here 2000 simultaneous users means 2000 connections at the same time, not the 2000 requests/s. I estimate about 150 requests/s. Those are all PHP dynamic requests.

Re: [EMAIL PROTECTED] apache 2 webserver tuning

2006-11-14 Thread Joel Mandapat
thanks! Domingos Parra Novo wrote: Hiyas, Joel Mandapat escreveu: The projection for number of users that the php application is around 10K simultaneous users. It is still not clear (at least to me) if you're expecting 10k (dynamic) requests per second, or just need to serve 10k use

Re: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread William A. Rowe, Jr.
Arthur Kreitman wrote: > The client is actually a WinInet (Microsoft's magic internet library) > application. Its sets INTERNET_FLAG_EXISTING_CONNECT but doesn't set > INTERNET_FLAG_KEEP_CONNECTION (the keep alive flag). In HTTP 1.0 keep alive didn't exist, then it did, but defaulted to false.

Re: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Sander Temme
On Nov 14, 2006, at 12:18 PM, Arthur Kreitman wrote: It shouldn't be, I suspect that its on the apache side. Is there any way that I can configure (or change) Apache to close the connection after the http response has been sent? http://httpd.apache.org/docs/trunk/mod/core.html#keepalive Ke

RE: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Arthur Kreitman
It shouldn't be, I suspect that its on the apache side. Is there any way that I can configure (or change) Apache to close the connection after the http response has been sent? > -Original Message- > From: Sander Temme [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 14, 2006 12:00 P

Re: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Sander Temme
On Nov 14, 2006, at 11:44 AM, Arthur Kreitman wrote: The client is actually a WinInet (Microsoft's magic internet library) application. Its sets INTERNET_FLAG_EXISTING_CONNECT but doesn't set INTERNET_FLAG_KEEP_CONNECTION (the keep alive flag). That doesn't tell me anything, since I don't k

RE: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Arthur Kreitman
The client is actually a WinInet (Microsoft's magic internet library) application. Its sets INTERNET_FLAG_EXISTING_CONNECT but doesn't set INTERNET_FLAG_KEEP_CONNECTION (the keep alive flag). > -Original Message- > From: Sander Temme [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 1

Re: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Sander Temme
Hey Arthur, On Nov 14, 2006, at 11:18 AM, Arthur Kreitman wrote: When I trace through what apache actually does, when a specific client sends lots of requests, I see just the occasional accept. What am I missing? Do you have HTTP 1.1 KeepAlive enabled on the server? Turning that off wil

[EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Arthur Kreitman
This is with  Apache 2.2 on Windows XP with mod_isapi (the 416293 update).     The usual way I thought http requests are serviced are as follows:   The server does a listen on a socket to attach it to the port (usually port 80)   The server waits on a select, when the select is satisf

[EMAIL PROTECTED] Premature Socket Disconnect with Apache 2.2/mod_isapi/Windows XP

2006-11-14 Thread Arthur Kreitman
This is with Apache 2.2 on Windows XP with mod_isapi (the 416293 update).       I’m getting a random but not too infrequent error from ap_core_output_filter (about line 903 in core_filters.c).   The error is an os 10054 “An existing connection was forcibly closed by the remote host”.  

Re: [EMAIL PROTECTED] mod_rewrite & mod_prox

2006-11-14 Thread Joshua Slive
On 11/14/06, DM <[EMAIL PROTECTED]> wrote: This appears to work. However, because I'm using mod_rewrite, only the request line is changed. For example, the value of the "referrer" header still references "cellularmanagerpp.aliant.net". Hmmm... I think that will be the case with ProxyPass as

[EMAIL PROTECTED] RewriteMap appending %0d to end of url

2006-11-14 Thread jason . chancellor
System: Running apache2.0.59 on a windows xp machine. I'm attempting to use RewriteMap to do some complex url rewriting. The problem I'm running into is that for some reason my urls end up with a %0d appended to the end. I have searched the net for solutions and have found several people with th

Re: [EMAIL PROTECTED] Newbie: Adding multiple Location directive to httpd.conf

2006-11-14 Thread Joshua Slive
On 11/14/06, Amit Khemka <[EMAIL PROTECTED]> wrote: Hello List, I am using Apache/2.0.54 on Linux 2.6.11-1.1369_FC4smp. I have a python based application server with apache, which had added the following to htttpd.conf file: SetHandler appserver-handler (I presume, to by default forward a

Re: [EMAIL PROTECTED] UserDir enabled problem

2006-11-14 Thread Joshua Slive
On 11/13/06, Ed Sawicki <[EMAIL PROTECTED]> wrote: I just compiled and installed Apache version 2.2.3 on Linux. I have mod_userdir loaded and I added these directives to the Apache configuration file: UserDir enabled UserDir disabled root UserDir public_html When I restart Apache, I get this

Re: [EMAIL PROTECTED] Any directives to modify an http response?

2006-11-14 Thread Joshua Slive
On 11/13/06, Ravi Menon <[EMAIL PROTECTED]> wrote: Hi, We have CGI apps that send back a 302 response in several places. In order not to change these apps. (yet), is it possible via some directives (akin to mod_rewrite but on the response side.) to change 302 to 301 ?? Currently we are using h

Re: [EMAIL PROTECTED] mod_ext_filter - change outtype dynamically

2006-11-14 Thread Joshua Slive
On 11/13/06, Cafer Simsek <[EMAIL PROTECTED]> wrote: Hi All, Is it possible to changing outtype in my filter script dynamically for mod_ext_filter? No, I don't believe so. This would be easy with a custom module using the regular filter API, however. Joshua.

[EMAIL PROTECTED] Cross Compile Apache2?

2006-11-14 Thread Tony Di Croce
Has anyone here ever tried to cross compile apache2?I've gotten past a lot of issues but I'm pretty stuck right now.../root/httpd-2.0.59/srclib/apr/libtool --silent --mode=link ppc_4xx-gcc  -g -O2    -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER   -I/root/httpd- 2.0.59/srcli

[EMAIL PROTECTED] Problem with POST method

2006-11-14 Thread lorenzo
Hi all. I'm sending a simple http POST request and the browser hangs waiting for a reply. This is my test page I have this problem both with httpd-2.2.3 and 2.0.46. I have no problems with GET requests. KeepAlive is turned off

[EMAIL PROTECTED] Public site problem

2006-11-14 Thread Stefano Castagnoli
Hello everyone. This is my first post, so sorry if I make stupid questions. I need to access my local website from the web and my server is behind a Firewall/Router. >From my LAN I can access the site perfectly. I can access server from remote using SSH but not using HTTP. I've set the router to NA

[EMAIL PROTECTED] Apache 2.2.3 + SSL + NT 4.0 Client

2006-11-14 Thread Serge Dubrouski
Hello - We have an Apache 2.2.3 Server + mod_ssl installed. Also we have some locations configured like this: ClientVerify none ClientVerify Optional Now here is the problem that we have. For IE 6.0 and 7.0 clients working under Windows XP everything works fine but for IE 6.0 under NT 4.

[EMAIL PROTECTED] mod_rewrite & mod_proxy

2006-11-14 Thread DM
Hi, I was presented with the seemingly straightforward task of converting URLs such as: http://cellularmanagerpp.aliant.net/myProg?param1=val1&url=http://cellularmanagerpp.aliant.net¶m3=val3 to: http://erie:9090/myProg?param1=val1&url=http://erie:9090¶m3=val3 Attempt 1 --- Use a

Re: [EMAIL PROTECTED] Incompatibility Apache reverse proxy and Internet Explorer?

2006-11-14 Thread Spil Oss
Hi Olli, What OS and apache version are/were you using? Also Windows? Also 2.2.x? (Secretly I'm hoping that all will be better on *n[iu]x) Spil. On 14/11/06, Kirchel Oliver <[EMAIL PROTECTED]> wrote: Hi, I think we had the same error. "The DMZ1 proxy is connected via ssl, the other connectio

[EMAIL PROTECTED] Newbie: Adding multiple Location directive to httpd.conf

2006-11-14 Thread Amit Khemka
Hello List, I am using Apache/2.0.54 on Linux 2.6.11-1.1369_FC4smp. I have a python based application server with apache, which had added the following to htttpd.conf file: SetHandler appserver-handler (I presume, to by default forward all request to the appserver) I wanted to add some php

Re: Re: [EMAIL PROTECTED] Apache 2.2.3 lots of empty error logs

2006-11-14 Thread Filip Kolendo
Hello, I have exactly the same problem... Apache 2.0.58 Windows 2003 Svr PHP 5.0.5 (or 5.1.4) as CGI I have noticed that empty error lines in errorlog are connected with the HTTP result status = 302 Found. I mean every time the script returns the HTTP header with status code 302, new line to

AW: [EMAIL PROTECTED] Incompatibility Apache reverse proxy and Internet Explorer?

2006-11-14 Thread Kirchel Oliver
Hi, I think we had the same error. "The DMZ1 proxy is connected via ssl, the other connections are plain http." Try to connect "the other connection" via ssl, too. That was our solution. Greetings Olli -Ursprüngliche Nachricht- Von: Spil Oss [mailto:[EMAIL PROTECTED] Gesendet: Dien

Re: AW: [EMAIL PROTECTED] Incompatibility Apache reverse proxy and Internet Explorer?

2006-11-14 Thread Christian Gottschalch
using ssl in backend may be not a good idea, because it slows down everything, try BrowserMatch ".*MSIE.*" nokeepalive ssl-unclean-shutdown or BrowserMatch ".*MSIE.*" ssl-unclean-shutdown Kirchel Oliver schrieb: Hi, I think we had the same error. "The DMZ1 proxy is connected via ssl, the o

Re: [EMAIL PROTECTED] apache 2 webserver tuning

2006-11-14 Thread Domingos Parra Novo
Hiyas, Xuekun Hu escreveu: How about 2000 simultaneous users? I plan to use DP Xeon platform with 8G ram and use Apache2.2.3 prefork. I've sent a message a few minutes ago, ranting about the mean of " simultaneous users". In resume, if you're going to serve dynamic content (be

Re: [EMAIL PROTECTED] apache 2 webserver tuning

2006-11-14 Thread Domingos Parra Novo
Hiyas, Joel Mandapat escreveu: The projection for number of users that the php application is around 10K simultaneous users. It is still not clear (at least to me) if you're expecting 10k (dynamic) requests per second, or just need to serve 10k users stored on a database or directo

[EMAIL PROTECTED] LogLevel

2006-11-14 Thread Kaushal Shriyan
Hi ALL I have set LogLevel to warn in httpd.conf, but i still see lots of notice level information in the Apache error logs. The error_log file size is increasing daily Please let me know if you need further information Thanks and Regards Kaushal --

Re: [EMAIL PROTECTED] Apache fails to detect client closing connection with windows firewall on client

2006-11-14 Thread Domingos Parra Novo
Hiyas, Try Disabling "KeepAlive" connections on your apache server (it is enabled by default). Simply edit your "httpd.conf" file, and change the following line: KeepAlive On to: KeepAlive Off And see if it works. Regards, Domingos. Frode E. Moe escreveu: (Sorr

Re: [EMAIL PROTECTED] Strange problem with Reverse proxy in Apache 2.2.3

2006-11-14 Thread Spil Oss
Martin, Don't think that that'll work. Apache will report a config error because you cant use ProxyPass in a Location block, only ProxyPass You probably want ProxyPassReverse http://numsum.com/numsum if you wish to have a header Location: http://numsum.com/numsum/people in a redirect. Spil

RE: [EMAIL PROTECTED] LogLevel

2006-11-14 Thread Boyle Owen
> -Original Message- > From: Kaushal Shriyan [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 14, 2006 10:37 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] LogLevel > > Hi ALL > > I have set LogLevel to warn in httpd.conf, but i still see lots of > notice level informati

RE: [EMAIL PROTECTED] Server Side Includes

2006-11-14 Thread Stephen Lansell
> > Hi, > > I'm new to this forum. Can someone tell me how to see the > > complete list of emails etc? > > http://marc.theaimsgroup.com/?l=apache-httpd-users Thanks for that Boyle. > Personally, I can never be bothered opening a default config and > ploughing through it.. Why not just post the

[EMAIL PROTECTED] Apache fails to detect client closing connection with windows firewall on client

2006-11-14 Thread Frode E. Moe
(Sorry for a rather long email, here's an "executive summary": Windows firewall doesn't reply with RST for TCP retransmissions on a client-closed connection, causes apache workers to get stuck for 5 minutes) Hello list, lately I've been trying to track down spurious apparent freezes in an applica

RE: [EMAIL PROTECTED] Server Side Includes

2006-11-14 Thread Boyle Owen
> -Original Message- > From: Stephen Lansell [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 14, 2006 3:42 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Server Side Includes > > Hi, > I'm new to this forum. Can someone tell me how to see the > complete list of emails e