RE: [EMAIL PROTECTED] mod_ssl revisited

2007-07-12 Thread Boyle Owen
> -Original Message- > From: Jeff Fulmer [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 11, 2007 7:23 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] mod_ssl revisited > > Now I'm back to the original problem. I turned off name > resolution and I > restarted apache. The v

[EMAIL PROTECTED] proxypass and flash movie

2007-07-12 Thread Fabio Marcone
Hi! I've a strange problem with apache 1.3 (debian woody). This is a server in a production environment, so I can't update it. configuration: apache with mod proxy, I redirect some url in a http server situated in dmz. this is the strange behaviour: site in dmx http server contains some flash mov

RE: [EMAIL PROTECTED] proxypass and flash movie

2007-07-12 Thread Boyle Owen
> -Original Message- > From: Fabio Marcone [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 12, 2007 12:01 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] proxypass and flash movie > > Hi! > I've a strange problem with apache 1.3 (debian woody). This > is a server > in a pro

Re: [EMAIL PROTECTED] proxypass and flash movie

2007-07-12 Thread Fabio Marcone
thanks for your reply. > > So it's unlikely to be the server... > > Are the movies streamed or downloaded over HTTP. If streamed, is the > streaming port open in the FW? I think that are downloaded. However, I think it isn't a firewall problem because of firefox shows the movies correctly... >

[EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Naveen Sharma
Hi, I have a URL of this form http://dev.home.en/hawaii-hotels I want to redirect it to http://dev.home.en/action?city=hawaii without actually modifying the URL which is(http://dev.home.en/hawaii-hotels). Please let me know if this can be done using Apache hhpd.conf without modifying the initia

[EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Naveen Sharma
Hi, I have a URL of this form http://dev.home.en/hawaii-hotels I want to redirect it to http://dev.home.en/action?city=hawaii without actually modifying the URL which is(http://dev.home.en/hawaii-hotels). Please let me know if this can be done using Apache hhpd.conf without modifying the initia

[EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Naveen Sharma
Hi, I have a URL of this form http://dev.home.en/hawaii-hotels I want to redirect it to http://dev.home.en/action?city=hawaii without actually modifying the URL which is(http://dev.home.en/hawaii-hotels). Please let me know if this can be done using Apache hhpd.conf without modifying the initia

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Martijn
I have a URL of this form http://dev.home.en/hawaii-hotels I want to redirect it to http://dev.home.en/action?city=hawaii without actually modifying the URL which is(http://dev.home.en/hawaii-hotels). Please let me know if this can be done using Apache hhpd.conf without modifying the initial URL

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Naveen Sharma
I have tried this but this is changing the URL.The initial URL gets modified. On 7/12/07, Martijn <[EMAIL PROTECTED]> wrote: > I have a URL of this form > http://dev.home.en/hawaii-hotels > I want to redirect it to > http://dev.home.en/action?city=hawaii > > without actually modifying the > U

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Scott Wilcox
I think you need to be a little more specific in your request. Do you mean that you want the internally processed URL to remain the same, or the URL that the end user is seeing? If its the latter, then Martijn's example does that fine. Scott. Naveen Sharma wrote: > I have tried this but this is

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Naveen Sharma
Hi Scott, I want the URL to be visible as http://dev.home.en/hawaii-hotels but internally it should use http://dev.home.en/action?city=hawaii. I have used this RewriteEngine On RewriteRule ^/([a-zA-Z]*)(-)(hotels)/ http://%{HTTP_HOST}/action?city=$1 This changes the URl to http://dev.expedia.j

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Mark Watts
> Hi Scott, > > > I want the URL to be visible as > http://dev.home.en/hawaii-hotels but internally it should use > http://dev.home.en/action?city=hawaii. > > I have used this > RewriteEngine On > RewriteRule ^/([a-zA-Z]*)(-)(hotels)/ http://%{HTTP_HOST}/action?city=$1 Rewriting to an external h

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Jeff Fulmer
This works for me: RewriteRule ^(.*)-hotels$ /action.php?city=$1 http://lisa.joedog.org/pennsylvania-hotels (Note: I changed action to action.php in order to test...) Jeff > I have tried this but this is changing the URL.The initial URL gets > modified. > > > > On 7/12/07, Martijn <[EMAIL P

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Martijn
On 7/12/07, Naveen Sharma <[EMAIL PROTECTED]> wrote: I want the URL to be visible as http://dev.home.en/hawaii-hotels but internally it should use http://dev.home.en/action?city=hawaii. I have used this RewriteEngine On RewriteRule ^/([a-zA-Z]*)(-)(hotels)/ http://%{HTTP_HOST}/action?city=$1 T

[EMAIL PROTECTED] POST Method on Redirect (mod_rewrite)

2007-07-12 Thread SOPRO
Hi all, I have the following scenario in my httpd.conf file: ServerName myapp.domain.com RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/(.*) https://secure.domain.com/myapp/$1 [L,R,NC] My clients must submit a form (POST method) to "myapp.domain.com", but when r

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Naveen Sharma
In this case the URL is getting preserved but action is not getting called and I am getting 404 Error page. Please advice Navin On 7/12/07, Jeff Fulmer <[EMAIL PROTECTED]> wrote: This works for me: RewriteRule ^(.*)-hotels$ /action.php?city=$1 http://lisa.joedog.org/pennsylvania-hotels (

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Robert T Wyatt
What does the server say about the error? In other words, what is the final URL that is (not) being served? Naveen Sharma wrote: > In this case the URL is getting preserved but action is not getting > called and I am getting 404 Error page. > > Please advice > > Navin > > > On 7/12/07, *Jef

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Jeff Fulmer
Do you *have* a /action page? What's in the error_log? > In this case the URL is getting preserved but action is not getting called > and I am getting 404 Error page. > > Please advice > > Navin > > > On 7/12/07, Jeff Fulmer <[EMAIL PROTECTED]> wrote: >> >> This works for me: >> >> RewriteRule ^(

Re: [EMAIL PROTECTED] POST Method on Redirect (mod_rewrite)

2007-07-12 Thread Nick Kew
On Thu, 12 Jul 2007 11:29:57 -0300 SOPRO <[EMAIL PROTECTED]> wrote: > Hi all, > > I have the following scenario in my httpd.conf file: > > > ServerName myapp.domain.com > RewriteEngine On > RewriteCond %{HTTPS} !=on > RewriteRule ^/(.*) https://secure.domain.com/myapp/

[EMAIL PROTECTED] mod_cache setup

2007-07-12 Thread Icy Blind
HelloI'm trying to figure out if my simple mod_cache setup is working. I compiled the mod_cache modules (mod_cache, mod_disk_cache and mod_mem_cache) and put together a simple configuration. The server starts up without a murmur, but I'm not sure that the caching is actually taking place. In my fir

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Naveen Sharma
This URL is not hitting the action to which the forward is done. Its the initaial URL which gets hit from the Appserver. The issue here is that the action is not being called with the Rewrite Module. Aas a result of which I am getting 404 error message. The rewrite is not happening at the Apache e

Re: [EMAIL PROTECTED] POST Method on Redirect (mod_rewrite)

2007-07-12 Thread SOPRO
Nick, I understood your comment about encrypted/unencrypted data. About that three lines of mod_rewrite, I use them to provide round-robin for my two web servers. I want to know if this lost of POST data is the expected apache's behavior when redirecting. Regards, Fabricio. 2007/7/12, Nick K

RE: [EMAIL PROTECTED] Secure LDAP Auth to Active Directory

2007-07-12 Thread Aaron Smith
Well, I tried added that but it didn't seem to help. It's acting like it can't find the shared libraries for OpenLDAP. I have the directory in SHLIB_PATH and I a -L/usr/local/OpenLDAP.2.3/lib in the line before the error, so I'm not sure how else to direct it to the appropriate libraries. --

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Martijn
On 7/12/07, Naveen Sharma <[EMAIL PROTECTED]> wrote: This URL is not hitting the action to which the forward is done. Its the initaial URL which gets hit from the Appserver. The issue here is that the action is not being called with the Rewrite Module. Aas a result of which I am getting 404 error

RE: [EMAIL PROTECTED] POST Method on Redirect (mod_rewrite)

2007-07-12 Thread Boyle Owen
> -Original Message- > From: SOPRO [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 12, 2007 5:53 PM > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] POST Method on Redirect (mod_rewrite) > > Nick, > > I understood your comment about encrypted/unencrypted data. > About tha

Re: [EMAIL PROTECTED] Maintaing the URL when Rewriting

2007-07-12 Thread Jeff Fulmer
What does the error_log say? Post the 404 error. > This URL is not hitting the action to which the forward is done. > Its the initaial URL which gets hit from the Appserver. > The issue here is that the action is not being called with the Rewrite > Module. > Aas a result of which I am getting 404

[EMAIL PROTECTED] http rewrite help

2007-07-12 Thread Charles Li
Hi, I am using the following rewrite rule to redirect a alias to a specific application: RewriteCond %{HTTP_HOST} ^.*survey.*$ [NC] RewriteRule ^/$ http://survey.store.com.us/Survey/$1 [R] server name is company.store.com alias is survey.store.com When users click on the survey url, they are di

Re: [EMAIL PROTECTED] POST Method on Redirect (mod_rewrite) [SOLVED]

2007-07-12 Thread SOPRO
Owen, Understood. I'll have to change our load-balance method. Thanks so much. Fabricio. 2007/7/12, Boyle Owen <[EMAIL PROTECTED]>: > -Original Message- > From: SOPRO [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 12, 2007 5:53 PM > To: users@httpd.apache.org > Subject: Re: [EMAIL P

RE: [EMAIL PROTECTED] apache2 reverse proxy cgi problem

2007-07-12 Thread Jeff Murch
More info on my reverse proxy cgi problem: Here is a line of what I presume is the error log entry on the main server for the cgi error I am getting: [Thu Jul 12 11:57:21 2007] [error] [client 192.168.2.2] client denied by server configuration: /apache$root/cgi-bin/cgi_main So something is tell

Re: [EMAIL PROTECTED] proxypass and flash movie

2007-07-12 Thread Tomer Okavi
Hey guys there's a bug with some ie 7 update and flash plug-in which breaks down flash display. it happened with a couple of our desktop's, maybe that's what's going on .. google a bit and you will find a lot of thread's and posts about that problem BTW , reinstalling the operating syst

Re: [EMAIL PROTECTED] Secure LDAP Auth to Active Directory

2007-07-12 Thread Brian Foddy
My full config for hpux b11.11 (httpd 2.2.4) is ./configure --prefix=/tmp/apache --enable-so --enable-modules=all --disable-auth-digest --with-ldap-lib=/opt/openldap/lib --with-ldap-include=/opt/openldap/include --with-ldap-sdk=openldap --with-ldap --enable-authnz-ldap --enable-mods-shared=all

Re: [EMAIL PROTECTED] Secure LDAP Auth to Active Directory

2007-07-12 Thread Eric Covener
On 7/12/07, Aaron Smith <[EMAIL PROTECTED]> wrote: Well, I tried added that but it didn't seem to help. It's acting like it can't find the shared libraries for OpenLDAP. I have the directory in SHLIB_PATH and I a -L/usr/local/OpenLDAP.2.3/lib in the line before the error, so I'm not sure how el

[EMAIL PROTECTED] mod_spnego / apache 2.2.4

2007-07-12 Thread KMiller
Greetings, Is it possible to build mod_spnego.so for apache 2.2.4 running on XP? Or, do I have to downgrade to 2.0 or sime such? Advice appreciated -km -- View this message in context: http://www.nabble.com/mod_spnego---apache-2.2.4-tf4071049.html#a11569460 Sent from the Apache HTTP Serv

[EMAIL PROTECTED] Forbidden...

2007-07-12 Thread Yaakov Chaikin
Hi, I have the following config file which came with apcupsd. I am a newbie at configuring Apache, so please tell me why "http:///apcupsd/"; produces "Forbidden". It seems from the config below that the cgi script should be executed instead. # # apcupsd configuration file for Apache Web serv

[EMAIL PROTECTED] Hardware Based Apache Cluster - help!

2007-07-12 Thread Matt M.
Hi, I've got a small cluster (5) of Apache servers. I've got lots of questions about this but I'll just start with one for now! :) It's a hardware balancer. I'm wondering if I can sym link each Apache "conf" directory to the shared NFS mount: node1: /shared-nfs node1: /etc/httpd/conf -> /share

Re: [EMAIL PROTECTED] Forbidden...

2007-07-12 Thread Yaakov Chaikin
Yes, it IS configured to work only with localhost. However, that wasn't my question. I wanted to know why I am getting the right response when I do: http://localhost/apcupsd/multimon.cgi and getting "Forbidden" when I do: http://localhost/apcupsd/ On 7/12/07, Hamilton Vera <[EMAIL PROTECTED]> wr

Re: [EMAIL PROTECTED] Forbidden...

2007-07-12 Thread Hamilton Vera
With this conf, it will only work for localhost requests Order deny,allow Deny from all Allow from 127.0.0.1 Allow from ::1 (by the way I never saw this before) Please correct if I am wrong Maybe you can get more tips looking in the error_log. []´s Hamilton Vera int Administrat