[us...@httpd] Transfer errors with Apache and Subversion

2010-07-09 Thread Arivan S. Bastos
Hello, We work with Subversion and Apache http server for about two years here in the company, with no trouble. We have already used them on servers running Windows XP and on Windows Server 2008. This week, the disk of our server burned and then we decided to upgrade the Windows Server 2008 to Wi

RE: [us...@httpd] mod_rewrite - Error when trying to rewrite one cgi script to another

2010-07-09 Thread S. Saberi
Actually I figured it out finally , I had to set the RewriteBase to /scripts and voila. Thanks for all the feedbacks though set me on the right path. Cheers. From: ssab...@hotmail.com To: users@httpd.apache.org Subject: RE: [us...@httpd] mod_rewrite - Error when trying to rewrite one

Re: [us...@httpd] mod_proxy: ProxyPass max parameter has no effect

2010-07-09 Thread Igor Cicimov
H I had to read the documentation again my self and I can't find any mention of what type of MPM is supported in this case. All it says is "Apache will never create more than the Hard Maximum connections to the backend server" so it makes me expect that max parameter should be in force no matte

Re: [us...@httpd] mod_proxy: ProxyPass max parameter has no effect

2010-07-09 Thread Alessandro Vernet
Igor, On Tue, Jul 6, 2010 at 4:40 PM, Igor Cicimov wrote: > Shouldnt it be smax instead max? >From the documentation, I gather that the default value of smax is max, so just setting max should be safe. Just in case, I tried setting smax, and it doesn't make a difference. Both max and smax seem t

[us...@httpd] Re: still see .htaccess and .htpasswd trough virtual host

2010-07-09 Thread Jonesy
On Fri, 9 Jul 2010 08:14:44 +0530, J. Bakshi wrote: > > any clue please ? > >> # >> # The following lines prevent .htaccess and .htpasswd files from being >> # viewed by Web clients. >> # >> >> Order allow,deny >> Deny from all >> FWIW I'm using: : |

RE: [us...@httpd] mod_rewrite - Error when trying to rewrite one cgi script to another

2010-07-09 Thread S. Saberi
Hi, Does the log i provided below provide any clues of why my rewrite is failing? Can a executable folder in apache be rewritten ad all? If so can someeone please provide an example? I have really hit a wall with this. Cheers. From: ssab...@hotmail.com To: users@httpd.apache.o

[us...@httpd] cache key generation for reverse proxy

2010-07-09 Thread Sherrard Burton
please forgive me if this is the wrong place for this question, or if this has been discussed elsewhere. i searched most of the night and morning, and then started pouring through the source code, and i'm pretty sure i've isolated the "issue" but need some advice as to where to go. we have be

Re: [us...@httpd] Re: Apache lstat performance problem

2010-07-09 Thread Vincenzo D'Amore
Thanks to who answered me, the problem was definitely related to PHP, I still don't understand why PHP tries so much times to read a file but this behavior appears when PHP_ADMIN_VALUE open_basedir is defined inside Removing such PHP_ADMIN_VALUE open_basedir setting, now I have only one: lstat("

[us...@httpd] Last day to submit your Surge 2010 CFP!

2010-07-09 Thread Jason Dixon
Today is your last chance to submit a CFP abstract for the 2010 Surge Scalability Conference. The event is taking place on Sept 30 and Oct 1, 2010 in Baltimore, MD. Surge focuses on case studies that address production failures and the re-engineering efforts that led to victory in Web Application

Re: [us...@httpd] Unsubscribe

2010-07-09 Thread Evan Platt
On 07/09/2010 03:01 AM, Uma G. Nayak wrote: Thanks http://www.mindtree.com/email/disclaimer.html From the headers: list-unsubscribe: ---

Re: [us...@httpd] Unsubscribe

2010-07-09 Thread Tim Watts
On 09/07/10 11:01, Uma G. Nayak wrote: Thanks http://www.mindtree.com/email/disclaimer.html You need to send that to: users-unsubscr...@httpd.apache.org - The official User-To-User support

RE: [us...@httpd] Re: Custom headers in Connect message

2010-07-09 Thread David Vaughan
Not as I understand MITM. I've no desire to poke around with https headers or data. All I need to do is add an additional header into the CONNECT message. Apache already inserts a Proxy-agent header into this message and I just want to do insert a further X-Forwarded-For header which a second pro

[us...@httpd] Unsubscribe

2010-07-09 Thread Sather, Bob
Thanks Lloyds TSB Bank plc. Registered Office: 25 Gresham Street, London EC2V 7HN. Registered in England and Wales, number 2065. Telephone: 020 7626 1500. Bank of Scotland plc. Registered Office: The Mound, Edinburgh EH1 1YZ. Registered in Scotland, number 327000. Telephone: 0870 600 5000 Lloyd

[us...@httpd] Unsubscribe

2010-07-09 Thread Uma G. Nayak
Thanks http://www.mindtree.com/email/disclaimer.html

Re: [us...@httpd] Re: Apache lstat performance problem

2010-07-09 Thread Vincenzo D'Amore
Hi Joost, I suppose this is not the case, because I already see in strace output the part related to "AllowOverride set": lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/usr/local/mywebspace", {st_mode=S_IFDIR

Re: [us...@httpd] Re: Execute CGI (or FastCGI or PHP) on missing target file

2010-07-09 Thread Tim Watts
On 09/07/10 09:41, Joost Heer, de wrote: Specifically, what I'd like to do is to be able to execute one named CGI (probably under FastCGI) where Apache cannot find an existing target file (ideally with named extensions like .html but that's not so important) after URL-path translation phase. Er

[us...@httpd] Re: Custom headers in Connect message

2010-07-09 Thread Joost Heer, de
>Is there any way I can add a custom header (or even just an >X-Forwarded-For header) into the CONNECT message? In other words: you want to be able to play MITM. No, that's not possible unless you terminate the SSL connection on the proxy. Joost

[us...@httpd] Re: Apache lstat performance problem

2010-07-09 Thread Joost Heer, de
>For every file should be served by apache httpd, apache httpd tries to lstat >all directory in path more times: This is normally seen when you have .htaccess usage turned on (all subdirectories have to be checked for the presence of .htaccess). Do you have AllowOverride set to off? Joost ---

[us...@httpd] Re: Execute CGI (or FastCGI or PHP) on missing target file

2010-07-09 Thread Joost Heer, de
>Specifically, what I'd like to do is to be able to execute one named CGI >(probably under FastCGI) where Apache cannot find an existing target >file (ideally with named extensions like .html but that's not so >important) after URL-path translation phase. ErrorDocument 404 /cgi-bin/template.cgi

Re: [us...@httpd] Apache lstat performance problem

2010-07-09 Thread Vincenzo D'Amore
Hi Piotr, I have already tried to enable realpath_cache_size: realpath_cache_size=1024k realpath_cache_ttl=600 But I continue to see always same behavior, I suppose it could be related to FollowSymLink Option. I was trying to create a test environment in order to check if it is true. Regards,