Re: [EMAIL PROTECTED] Geting rid of the ? in the URL

2007-12-07 Thread Krist van Besien
On Dec 6, 2007 11:01 PM, Rashmi Amlani <[EMAIL PROTECTED]> wrote: > ok here's what I have done so far > 1. In httpd.conf > I uncommented the following line: > a.) LoadModule rewrite_module modules/mod_rewrite.so > b.) set the AllowOverwrite to ALL This must ofcourse be AllowOverride All

[EMAIL PROTECTED] mod_proxy_html (Expecially for Nick Kew)

2007-12-07 Thread Rocco Scappatura
Hello, I run Apache 2.2 on Windows XP along with Tomcat 5.5. I'm using reverse proxy (mod_proxy) to publish a web application on Internet. I had had to use mod_proxy_html due to problems with path rewriting. Now all works fine except one think: I have a form inside an html page and when I subm

RE: [EMAIL PROTECTED] Problem runningtmod_proxy_html in httpd-2.2.x?

2007-12-07 Thread Rocco Scappatura
> This is my setting: > > ProxyHTMLLogVerbose On > LogLevel Debug > > ProxyPass /demo1/ http://www.backend-site.com/ > ProxyHTMLURLMap http://www.backend-site.com /demo1 > > > ProxyPassReverse / > SetOutputFilter proxy-html > ProxyHTMLURLMap /

RE: [EMAIL PROTECTED] Problem runningtmod_proxy_html in httpd-2.2.x?

2007-12-07 Thread Rocco Scappatura
> This is my setting: > > ProxyHTMLLogVerbose On > LogLevel Debug > > ProxyPass /demo1/ http://www.backend-site.com/ > ProxyHTMLURLMap http://www.backend-site.com /demo1 > > > ProxyPassReverse / > SetOutputFilter proxy-html > ProxyHTMLURLMap /

Re: [EMAIL PROTECTED] Apache, Tomcat and mod_proxy

2007-12-07 Thread Karel Kubat
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, At the Tomcat's catalina.out I found the following log: ... Dec 4, 2007 4:47:49 PM org.apache.catalina.startup.Catalina start INFO: Server startup in 3549 ms Dec 4, 2007 4:53:51 PM org.apache.jk.core.MsgContext action WARNING: Error sending end

Re: [EMAIL PROTECTED] Apache, Tomcat and mod_proxy

2007-12-07 Thread GKapitany
Hi, Do you have a firewall between apache and Tomcat? Looks like the connection gets closed before Tomcat is able to send the response. Try JkOptions DisableReuse, this worked for me. Gabriel "Ângelo Vimeney"

RE: [EMAIL PROTECTED] HttpURLConnection - java.net.ConnectException: Connection timed out

2007-12-07 Thread sh_santosh
Hi, the problem is solved. how see below - in sendAndReceive method Previous code was = String _sServerURL ="http://staging.stemp.com/tempgo1";; url = new URL(_sServerURL+"/wsTestServiceServlet"); //Servlet- where business Implementation code is written. New code in sendAndReceive method - ju

Re: [EMAIL PROTECTED] Intelligent/automatic cache expiry based on mtime

2007-12-07 Thread Jergen Dutch
On Dec 7, 2007 11:25 AM, Axel-Stephane SMORGRAV <[EMAIL PROTECTED]> wrote: > Sorry for being crude, but why don't you just read the manual (mod_expires) ?? > > ExpiresByType image/jpeg "modification plus 1 day" Because this is doing something different to what I want. Your suggestion would expire

RE: [EMAIL PROTECTED] HttpURLConnection - java.net.ConnectException: Connection timed out

2007-12-07 Thread sh_santosh
Axel-Stephane SMORGRAV-2 wrote: > > Just a wild shot: > > 1. Verify that the URL you try to connect to ( > _sServerURL+"/wsTestServiceServlet" ) is correct ( e.g. > http://my.tomcat.com:8080/wsTestServiceServlet ) > > 2. Test the network connectivity between your java client host and the > h

Re: [EMAIL PROTECTED] mod_proxy_html (Expecially for Nick Kew)

2007-12-07 Thread Danie Qian
- Original Message - From: "Rocco Scappatura" <[EMAIL PROTECTED]> To: Sent: Friday, December 07, 2007 3:30 AM Subject: [EMAIL PROTECTED] mod_proxy_html (Expecially for Nick Kew) Is there any way to solve this problem? Have you tried adding these? ProxyHTMLEvents onclic

Re: [EMAIL PROTECTED] Apache server behind squid proxy

2007-12-07 Thread Vincent Bray
On 06/12/2007, Johan Andersson <[EMAIL PROTECTED]> wrote: > But I have problems to get Apache to understand that it should use > https:// instead of http://, for example: > If I request https://server/dir Apache tries to redirect the browser to > http://server/dir (as it doesn't know the browser ac

[EMAIL PROTECTED] Intelligent/automatic cache expiry based on mtime

2007-12-07 Thread Jergen Dutch
Hi list, I have an application that loads a lot of images off a server every 60 seconds. I want the client's browser to cache the images because they almost never change. In the rare cases where an image does change, I would like to invalidate the client's cached copy of the image. I could do th

[EMAIL PROTECTED] Error while compiling Apache 2.0 on AIX 6.1

2007-12-07 Thread Black
I installed AIX 6.1 on one of the lpar slice. Also installed gcc. Version of gcc is as per following - Using built-in specs. Target: powerpc-ibm-aix5.3.0.0 Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --disable-nls --enable-languages=c,c++ --prefix=/opt/freeware --enab

[EMAIL PROTECTED] mod_wodan: Is it still be used/developed ?

2007-12-07 Thread Lucas Brasilino
Hi All: I'm trying to setup an Apache 2.0 server as reverse proxy using mod_wodan2 (version 2.0-RC1) but I'm experiencing some odd behaviour/problems. In server config context I've configured: WodanDefaultCacheTime / 1m WodanDefaultCacheTimeHeaderMatch Content-type ^.*$ 1m

RE: [EMAIL PROTECTED] Intelligent/automatic cache expiry based on mtime

2007-12-07 Thread Axel-Stephane SMORGRAV
ExpiresByType image/jpeg "modification plus 120 seconds" -ascs -Message d'origine- De : Jergen Dutch [mailto:[EMAIL PROTECTED] Envoyé : vendredi 7 décembre 2007 13:02 À : users@httpd.apache.org Objet : Re: [EMAIL PROTECTED] Intelligent/automatic cache expiry based on mtime On Dec 7, 2

Re: [EMAIL PROTECTED] Apache server behind squid proxy

2007-12-07 Thread Johan Andersson
Vincent Bray wrote: On 06/12/2007, Johan Andersson <[EMAIL PROTECTED]> wrote: But I have problems to get Apache to understand that it should use https:// instead of http://, for example: If I request https://server/dir Apache tries to redirect the browser to http://server/dir (as it doesn't know

Re: [EMAIL PROTECTED] Problem runningtmod_proxy_html in httpd-2.2.x?

2007-12-07 Thread Danie Qian
This is my setting: ProxyHTMLLogVerbose On LogLevel Debug ProxyPass /demo1/ http://www.backend-site.com/ ProxyHTMLURLMap http://www.backend-site.com /demo1 ProxyPassReverse / SetOutputFilter proxy-html ProxyHTMLURLMap / /demo1/ Fro

Re: [EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-07 Thread Joshua Slive
On Dec 7, 2007 8:18 PM, Christian Lerrahn <[EMAIL PROTECTED]> wrote: > Hi, > I have a site that for some reason got indexed by Google with wrong > paths which contain too many slashes. E.g. instead of an entry for > > /foo/bar > > there might be one for > > /foo///bar > > Now this is no problem for

RE: [EMAIL PROTECTED] Reverse proxy cache control problems

2007-12-07 Thread Marko Asplund
Axel-Stephane SMORGRAV wrote: > Could you possibly post the headers returned by \ > http://localhost:5050/cachetest/jsp/cacheable/main.jsp along with your proxy \ > configuration directives? After upgrading Apache from 2.2.4 to 2.2.6 the debug log looks a bit different but the test page stil

Re: [EMAIL PROTECTED] [repost] PhP Rewrite Map File Problem

2007-12-07 Thread Vincent Bray
On 07/12/2007, Josh Trutwin <[EMAIL PROTECTED]> wrote: > > to. This works fine until someone updates that file through > > releasing pages on their site (via a CMS). Occasionally, (maybe 5% > > of the time) when this file is updated the above error occurs on > > every request. The ONLY way to fix

RE: [EMAIL PROTECTED] Intelligent/automatic cache expiry based on mtime

2007-12-07 Thread Axel-Stephane SMORGRAV
Sorry for being crude, but why don't you just read the manual (mod_expires) ?? ExpiresByType image/jpeg "modification plus 1 day" I cannot recall that RFC2616 specifies exactly how the e-tag is computed, so I do not think that you can assume that the modification date will necessarily be part

Re: [EMAIL PROTECTED] Apache server behind squid proxy

2007-12-07 Thread Vincent Bray
On 07/12/2007, Johan Andersson <[EMAIL PROTECTED]> wrote: > Sorry, didn't work. Apache won't start. > I get this in error_log: > [Fri Dec 07 19:42:56 2007] [info] Loading certificate & private key of > SSL-aware server > [Fri Dec 07 19:42:56 2007] [error] Server should be SSL-aware but has no > cer

[EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-07 Thread Christian Lerrahn
Hi, I have a site that for some reason got indexed by Google with wrong paths which contain too many slashes. E.g. instead of an entry for /foo/bar there might be one for /foo///bar Now this is no problem for a Apache but it is for some of my pages because they use relative paths. If I have an

Re: [EMAIL PROTECTED] [repost] PhP Rewrite Map File Problem

2007-12-07 Thread Josh Trutwin
Hi - been a week, curious if anyone has any ideas? Josh On Fri, 30 Nov 2007 15:00:17 -0600 Josh Trutwin <[EMAIL PROTECTED]> wrote: > Hi - through some great help from this list (I'm looking at you > Joshua Slive) I was able to setup a RewriteMap using a PhP program. > After a couple months usage

Re: [EMAIL PROTECTED] Analyzing access and error logs

2007-12-07 Thread Dragon
Arnab Ganguly wrote: Hi All, Is there any free tool available that analyzes Apache error and access logs? Thanks in advance. -A End original message. - At the risk of sounding rude, do you know how to use a search engine? This is a question you could have

RE: [EMAIL PROTECTED] mod_proxy_html (Expecially for Nick Kew)

2007-12-07 Thread Rocco Scappatura
> >Is there any way to solve this problem? > > > > > Have you tried adding these? > > ProxyHTMLEvents onclick ondblclick onmousedown onmouseup \ > onmouseover onmousemove onmouseout > onkeypress \ > onkeydown onkeyup onfocus onblur onloa

Re: [EMAIL PROTECTED] Intelligent/automatic cache expiry based on mtime

2007-12-07 Thread C.F-Win in China F
ExpiresByType image/jpeg "access plus 1 day"

Re: [EMAIL PROTECTED] Intelligent/automatic cache expiry based on mtime

2007-12-07 Thread Jergen Dutch
On Dec 7, 2007 11:01 AM, C.F-Win in China F <[EMAIL PROTECTED]> wrote: > ExpiresByType image/jpeg "access plus 1 day" > Thanks for this, but I don't want to expire the cache based on access, I want to expire the cache based on mtime. etags should handle this, but it seems not too..