RE: [users@httpd] IP Address Problem...

2005-05-31 Thread Robert Zagarello
Harish, If you can't find the solution you can force Apache to listen to IPv4 only, in httpd.conf (or httpd.cnf depending on the OS), perhaps only to see if the error report goes away: # # Listen: Allows you to bind Apache to specific IP # addresses and/or ports, instead of the default. # Se

RE: [users@httpd] IP Address Problem...

2005-05-31 Thread Harish Sundaram
Hi, If it has to do with IPv6 vs. IPv4, then what exactly is the solution to the "::" problem? I checked out printing of localhost as well as remote host. Both get printed as "::" only! Is there any workaround to this to get the address printed in 255.255.255.255 format ? And if I have to print t

[users@httpd] Help!! Can't get vhosts working properly

2005-05-31 Thread Garth Armorer
Hi All, A newbie is in the house. I just installed v2.0.54, but I still cannot get what I expect to happen, to happen. My system name is testname, domain name is www.testname.com and another one is street.testname.com. I have an alias mystreet "c:/mystuff/morestuff/bigstuff". If I access www.testna

Re: [users@httpd] Problems on Linux

2005-05-31 Thread Aman Raheja
If you were missing "programs", as you call them, apache won't even compile. Show your configure cmnd with arguments, please. Here's an example ./configure --prefix=/usr/local/apache2.0.54 --enable-proxy --enable-proxy-connect --enable-proxy-http --enable-ssl --disable-status --disable-negotiation

Re: [users@httpd] Problems on Linux

2005-05-31 Thread Patrick Donker
Broming plutonium wrote: Hi everyone, Is anyone here running the UNIX version of Apache 2.0.52 (that you compiled yourself) on a Linux machine? I am, and there are a lot of problems. Proxying doesn't work; authentication doesn't work; headers don't work... Let's talk about proxying first. When

[users@httpd] Problems on Linux

2005-05-31 Thread Broming plutonium
Hi everyone, Is anyone here running the UNIX version of Apache 2.0.52 (that you compiled yourself) on a Linux machine? I am, and there are a lot of problems. Proxying doesn't work; authentication doesn't work; headers don't work... Let's talk about proxying first. Whenever I put "ProxyRequests On

AW: [users@httpd] Can you beat my score?

2005-05-31 Thread Mididoc Productions
hi, if you fear spam, wurms, viruses etc. we are protected by a e-mail redirection system, which works outside of the computer, which don't slow the computer therefor, and we are having no more trouble since a long time. and the best: all is for free. just look: https://www.eleven.de/en/ cheers

Re: [users@httpd] Can you beat my score?

2005-05-31 Thread Laura Vance
Joshua Slive wrote: On 5/27/05, Laura Vance <[EMAIL PROTECTED]> wrote: S... Now we're going to be spammed? I suppose the membership of the list isn't controlled in any way, so I suppose it's surprising that this list isn't spammed 100 times every single day. The list is spam-prot

RE: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Martin B. Nielsen
Hi. If you still havent solved it, I might have a solution for you. I'm running several vhosts behind NAT, using IP-based vhosts. You can try this: NameVirtualHost 192.168.1.100 ServerName some.domain.name.com * other settings you want * ServerName some.other.domain.nam

Re: [users@httpd] RewriteRule question

2005-05-31 Thread Gary W. Smith
I have also tried RewriteEngine on RewriteCond %{HTTP_REFERER} ^$ RewriteCond %{HTTP_REFERER} !^http://(10\.20\.30\.40)/.*$ [NC] RewriteRule ^/restricted/.+ - [F] And RewriteEngine on RewriteCond %{HTTP_REFERER} !^http://(10\.20\.30\.40)/.*$ [NC] RewriteRule ^/restricted/.+ - [F] As well. I

[users@httpd] SSL Issues.

2005-05-31 Thread Rob Waldrum
Hi, I'm getting the error: Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked. I have configured Tomcat for SSL on port 8443. I can bring tomcat up at https://www.mydomain.com:8443 just fine. But when I add the apps por

Re: [users@httpd] Russian Charset Problem

2005-05-31 Thread Veysel Harun Sahin
Thanks Denis :) .htaccess file has solved the problem. Best regards. On 5/31/05, André Malo <[EMAIL PROTECTED]> wrote: > * Arne Heizmann <[EMAIL PROTECTED]> wrote: > > > Veysel Harun Sahin wrote: > > > > > > I want to use russian charset > > > > Why are people still creating new websites with t

Re: [users@httpd] RewriteRule question

2005-05-31 Thread Arne Heizmann
Gary W. Smith wrote: I have the following rule in place: RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(10\.20\.30\.40)/.*$ [NC] RewriteRule ^/restricted/.+ - [F] So suppose I go in with an empty referrer. The first condition is false. Therefore the ru

RE: [users@httpd] Question about how to do certificate based authentication with Apache 2.0.50 ....

2005-05-31 Thread Ian Huynh
if you want to lock it down to exactly ONE client certificate, here's one way to do it if you need to screen on more than one cert, perhaps you can use SSL_CLIENT_S_DN_O (i think) instead of SSL_CLIENT_S_DN_CN SSLRequireSSL SSLVerifyClient require SSLVer

[users@httpd] Preferred MUTEX Settings for Apache 2.0 && Sol10-x86

2005-05-31 Thread Alexander Lazic
Hi, we have the following error with ~1000 concurrent Connection: --- [Tue May 31 18:59:28 2005] [warn] (45)Deadlock situation \ detected/avoided: Failed to acquire global mutex lock [Tue May 31 18:59:28 2005] [error] (45)Deadlock situation \ detected/avoided: Cannot open SSLSessionCache DBM fi

[users@httpd] envvars and siteminder 5qmr7

2005-05-31 Thread Justin Conover
Were I work, my group supports/installs apache, but we don't have access to write to /usr/bin/envvars, and we have sudo access to fire off httpd, which by the way to config files are in /tools/http//conf/httpd.conf With a start script that looks like this: DIRN=`dirname $0` BASE=`basename $0` if

[users@httpd] RewriteRule question

2005-05-31 Thread Gary W. Smith
I have been trying to implement a restriction list on server by referrer only. It doesn't seem to be working. I have a directory called restricted that holds some PDF (as well as other) documents that I want to prevent access to unless they have clicked the link on our site. Most of this is for

Re: [users@httpd] Apache & mod_rewrite

2005-05-31 Thread Aman Raheja
Without mod_rewrite: ScriptAlias /perl/ /shop/ /perl/> DirectoryIndex shop.pl So when someone hits the http://www.test.com/shop/, they will actually access perl/shop.pl - wherever it is on the filesystem With mod_rewrite, once you rewrite the /shop/ to /perl/shop.pl, that's what the brow

[users@httpd] Question about how to do certificate based authentication with Apache 2.0.50 ....

2005-05-31 Thread Matthew McHugh
Hello All,   I am using Apache 2.0.50 on a Sun solaris webserver.  I am trying to limit (for one virtual host) access to the site.  I want to limit the access to one company that passes me their certificate.  Is there a way to do this with apache 2.0.50?  I see that something can be done wi

[users@httpd] Module notification of Apache Shutdown

2005-05-31 Thread Dan Baumbach
>> Dan Baumbach wrote: I'm working on a module for Apache 2 under Windows. Forget "under Windows". It's going to run under Apache, and what you want is exactly the same on windows platform as anywhere else. My module is loading and working fine. There is some cleanup I'd like

Re: [users@httpd] server name and site name, download problem

2005-05-31 Thread Karim Hamed-abdelouahab
Thank for your help... I have already cheked if there is another php.ini on the machine. No other file under the name php.ini. I made the installation manually with a source code of php. No distribution like rpm or other kind of packages... it fails after 15 seconds approximatively... :-( Thank

Re: [users@httpd] IP Address Problem...

2005-05-31 Thread Arne Heizmann
Harish Sundaram wrote: i.e. instead of printing the IP address of the remote host, I only get "::". "::" is a valid IP address in IPv6. I think it is localhost. ** This email and any files transmitted with it are confidentia

[users@httpd] Apache & mod_rewrite

2005-05-31 Thread Oliver Kirchel
Hi, I have a problem with mod_rewrite. I want to type http://www.test.com/shop/ and the URL should go to http://www.test.com/perl/shop.pl , but in the browser you should only see the first URL http://www.test.com/shop/ . How can I do this ? --

[users@httpd] Rewriting again

2005-05-31 Thread Jan Eden
Hi, I am still struggling with the setup described in my earlier post. It almost works now. RewriteCond %{HTTP_HOST} (first|second|third) RewriteRule ^(.+)$ %1/$1 [NC] RewriteRule ^first/site/?$ cgi-bin/show.pl?id=2657 [L,NC] # Index für 'Breskens' RewriteRule ^first/site/page/?$ cgi-bin/show.p

Re: [users@httpd] IP Address Problem...

2005-05-31 Thread Robert Zagarello
The last time I saw double colons it had to do with IPv6 vs. IPv4. Just a thought. BZAG == --- Harish Sundaram <[EMAIL PROTECTED]> wrote: > Hi, > > I am running Apache 2.0.53 on HP-UX Itanium machine > and I'm facing this > peculiar problem with the Server Access log. For any

Re: [users@httpd] TimeOut directive?

2005-05-31 Thread Tejas Sanghavi
Hi Ivan, (B (BThanks a lot for the quick and correct answer... (B (BI've tried and it's working fine. (B (BThanks again, (BTejas. (B (B- Original Message - (BFrom: "Ivan Barrera A." <[EMAIL PROTECTED]> (BTo: (BSent: Tuesday, May 31, 2005 6:38 PM (BSubject: Re: [EMAIL PROTECTED

[users@httpd] IP Address Problem...

2005-05-31 Thread Harish Sundaram
Hi, (B (BI am running Apache 2.0.53 on HP-UX Itanium machine and I'm facing this (Bpeculiar problem with the Server Access log. For any request, the IP address (Bis not properly printed in the log. I am getting entries such as: (B (B+ (B:: - - [26/May/2005:14:

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
No, this sounds good. Are you running a DNS server? (I think it is better not to run one in this scenario.) What do you have in your hosts file? Try putting your FQDNs for your public IP in your hosts file (assuming you aren't running a DNS server). Even though you may have HostNameLookups tu

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Jonathan Visser
I am using name based vhosts.All of the domains registered with my public static IP provided by my ISP. I then try to NAT all traffic from my Public address to the my private LAN IP address( I.E. 192.168.1.100). Are you saying that this box will always need to be outside the firewall? Th

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
There's one other thing. Some cable/DSL ISPs (to private LANs) actually restrict or block incoming port 80 requests (to your router) if you are using a residential broadband connection instead of purchasing a business account. BZAG === ---

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
Are you using name-based or IP-based multiple vhosts? Also, I've assumed you are using a private LAN instead of an internet-registered IP one, so correct me if I'm wrong. The private LAN will cause DNS name resolution problems, because your web server will have a private IP address that doesn't

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Jonathan Visser
It will serve up the default page when it is not in DMZ mode, but will not serve up the multiple domains in the virtual hosts settings. I have tried to forward ports, NAT ports all according to the netopia manuals and tech notes. I do temporary have it in the DMZ mode and it does work, but wo

Re: [users@httpd] TimeOut directive?

2005-05-31 Thread Ivan Barrera A.
Tejas Sanghavi wrote: (B> Hi All, (B> (B> What's the use of 'TimeOut' directive? How can I check it whether it is (B> working or not? I've gone thru the 'Apache HTTP Server Documentation', (B> but could not make it. (B (BTelnet to port 80, and wait for "timeout" seconds.. it should drop th

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
Jonathan, Have you set your router to forward ports 80/443 to your web server's private LAN address(es) (or whatever port(s) the server listens to) ? Your router firewall has selectable operating modes and you need to check what you think is working with the doc at: http://www.netopia.com/equip

[users@httpd] TimeOut directive?

2005-05-31 Thread Tejas Sanghavi
(B (B (BHi All, (B  (BWhat's the use of 'TimeOut' directive? How can I (Bcheck it whether it is working or not? I've gone thru the 'Apache HTTP Server (BDocumentation', but could not make it. (B  (BHow is it different than 'KeepAliveTimeout' (Bdirective? (B  (BPls guide me. (B  (B

[users@httpd] Routing \ Apache Question

2005-05-31 Thread Jonathan Visser
I am pretty sure this is not an apache problem, but wanted to see if anyone has dealt with this and if there is a solution. I have a netopia 3546 modem\router and when I use the NAT feature my apache server will no longer serve up my pages according to the virtual host configuration. I am run

Re: [users@httpd] Getting 'no shared ciphers' while connecting to the server

2005-05-31 Thread Robert Zagarello
Alaka, Can you spell out the OpenSSL commands you are using to gen the key and cert? Perhaps that is where the error is and not your server. BZAG === Alaka wrote: Hi All, I'm using Apache 1.3.31 with mod_ssl 2.8.17 and OpenSSL 0.9.7d binaries. I use R

Re: [users@httpd] Infinite loop with RewriteRule

2005-05-31 Thread Jan Eden
André Malo wrote on 31.05.2005: >* Arne Heizmann <[EMAIL PROTECTED]> wrote: > >>Boyle Owen wrote: I have a problem with the following RewriteRule causing an infinite loop: RewriteCond %{HTTP_HOST} (first|second|third|fourth) RewriteRule ^(.+)$ %1/$1 [L,R,NC] >>> >>>You do

RE: [users@httpd] Infinite loop with RewriteRule

2005-05-31 Thread Jan Eden
Boyle Owen wrote on 31.05.2005: >>RewriteCond %{HTTP_HOST} (first|second|third|fourth) RewriteRule >>^(.+)$ %1/$1 [L,R,NC] > >You do understand what ^(.+)$ converts to? It means: "from the >start, 1 or more of any character (greedy), to the end" > >That is, it will match the entire URI, no matter

Re: [users@httpd] Russian Charset Problem

2005-05-31 Thread André Malo
* Arne Heizmann <[EMAIL PROTECTED]> wrote: > Veysel Harun Sahin wrote: > > > > I want to use russian charset > > Why are people still creating new websites with these obsolete character > sets? Why not just use UTF-8? It's been around for long enough... I can tell you the reasons for using koi8

Re: [users@httpd] Infinite loop with RewriteRule

2005-05-31 Thread André Malo
* Arne Heizmann <[EMAIL PROTECTED]> wrote: > Boyle Owen wrote: > >> > >> I have a problem with the following RewriteRule causing an infinite > >> loop: > >> > >> RewriteCond %{HTTP_HOST} (first|second|third|fourth) RewriteRule > >> ^(.+)$ %1/$1 [L,R,NC] > > > > You do understand what ^(.+)$ c

Re: [users@httpd] Proxy pass and proxy pass reverse problem with $

2005-05-31 Thread Nick Kew
de Groot, Peter wrote: > > Apologies .. I explained it badly ... I will try again. > > I have an internal web site ... > >http://ms-weather.egshs.local > > Within this internal web site I have links like > > http://ms-weather.egshs.local/Doc$1/Destination.htm T

Re: [users@httpd] Infinite loop with RewriteRule

2005-05-31 Thread Arne Heizmann
Boyle Owen wrote: I have a problem with the following RewriteRule causing an infinite loop: RewriteCond %{HTTP_HOST} (first|second|third|fourth) RewriteRule ^(.+)$ %1/$1 [L,R,NC] You do understand what ^(.+)$ converts to? [...] it will match the entire URI, no matter what it is. But he h

Re: [users@httpd] Russian Charset Problem

2005-05-31 Thread Arne Heizmann
Veysel Harun Sahin wrote: I want to use russian charset Why are people still creating new websites with these obsolete character sets? Why not just use UTF-8? It's been around for long enough... ** This email and any files t

RE: [users@httpd] Infinite loop with RewriteRule

2005-05-31 Thread Boyle Owen
> -Original Message- > From: Jan Eden [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 31. Mai 2005 10:01 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Infinite loop with RewriteRule > > > Hi, > > I have a problem with the following RewriteRule causing an > infinite loop: > > Re

RE: [users@httpd] Proxy pass and proxy pass reverse problem with $

2005-05-31 Thread de Groot, Peter
Apologies .. I explained it badly ... I will try again. I have an internal web site ... http://ms-weather.egshs.local Within this internal web site I have links like http://ms-weather.egshs.local/Doc$1/Destination.htm I am trying to make the internal web site

[users@httpd] Infinite loop with RewriteRule

2005-05-31 Thread Jan Eden
Hi, I have a problem with the following RewriteRule causing an infinite loop: RewriteCond %{HTTP_HOST} (first|second|third|fourth) RewriteRule ^(.+)$ %1/$1 [L,R,NC] When requesting a URL like http://firsthost/something I end up getting something like http://firsthost/first/first/first/first/f