RE: [EMAIL PROTECTED] Solaris make errors

2005-10-24 Thread Boyle Owen
> -Original Message- > From: Mike Badar [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 25. Oktober 2005 01:47 > To: users@httpd.apache.org > Cc: Mike Badar > Subject: [EMAIL PROTECTED] Solaris make errors > > > Greetings, > > I'm a new subscriber; if my questions have been previously answer

Re: [EMAIL PROTECTED] Apache 1.3.26 hangs up after a few days

2005-10-24 Thread Peter Staab
Hello! I recently read a message, where someone had the same problem. He said that the sockets where not correctly closed but he could not tell me how to fix this. Does someone know this problem and how to fix it? Thank you, Peter - Original Message - From: "Peter Staab" <[EMAIL PR

Re: [EMAIL PROTECTED] Multiple instances bound to separate IPs?

2005-10-24 Thread Peter J Milanese
Define your instance specific nonsense as pereach instance. I.e. Pid files It is how we did it in the old days prior to VHosts - Sent from my NYPL BlackBerry Handheld. - Original Message - From: Sean Brown [EMAIL PROTECTED] Sent: 10/24/2005 09:19 PM To: users@httpd.a

[EMAIL PROTECTED] Multiple instances bound to separate IPs?

2005-10-24 Thread Sean Brown
Is it possible to run two separate instances of Apache, both on port 80, but each bound to a different IP? So, for instance one, I'd have this in the httpd.conf: Listen 192.168.1.1:80 And in the other, I'd have have: Listen 192.168.1.2:80 If I started each with a specification of configuration

[EMAIL PROTECTED] Odd errors in my apache 1.3.33 error logs when doing a form post under ssl .....

2005-10-24 Thread MATTHEW MCHUGH
Hello All,   I am using apache 1.3.33 on a solaris 8 environment.  We are seeing the following errors periodically in the error logs:   [Mon Oct 24 12:18:03 2005] [error] readFormPost: Invalid or missing content length (0)   We are doing a form post and sometimes the post works, and someti

Re: [EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-24 Thread Joshua Slive
On 10/24/05, Ben Gardiner <[EMAIL PROTECTED]> wrote: > > On 10/24/05, Ben Gardiner <[EMAIL PROTECTED]> wrote: > > Thanks, Joshua, for responding. I haven't *done* anything yet. What > > I want is for callers to be able to read both .html files and plain > > ascii. I have about 16,000 plain ascii

[EMAIL PROTECTED] Solaris make errors

2005-10-24 Thread Mike Badar
Greetings, I'm a new subscriber; if my questions have been previously answered, please direct me to the archives for the solution. I'm running Solaris 9 on a sparc box; I'm using ksh as my shell. I downloaded the 2.0.54 source and ran configure with the following options: ./configure --prefix=/

Fwd: [EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-24 Thread Ben Gardiner
-- Forwarded message -- From: Joshua Slive <[EMAIL PROTECTED]> Date: Oct 24, 2005 12:41 PM Subject: Re: [EMAIL PROTECTED] Flag to enable reading plain ASCII To: [EMAIL PROTECTED] Please send your message to the list. Thanks. Joshua. On 10/24/05, Ben Gardiner <[EMAIL PROTECTED]>

RE: [EMAIL PROTECTED] using cache in reverse proxy mode

2005-10-24 Thread Yavor Trapkov
I put CacheIgnoreCacheControl on CacheIgnoreNoLastModon CacheIgnoreHeaders set-cookie and now debug LogLevel showes the content is cached, but some things doesn't make much sense: with disk cache: each time I send a request I get [Mon Oct 24 22:47:13 2005] [debug] mod_cache.c(114): incom

Re: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread Peter J Milanese
I think it insane to code inconsistently, and rely on the server to fix it. Oh.. Sorry... Its the unix cult. (?) - Sent from my NYPL BlackBerry Handheld. - Original Message - From: Marc Perkel [EMAIL PROTECTED] Sent: 10/24/2005 04:33 PM To: users@httpd.apache.org Subj

Re: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread Marc Perkel
I've had good luck using mod_speling. But before that I used a trick where I used samba. The trick is to run samba, mount a share, then serve from that share. Samba is case insensitive. BTW - I agree - in fact I think it's insane to have a case sensitive file system. But I'll never convince th

Re: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread dogbert
Quoting Joshua Slive <[EMAIL PROTECTED]>: > On 10/24/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > RewriteEngine On > > RewriteMap lc int:tolower > > RewriteRule (.*) ${lc:$1} [R] > > > However, when I try this in apache (2.0.5x), I get the following message > > returned to me in firefo

Re: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread William A. Rowe, Jr.
Doug McNutt wrote: At 10:44 -0700 10/24/05, [EMAIL PROTECTED] wrote, in part: . . . as opposed to general case-insensitivity which is not possible (and, in addition, not advisable, since proxy caches, search engines, etc are all case sensitive). Well, Google is case INsensitive and proud of i

Re: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread Joshua Slive
On 10/24/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > RewriteEngine On > RewriteMap lc int:tolower > RewriteRule (.*) ${lc:$1} [R] > However, when I try this in apache (2.0.5x), I get the following message > returned to me in firefox 1.0.7: > > redirection limit for this URL exceeded, unabl

Re: [EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-24 Thread Joshua Slive
On 10/24/05, Ben Gardiner <[EMAIL PROTECTED]> wrote: > Among the many flags in httpd.conf I cannot figure out what would > enable the server to read both HTML and plain ASCII. This is pretty > basic but I have not done it before -- somebody else did it, at a > previous site, and is no longer avail

RE: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread Doug McNutt
At 10:44 -0700 10/24/05, [EMAIL PROTECTED] wrote, in part: > . . . as opposed to general case-insensitivity which is >not possible (and, in addition, not advisable, since proxy caches, >search engines, etc are all case sensitive). Well, Google is case INsensitive and proud of it. I once complained

RE: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread dogbert
Quoting Boyle Owen <[EMAIL PROTECTED]>: > > -Original Message- > > From: Nick Kew [mailto:[EMAIL PROTECTED] > > > > It is HTTP, the protocol of the Web, that is case-sensitive. > > Anything that tries to pretend it's not is broken. > > Exactly. > > The whole concept of "case-sensitivity

[EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-24 Thread Ben Gardiner
Among the many flags in httpd.conf I cannot figure out what would enable the server to read both HTML and plain ASCII. This is pretty basic but I have not done it before -- somebody else did it, at a previous site, and is no longer available to tell me how. Can anyone tell me which flag to open a

[EMAIL PROTECTED] Re: Re: Re: Should be easy RewriteRule issue: mod_rewrite.

2005-10-24 Thread Andoni
Hi,   Found the problem. The PT worked. I think it's because I am forwarding everything to my Tomcat server using JkMount. This must be a form of Alias?   Anyway all working now. Thanks,   Andoni. - Original Message - From: Joshua Slive Newsgroups: gmane.comp.apache.user

Re: [EMAIL PROTECTED] Apache IPv6 config help please

2005-10-24 Thread William A. Rowe, Jr.
It's not built for IPv6 as that would require -all- Apache users to install the IPv6 layer (including win9x and NT users, who would have the greater hardship.) I'll investigate providing an NT-only, IPv6 flavor of the libapr.dll, for those users interested. I need to confirm, but believe that on

Re: [EMAIL PROTECTED] Migrating from 1.3.31 to 2.0.X

2005-10-24 Thread Joshua Slive
On 10/24/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I am wondering if anyone has migrated from version 1.3.31, running on a Sun > Sparc Solaris 9.0 platform, to version 2.0.X. What problems would I > encounter and will there be changes needed to the configuration file? I am > running MR

Re: [EMAIL PROTECTED] Re: Re: Should be easy RewriteRule issue: mod_rewrite.

2005-10-24 Thread Joshua Slive
On 10/24/05, Andoni <[EMAIL PROTECTED]> wrote: > > Hi, > > Removing the "R" broke it :-( > > Now when I go to www.mydomain.com/frontpage it does not re-write it at all, > just giving me back a "page cannot be found" instead. Then you need to use the RewriteLog to figure out what is going on. One

[EMAIL PROTECTED] Re: Apache 2.0.55/win32 + OpenSSL 0.9.8a & OWA Reverse Proxy Problems

2005-10-24 Thread Helmut Schneider
Helmut Schneider ([EMAIL PROTECTED]) wrote: Manuel Martin ([EMAIL PROTECTED]) wrote: since 2.0.55 a reverse SSL-proxy (on Windows 2000) which I setup for MS Exchange 2003 Outlook Web Access makes problems. The users stumbled over the problem that they cannot attach files to their emails. I trie

RE: [EMAIL PROTECTED] limit max number of simultaneous connections from same ip

2005-10-24 Thread Anton Krall
Can you limit connections per IP for downloading certain filetypes or from certain directories? |-Original Message- |From: Joshua Slive [mailto:[EMAIL PROTECTED] |Sent: Monday, October 24, 2005 8:33 AM |To: users@httpd.apache.org |Subject: Re: [EMAIL PROTECTED] limit max number of simult

RE: [EMAIL PROTECTED] using cache in reverse proxy mode

2005-10-24 Thread Axel-Stéphane SMORGRAV
The first response is not cacheable. It contains no cache validator (Etag, Last-Modified, Expires). The second is cacheable. You must disable cacheing of Set-Cookie using "CacheIgnoreHeaders set-cookies" With LogLevel debug you will get all the traces you need to understand why a response does

[EMAIL PROTECTED] Migrating from 1.3.31 to 2.0.X

2005-10-24 Thread Robert . Setterlund
I am wondering if anyone has migrated from version 1.3.31, running on a Sun Sparc Solaris 9.0 platform, to version 2.0.X.  What problems would I encounter and will there be changes needed to the configuration file?  I am running MRTG and it is configured to use version 1.3.31. Apache just release

[EMAIL PROTECTED] Re: Re: Should be easy RewriteRule issue: mod_rewrite.

2005-10-24 Thread Andoni
Hi,   Removing the "R" broke it :-(   Now when I go to www.mydomain.com/frontpage it does not re-write it at all, just giving me back a "page cannot be found" instead.   Andoni. - Original Message - From: Joshua Slive Newsgroups: gmane.comp.apache.user Sent: Monday, Oc

[EMAIL PROTECTED] Re: Apache 2.0.55/win32 + OpenSSL 0.9.8a & OWA Reverse Proxy Problems

2005-10-24 Thread Helmut Schneider
Manuel Martin ([EMAIL PROTECTED]) wrote: since 2.0.55 a reverse SSL-proxy (on Windows 2000) which I setup for MS Exchange 2003 Outlook Web Access makes problems. The users stumbled over the problem that they cannot attach files to their emails. I tried it myself: the attachment seems to be uploa

Re: [EMAIL PROTECTED] Re: Should be easy RewriteRule issue: mod_rewrite.

2005-10-24 Thread Joshua Slive
On 10/24/05, Andoni <[EMAIL PROTECTED]> wrote: > > Now why could the documentation not have said that? The two types of redirect are discussed at http://httpd.apache.org/docs/2.0/urlmapping.html It is assumed that you wouldn't possibly dare trying to read the mod_rewrite docs unless you are alrea

Re: [EMAIL PROTECTED] Re: Should be easy RewriteRule issue: mod_rewrite.

2005-10-24 Thread Andoni
Now why could the documentation not have said that?   You have no idea what that means to me! I am about to go and re-write several of the Virtual Hosts on my web-server to use that content redirection.   My thanks,   Andoni. - Original Message - From: Joshua Slive To:

Re: [EMAIL PROTECTED] Re: Should be easy RewriteRule issue: mod_rewrite.

2005-10-24 Thread Joshua Slive
On 10/24/05, Andoni <[EMAIL PROTECTED]> wrote: > > Hi Joshua (and all), > > That worked great thanks, I had to take out the caret ^ you had at the > beginning of /servMainSite in the RewriteRule to make it work but otherwise > fine. Yes, that was a typo on my part. > RewriteRule ^/(.*)$ /servM

Re: [EMAIL PROTECTED] limit max number of simultaneous connections from same ip

2005-10-24 Thread Joshua Slive
On 10/24/05, Jean-Christophe Montigny <[EMAIL PROTECTED]> wrote: > Hello, > > Anton Krall wrote: > > Is there a way to limit the max number of httpd connections from a single > > ip? > There is : just use iptables. Other than that, looking at your log, your > situation is very normal : usually web

[EMAIL PROTECTED] Re: Should be easy RewriteRule issue: mod_rewrite.

2005-10-24 Thread Andoni
Hi Joshua (and all),   That worked great thanks, I had to take out the caret ^ you had at the beginning of /servMainSite in the RewriteRule to make it work but otherwise fine. Here's what I ended up with:     RewriteCond %{Request_URI} !^/img  RewriteCond %{Request_URI} !^/favicon.ico  Rewri

Re: [EMAIL PROTECTED] Apache IPv6 config help please

2005-10-24 Thread Colm MacCarthaigh
On Mon, Oct 24, 2005 at 11:17:57AM +0400, Haifa Murad Hasan Abdulla Al Balooshi wrote: > I want to enable IPv6 > > In the config/httpd file, I added > listen [::1] This is close, but not quite there. You need to specify a port aswell; Listen [::1]:80 Will ask Apache to listen, on po

[EMAIL PROTECTED] Re: Apache2 + Apache-Tomact

2005-10-24 Thread Joost de Heer
Leonardo Hernandez said: > Hello > Somebody know how to configure Apache2 and Tomcat5 using > jakarta-tomcat-connectors TFM on tomcat's website knows this. You should R it. Joost - The official User-To-User support forum of the

[EMAIL PROTECTED] Mass VHost, Access Rights (Apache 2.0)

2005-10-24 Thread Tino Schöllhorn
Hi, we are thinking about using mass virtual hosting to reduce the configuration effort. Simplified we want each virtual host like (${customer} is a variable for the host-name) ServerName www.${customer}.com ServerAlias customer.myhost.com DocumentRoot /data/htdocs/custom

[EMAIL PROTECTED] Pass client certificate thorough apache to tomcat

2005-10-24 Thread Alpay Ozturk
Hi All, I have set up apache and tomcat where ssl requests are forwarded from apache to tomcat behind. Apache is handling the ssl issues and also requesting a client certificate. No problem so far, server and client certificates are exchanged during ssl session setup. What I need to do is to forw

Re: [EMAIL PROTECTED] Apache IPv6 config help please

2005-10-24 Thread Chris Babstock
Now, I could be very wrong here.. I just did a bit of my own research on IPv6 (because I didn't know much about it) and apparantly the equivelant of 128.0.0.1 is ::1/128.. Don't you need to add the /128 at the end?On 10/24/05, Haifa Murad Hasan Abdulla Al Balooshi <[EMAIL PROTECTED]> wrote: I down

Re: [EMAIL PROTECTED] Apache2 + Apache-Tomact

2005-10-24 Thread Dietmar . Mueller
http://galatea.com/flashguides/home regards Dietmar Nicola Flucke <[EMAIL PROTECTED]> am 24.10.2005 08:42:03 Bitte antworten an users@httpd.apache.org An:users@httpd.apache.org Kopie: Thema: Re: [EMAIL PROTECTED] Apache2 + Apache-Tomact Hello Leonardo, did you read the documentation

RE: [EMAIL PROTECTED] Apache2 + Apache-Tomact

2005-10-24 Thread Boyle Owen
Plain text please... Massive question. Read the docs: http://tomcat.apache.org/download-connectors.cgi Basically, you install apache, install tomcat, get each working separately, then (in apache) map the desired portion of your URL-space to tomcat. Rgds, Owen Boyle Disclaimer: Any disclaimer a

Re: [EMAIL PROTECTED] Apache2 + Apache-Tomact

2005-10-24 Thread Nicola Flucke
Hello Leonardo, did you read the documentation? http://tomcat.apache.org/connectors-doc/index.html You will find all infos you need. Regards, Nicola Leonardo Hernandez wrote: Hello Somebody know how to configure Apache2 and Tomcat5 using jakarta-tomcat-connectors Regards -- Leonardo He

RE: [EMAIL PROTECTED] make URL's case insensitive - (opinion - OT)

2005-10-24 Thread Boyle Owen
> -Original Message- > From: Nick Kew [mailto:[EMAIL PROTECTED] > > It is HTTP, the protocol of the Web, that is case-sensitive. > Anything that tries to pretend it's not is broken. Exactly. The whole concept of "case-sensitivity" is wrong-headed to begin with. The case of a letter is a

[EMAIL PROTECTED] unable to read raw data from ssl enabled server

2005-10-24 Thread Chidanand Gangur
Hi all,I have a sceneraio as shown in the diagram below.++ xml  +---+|unix sock|<->|unix sock   ||   PHP| |   Back End||  |<-+|Module   |+-

[EMAIL PROTECTED] Apache IPv6 config help please

2005-10-24 Thread Haifa Murad Hasan Abdulla Al Balooshi
I downloaded and installed the binary for apache_2.0.54-win32-x86-no_ssl on windows XP service pack 2 (it works fine with IPv4) I want to enable IPv6 In the config/httpd file, I added listen [::1] I also tried listen [fe80::1] I got this error when I started apache: [Fri Oct 14 19:13:13 20

Re: [EMAIL PROTECTED] limit max number of simultaneous connections from same ip

2005-10-24 Thread Jean-Christophe Montigny
Hello, Anton Krall wrote: Is there a way to limit the max number of httpd connections from a single ip? There is : just use iptables. Other than that, looking at your log, your situation is very normal : usually web browsers open about 4 concurrent connections when it has to fetch pictures rel