AW: AW: AW: AW: AW: [EMAIL PROTECTED] Too many open files ...

2005-08-04 Thread Oliver Kirchel
Hi Sean, I have only two error_log files. Do you mean that it would be helpful if I merge these error_log files ? If I have a look in my error_logfile the value of the filedescriptor is only a little bit greater than 1024. [Fri Aug 5 04:41:33 2005] [warn] send body: filedescriptor (1027) larger t

Re: [EMAIL PROTECTED] What ports can I substitute for 8080?

2005-08-04 Thread Bert_De_Ridder
Correction to my last mail; don't add a CMF site; add a Plone site ... off course...  silly me... sorry 'bout that Regards, Bert De Ridder PeopleWare NV - Head Office Cdt.Weynsstraat 85 B-2660 Hoboken Tel: +32 3 448.33.38 Fax: +32 3 448.32.66 PeopleWare NV - Branch Office Geel Kleinhoe

Re: [EMAIL PROTECTED] What ports can I substitute for 8080?

2005-08-04 Thread Bert_De_Ridder
Well, it's getting a bit off-topic for this list, but here goes : 1) "I'm a little confused, though. First, how do you "load mod_rewrwite"?" That's an Apache question, still in place ;-) Just make sure that somewhere in your httpd.conf (or included files) there is a directive like this LoadMod

Re: [EMAIL PROTECTED] Redirect to a moved Proxied file

2005-08-04 Thread Becky Alcorn
> I'd try this: > ProxyPass /mod_perl/moved_file1.html ! > ProxyPass /mod_perl http://modperlserver:8001 > ProxyPassReverse /mod_perl http://modperlserver:8001 > > Redirect permanent /mod_perl/moved_file1.html > http://mystaticserver/newdir/moved_file1.html That worked perfectly. Thankyou. ---

[EMAIL PROTECTED] logging sub requests

2005-08-04 Thread Patrick Ward
Does anyone know of a way, preferably with mod_log_config, to log sub requests, i.e. SSI, or PHP included files requested? - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/u

[EMAIL PROTECTED] mod_userdir and FollowSymLinks frustration

2005-08-04 Thread Shawn Wilson
I am having trouble getting my user's web directories to behave the FollowSymLinks option. I know I must be making a stupid mistake here but I have spent way too much time trying to track down the problem. I'm using Apache 2.0.54 on Gentoo, and have taken the issue down a very basic config whi

RE: [EMAIL PROTECTED] Using a CRL from LDAP in MODSSL

2005-08-04 Thread Axel-Stéphane SMORGRAV
You are of course referring to the Certificate Revocation Lists. I believe that the SSLCARevocationFile is loaded only when Apache is started. If you want a dynamic behaviour, you should use SSLCARevocationPath. This would also probably be more efficient since you get a direct access to the corr

Re: [EMAIL PROTECTED] [info] (32) & [info] (104) core_output_filter

2005-08-04 Thread Joshua Slive
On 8/4/05, David Wills <[EMAIL PROTECTED]> wrote: > When accessing my apache server the responses for 70% of the time will > be fine. The rest however just pause, or die completely. > > At these times the following can be found in the error_log and I do > get a LOT of these per day: > > [Thu Aug

[EMAIL PROTECTED] [info] (32) & [info] (104) core_output_filter

2005-08-04 Thread David Wills
Hi, I hope someone can help me. When accessing my apache server the responses for 70% of the time will be fine. The rest however just pause, or die completely. At these times the following can be found in the error_log and I do get a LOT of these per day: [Thu Aug 04 04:16:15 2005] [info] (32)B

RE: [EMAIL PROTECTED] htaccess-Files in UTF-8!?

2005-08-04 Thread Droska, Hans-Peter
Hi Bill! Thanks for the fast answer! I do a telnet like you said and this comes back: HTTP/1.1 401 Authorization Required Date: Thu, 04 Aug 2005 16:16:35 GMT Server: Apache/2.0.49 (Linux/SuSE) WWW-Authenticate: Basic realm="Zugang zu den Arbeitsanweisungen M÷bel" Vary: accept-language,accept-char

Re: [EMAIL PROTECTED] htaccess-Files in UTF-8!?

2005-08-04 Thread William A. Rowe, Jr.
Sniff the request with netcat or telnet, attempting to GET /file.html HTTP/1.1 Host: www.example.com presuming file.html is protected, see what comes back. Do you have your global utf8 charset set up, or set up to use utf8 for at least your 401 error document? If the content-type; ...; charset

Re: [EMAIL PROTECTED] need help w/Apache redirect

2005-08-04 Thread Craig Dunigan
On Thu, 4 Aug 2005, Robert F Hall wrote: > This *should* be simple, but is not working for us. > > We are using Apache 1.3.27. > > We are trying to redirect requests to a particualr host name (an alias) to > the real host name and a specific URL. For example, if > http://specific-app.berkeley.

Re: [EMAIL PROTECTED] htaccess-Files in UTF-8!?

2005-08-04 Thread Craig Dunigan
On Thu, 4 Aug 2005, Droska, Hans-Peter wrote: > Hi! > > We have a problem with our htaccess-Files since we have changed our charset > to UTF-8. > Our Apache shows the HTML-Pages perfect but if I try to access a restricted > area, the popup with username and password show the text in "AuthName" in

[EMAIL PROTECTED] htaccess-Files in UTF-8!?

2005-08-04 Thread Droska, Hans-Peter
Hi! We have a problem with our htaccess-Files since we have changed our charset to UTF-8. Our Apache shows the HTML-Pages perfect but if I try to access a restricted area, the popup with username and password show the text in "AuthName" in ISO8859-1. If I covert the htaccess-File with "iconv -f UT

Re: [EMAIL PROTECTED] What ports can I substitute for 8080?

2005-08-04 Thread David Blomstrom
--- [EMAIL PROTECTED] wrote: > You should do it right from the beginning :-) > > Here's how you set up a virtual host for Plone : > > (don't forget to load mod_rewrite) > > > ServerName www.yourdomain.com > RewriteEngine on > RewriteRule ^/(.*) > http://localhost:8080/VirtualHostBase/h

Re: [EMAIL PROTECTED] What ports can I substitute for 8080?

2005-08-04 Thread Bert_De_Ridder
You should do it right from the beginning :-) Here's how you set up a virtual host for Plone : (don't forget to load mod_rewrite)   ServerName www.yourdomain.com   RewriteEngine on   RewriteRule ^/(.*) http://localhost:8080/VirtualHostBase/http/www.yourdomain.com:80/YourPloneInstanceName/Virt

[EMAIL PROTECTED] What ports can I substitute for 8080?

2005-08-04 Thread David Blomstrom
I'm trying out a content management system called Plone, which uses a server called Zope. I understand that I can replace Zope with Apache if I set Apache up as a "proxy server." I haven't figured out how to do that yet, but I've been told that I can also run Apache and Zope at the same time if I a

[EMAIL PROTECTED] Using a CRL from LDAP in MODSSL

2005-08-04 Thread Lauzanne Olivier
Hi, I'm working on a project that uses modssl in apache 2.0. The problem is that we need to get the rectification list updated frequently and that we need to provide a 24/24 service. I noticed in a mail from 2000 (from mod-ssl mailing-list archive) that a graceful restart is requiered in order t

[EMAIL PROTECTED] Re: Rewrite and https

2005-08-04 Thread Brian Candler
On Wed, Aug 03, 2005 at 03:17:11PM +0200, Krist van Besien wrote: > So I have the following in my rewrite rulses: > > > > # If Portal is accessed over https add a query parameter so > the portal knows. > RewriteCond %{HTTPS}on [NC] > RewriteRule ^/([Pp]or

Re: [EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-04 Thread Joshua Slive
On 8/4/05, Chris Johnson <[EMAIL PROTECTED]> wrote: > > (But be careful; There are other ways to activate php including AddHandler.) > > Right. This particular server is still 1.3 at themoment but may > change soon. > > So AddHandler and maybe SetHandler and possibly some others. Ca

Re: [EMAIL PROTECTED] need help w/Apache redirect

2005-08-04 Thread Joshua Slive
On 8/4/05, Robert F Hall <[EMAIL PROTECTED]> wrote: > This *should* be simple, but is not working for us. > > We are using Apache 1.3.27. > > We are trying to redirect requests to a particualr host name (an alias) to > the real host name and a specific URL. For example, if > http://specific-app

[EMAIL PROTECTED] Re: need help w/Apache redirect

2005-08-04 Thread Joost de Heer
> We have tried the following in httpd.conf and no joy (with and w/o > 'index.jsp') > > How does your NameVirtualHost look like? If it's NameVirtualHost *:80, your VirtualHost line should also be '', and inside it you should use ServerName. Joost --

Re: [EMAIL PROTECTED] Redirect to a moved Proxied file

2005-08-04 Thread Joshua Slive
On 8/4/05, Becky Alcorn <[EMAIL PROTECTED]> wrote: > I tried a Redirect permanent for the files but this didn't work and from > what I've read wassn't > going to while we're using ProxyPass. I then tried to implement a ProxyPass > and ProxyReverse specifically > for the moved files: > > ProxyPas

[EMAIL PROTECTED] Re: Bandwidth quota's?

2005-08-04 Thread Joost de Heer
Matt Pruett said: > Is it possible to implement in apache a website bandwidth quota? You see > it on a number of hosting companies, where if a site chews up too much > the users will eventually get a different site saying something like > "site has used up their monthly bandwidth quota". I am mostl

Re: [EMAIL PROTECTED] Can reverse proxy forward digital certificates.

2005-08-04 Thread Joost de Heer
>>Hello everybody. >> >>Could somebody help me with the following question: >> >>In a scenario like this. >> >>Client <---HTTS--->Apache reverse >> proxy<--HTTPS->Backend >> >>Can the reverse proxy fordward the Client Digital certificate to the >> Backend? >>

Re: AW: AW: AW: AW: [EMAIL PROTECTED] Too many open files ...

2005-08-04 Thread Sean Conner
It was thus said that the Great Oliver Kirchel once stated: > > Hi Sean, > I have good news and bad news. > First, the good news - it works now. > The bad news are that I get now in my error.log this message: > > [Wed Aug 3 02:50:03 2005] [warn] send body: filedescriptor (1031) > larger than FD_

RE: [EMAIL PROTECTED] Apache 2.0.46, Auth_LDAP and Frontpage

2005-08-04 Thread NOLLET Remy \(CAMPUS\)
I have recompiled Auth_LDAP module with Frontpage support from 2.0.46 sources. When I run browser on my root site, it launch login screen normally but when I entered user error log says me that user not found but when I run tcpdump looking ldap nothing appear. Same thing using Frontpage... my .

Re: [EMAIL PROTECTED] Hiding directories in Apache 1.3

2005-08-04 Thread Jorge Ruiz Martinez
Thank you On 8/4/05, Eimantas Vaičiūnas <[EMAIL PROTECTED]> wrote: > Hello > > Check IndexIgnore directive. Or you can just forbid access to them with Deny > directive. > > On Thursday 04 August 2005 14:55, Jorge Ruiz Martinez wrote: > > Hi, > > > > I'd like to hide some directories of my Apache

Re: [EMAIL PROTECTED] Hiding directories in Apache 1.3

2005-08-04 Thread Eimantas Vaičiūnas
Hello Check IndexIgnore directive. Or you can just forbid access to them with Deny directive. On Thursday 04 August 2005 14:55, Jorge Ruiz Martinez wrote: > Hi, > > I'd like to hide some directories of my Apache from serve in Mozilla, > IE or another. I don't know how to do. Anybody can help me?

[EMAIL PROTECTED] Hiding directories in Apache 1.3

2005-08-04 Thread Jorge Ruiz Martinez
Hi, I'd like to hide some directories of my Apache from serve in Mozilla, IE or another. I don't know how to do. Anybody can help me? Thx - The official User-To-User support forum of the Apache HTTP Server Project. See http://ht

RE: [EMAIL PROTECTED] Rewrite and https

2005-08-04 Thread Axel-Stéphane SMORGRAV
You learn stuff every day... Thanks for taking the time to fill in the gaps. WRT to the order in which rewrite rules are executed, you can add the following directive to the VH: RewriteOptions inherit Then you can add the rewrite rules that should be executed after the rewrite rules in the ma

[EMAIL PROTECTED] [EMAIL PROTECTED]

2005-08-04 Thread waRhawK
- The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] " from the digest: [EMAIL PROTECTED] For addit

Re: [EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-04 Thread Chris Johnson
On Wed, 3 Aug 2005, Joshua Slive wrote: > On 8/3/05, Chris Johnson <[EMAIL PROTECTED]> wrote: > > Now, when I did this once before (it was a while ago) the > > FileInfo override was what stopped .htaccess from doing AddType, yes? > > That not being there is what does it. Right? > > Yes. Se

[EMAIL PROTECTED] Bad SSI path calculation including HTML and JSP on Apache2

2005-08-04 Thread Fabio Gurgone
Hi list, I have a problem including in the same shtml html and jsp files. I attached files for to reproduce the problem. Files structure is: /index.shtml /inc/header.html /inc/body.jsp /inc/footer.html and i'm using relative path in SSI include directive like: Apache isn't able to include foot

Re: [EMAIL PROTECTED] Rewrite and https

2005-08-04 Thread Krist van Besien
On 8/4/05, Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]> wrote: > One thought at first: Couldn't your Weblogic server return a relative URL > rather than an absolute one, i.e. a URL not containing protocol and server > address ? Then this problem would not occur at all... The problem is not only

RE: [EMAIL PROTECTED] need help w/Apache redirect

2005-08-04 Thread Axel-Stéphane SMORGRAV
I assume that RedirectMatch /$ should have been RedirectMatch ^/$ Could you tell us what happens when this does not work? Do you have a trace from LiveHTTPHeaders (Firefox) or from HTTPWatch (MSIE) ? Could you show us a trace from your access_log showing what happens when you re

RE: [EMAIL PROTECTED] Can reverse proxy forward digital certificates.

2005-08-04 Thread Axel-Stéphane SMORGRAV
Dinner is served! In this particular case I forward only the client's subject DN. # If the certificate environment variable is set, save the value in an environment variable of our own for future reference RewriteCond %{SSL:SSL_CLIENT_S_DN} !="" RewriteRule .*

[EMAIL PROTECTED] need help w/Apache redirect

2005-08-04 Thread Robert F Hall
This *should* be simple, but is not working for us. We are using Apache 1.3.27. We are trying to redirect requests to a particualr host name (an alias) to the real host name and a specific URL. For example, if http://specific-app.berkeley.edu is requested, we need it to be redirected to

RE: [EMAIL PROTECTED] Rewrite and https

2005-08-04 Thread Axel-Stéphane SMORGRAV
One thought at first: Couldn't your Weblogic server return a relative URL rather than an absolute one, i.e. a URL not containing protocol and server address ? Then this problem would not occur at all... OK. You probably have one virtual host handling the SSL traffic, the one with "SSLEngine On"