RE: [EMAIL PROTECTED] Once compiled code of apache2.2.8 on soalris machine can be reused for another solaris machine.

2008-04-27 Thread Narendra Verma
Thanks Krist, I am doing for the same. Thanks for you reply. Narendra -Original Message- From: Krist van Besien [mailto:[EMAIL PROTECTED] Sent: Friday, April 25, 2008 8:55 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Once compiled code of apache2.2.8 on soalris machine c

[EMAIL PROTECTED] Apache compilation issue

2008-04-27 Thread Narendra Verma
Hi all, I am compiling httpd-2.2.8 on Solaris machine with giving configure command like $ ./configure --enable-proxy --enable-proxy_ajp --enable-proxy_balancer --enable-headers --enable-cache --enable-disk_cache --enable-rewrite This command runs successfully. But problem comes when I run 'make'

[EMAIL PROTECTED] connecting to another port via port 80

2008-04-27 Thread Nishantha Pradeep
Hi all I am running an apache server on my computer and I am also running chat server on the same computer. The chat server's http-polling is at port 5280 . what I want to do is, I have a web chat client and that client should access the http-polling at chat server through port 80 because I think

Fwd: [EMAIL PROTECTED] SetEnvIf help (concepts OK, but lacks implementation)

2008-04-27 Thread Daniel Aleksandersen
2008-04-28 01:12 skreiv du: > On Sun, Apr 27, 2008 at 6:45 PM, Daniel Aleksandersen wrote: > > Could you help me with the regex editing too, please? Were > > "magical-regex" takes the current header and inserts > > "http://www.domain.tld/"; as a prefix. Header always edit Content-Location > > "mag

[EMAIL PROTECTED] HTTP “Location” header responds question

2008-04-27 Thread Daniel Aleksandersen
Hi list, Really a question about the HTTP standard, but I had nowhere else to ask it. May I include the HTTP “Location” header when not redirecting using a 3## redirect status? I am considering including the Location header with the preferred absolute URI on a 200 OK status. http://www.w3.org/

Re: [EMAIL PROTECTED] .htaccess assistance

2008-04-27 Thread Joshua Slive
On Sun, Apr 27, 2008 at 7:55 PM, Tom Ray [Lists] <[EMAIL PROTECTED]> wrote: > Hey, > > I'm trying to setup something up where I have a video player on the main > page of the site but the .flv files are in a directory such as videos/files. > What I would like to do is use .htaccess to block the dir

[EMAIL PROTECTED] .htaccess assistance

2008-04-27 Thread Tom Ray [Lists]
Hey, I'm trying to setup something up where I have a video player on the main page of the site but the .flv files are in a directory such as videos/files. What I would like to do is use .htaccess to block the direct calling for those files so they can't be downloaded but I still want the site

[EMAIL PROTECTED] SetEnvIf help (concepts OK, but lacks implementation)

2008-04-27 Thread Daniel Aleksandersen
2008-04-27 18:58 skreiv Joshua Slive: > On Sat, Apr 26, 2008 at 5:33 PM, Daniel Aleksandersen wrote: > > SetEnvIfNoCase Host !^www.domain.tld$ wwwhost=no > > # Sets enviromental variable wwwhost to no if host is not www.domain.tld > > SetEnvIfNoCase Host ^www.aleksandersen.net$ wwwhost=yes > >

[EMAIL PROTECTED] Retransmissions seen for HTTP GETs and POSTS

2008-04-27 Thread Nayman Felix-QA5535
In some testing that I've done, anywhere from 1 to 10% of HTTP GETs and POSTs that apache receives are resulting in a TCP retransmission. I've captured a wireshark trace for these retransmissions and noticed that the HTTP GET or POST is being received, but no TCP ack is being sent out resulting

Re: [EMAIL PROTECTED] SetEnvIf help (concepts OK, but lacks implementation)

2008-04-27 Thread Joshua Slive
On Sat, Apr 26, 2008 at 5:33 PM, Daniel Aleksandersen <[EMAIL PROTECTED]> wrote: > Hi, > > This is for Apache 2.2.4 and newer. Comments explain what I am trying to > achieve on each step. The coding is just what I think is right, but know not > to be working. Please help me fix the coding. > >

Re: [EMAIL PROTECTED] rejecting non GET/POST methods

2008-04-27 Thread Joshua Slive
On Sun, Apr 27, 2008 at 7:43 AM, Robert Montgomery <[EMAIL PROTECTED]> wrote: > Is there a way to tell apache to completely ignore > certain methods, ie, PROPFIND, CCM_POST, CONNECT, > OPTIONS, etc.. (and NOT write those requests to the > log files either!) > > I've tried LIMIT & LIMIT EXCEPT d

[EMAIL PROTECTED] rejecting non GET/POST methods

2008-04-27 Thread Robert Montgomery
Is there a way to tell apache to completely ignore certain methods, ie, PROPFIND, CCM_POST, CONNECT, OPTIONS, etc.. (and NOT write those requests to the log files either!) I've tried LIMIT & LIMIT EXCEPT directives, but I'm not sure if they are working (I still see those requests being logged). A