Re: [EMAIL PROTECTED] Overriding url filename changing in Apache

2007-05-17 Thread Harry Spier
Thanks Scott, That did the trick. Best, Harry Harry Spier 371 Brickman Rd. Hurleyville, New York USA 12747 From: Scott Gifford <[EMAIL PROTECTED]> Reply-To: users@httpd.apache.org To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Overriding url filename changing in Apache Date: T

[EMAIL PROTECTED] mod_proxy_ajp with SSL front end: data corruption of POST request

2007-05-17 Thread Erwin Veugelers
Hi people, We have a simple setup with a single Apache httpd-2.2.0 server with mod_proxy and related modules (ajp, http, etc), and a Tomcat 5.5.20 app server running an HTTP connector on 8080 and an AJP connector on 8009. The Apache server proxies into Tomcat using: ProxyPass /we

Re: [EMAIL PROTECTED] 301 redirect looping with mod_rewrite

2007-05-17 Thread Sander Marechal
Joshua Slive wrote: > On 5/17/07, Sander Marechal <[EMAIL PROTECTED]> wrote: > >> >> > Your problem is that the results of (4) are getting reinjected to >> > mod_rewrite for processing, and will then obviously match (1) and (2). >> >> I figured as much, but can you tell me why it's reinjected? Tha

Re: [EMAIL PROTECTED] 301 redirect looping with mod_rewrite

2007-05-17 Thread Joshua Slive
On 5/17/07, Sander Marechal <[EMAIL PROTECTED]> wrote: > Your problem is that the results of (4) are getting reinjected to > mod_rewrite for processing, and will then obviously match (1) and (2). I figured as much, but can you tell me why it's reinjected? That's the part I really don't underst

RE: [EMAIL PROTECTED] Re: https redirection

2007-05-17 Thread Eric DuToit
Assuming you are using virtual host containers, you should have separate virtual host containers for http and https, just find the appropriate virtual host container for the https site. Are you placing the RewriteCond in the httpd.conf or .htaccess? -Original Message- From: Guy Speier [

Re: [EMAIL PROTECTED] 301 redirect looping with mod_rewrite

2007-05-17 Thread Sander Marechal
Joshua Slive wrote: > On 5/17/07, Sander Marechal <[EMAIL PROTECTED]> wrote: > >> (1) RewriteCond %{query_string} t=([a-z]+) >> (2) RewriteRule ^index.php$ /page/%1/? [r=301,l] >> >> The next rule makes sure that the pretty URLs all end in a slash. It >> also does a 301 redirect causing the browse

Re: [EMAIL PROTECTED] Tomcat not listening

2007-05-17 Thread Joshua Slive
On 5/17/07, Arnab Ganguly <[EMAIL PROTECTED]> wrote: Hi , I very new to Tomact.When I bring up the process the Tomcat comes up properly but it doesn't listen on the ports mentioned in server.xml. I am not able to figure it outThanks in advance. Looks like you've got the wrong list. Head on

Re: [EMAIL PROTECTED] Apache 2.0.50 stopped logging

2007-05-17 Thread Arnab Ganguly
Hi, you can do df -k on the logs dir where Apache was writingI guess the disk usage was full for that particular dir...Next time when you get into similar issue it is worth to check this. Thanks -A On 5/14/07, Lentes, Bernd <[EMAIL PROTECTED]> wrote: hello ML, i have an apche 2.0.50 runnin

[EMAIL PROTECTED] Tomcat not listening

2007-05-17 Thread Arnab Ganguly
Hi , I very new to Tomact.When I bring up the process the Tomcat comes up properly but it doesn't listen on the ports mentioned in server.xml. I am not able to figure it outThanks in advance. Regards -A

Re: [EMAIL PROTECTED] Virtual Host Configuration

2007-05-17 Thread Shelley Waltz
Joshua, Thanks very much - that WAS it! S On Thu, 17 May 2007, Joshua Slive wrote: On 5/17/07, Shelley Waltz <[EMAIL PROTECTED]> wrote: > # Use name-based virtual hosting. > # > NameVirtualHost *:80 > > > This needs to match the NameVirtualHost, so use . Jo

Re: [EMAIL PROTECTED] Virtual Host Configuration

2007-05-17 Thread Shelley Waltz
Some clarifications. I did not use a _default_ in the virtual hosts, I am assuming the first virtualhost will pick up any quieres not satisfied by the other virtual hosts. Secondly, DNS has two A records mydomain.edu webmail.mydomain.edu are the same ip Here is part of the httpd.conf ... # # U

Re: [EMAIL PROTECTED] Virtual Host Configuration

2007-05-17 Thread Joshua Slive
On 5/17/07, Shelley Waltz <[EMAIL PROTECTED]> wrote: # Use name-based virtual hosting. # NameVirtualHost *:80 This needs to match the NameVirtualHost, so use . Joshua. - The official User-To-User support forum of the Apac

Re: [EMAIL PROTECTED] Virtual Host Configuration

2007-05-17 Thread Joshua Slive
On 5/17/07, Shelley Waltz <[EMAIL PROTECTED]> wrote: Currently such inquires end up at webserver one and the webmail page. If I set up a default virtual host on webserver one as ServerName mydomain.edu, then all inquieres including the ones for webmail.mydomain.edu go there. Why is this? Serve

[EMAIL PROTECTED] Virtual Host Configuration

2007-05-17 Thread Shelley Waltz
I am trying to find the best solution to this issue. I have two apache servers hosting virtual domains both in the same domain. The first server hosts a virtual domain for webmail and is also the smtp and imap server. The DNS A record for this host points to the domain and a CNAME record referen

Re: [EMAIL PROTECTED] 301 redirect looping with mod_rewrite

2007-05-17 Thread Joshua Slive
On 5/17/07, Sander Marechal <[EMAIL PROTECTED]> wrote: (1) RewriteCond %{query_string} t=([a-z]+) (2) RewriteRule ^index.php$ /page/%1/? [r=301,l] The next rule makes sure that the pretty URLs all end in a slash. It also does a 301 redirect causing the browser to send a new request. (3) Rewrit

[EMAIL PROTECTED] 301 redirect looping with mod_rewrite

2007-05-17 Thread Sander Marechal
Hello, I am trying to use mod_rewrite (apache 2) to give my website pretty URLs, but for some reason I get stuck in a 301 redirect loop. I have looked at the code over and over again. I know what lines cause the loop but I can't find out why it's looping. There's probably something wrong with my u