RE: [EMAIL PROTECTED] Writing to a directory

2006-11-30 Thread Boyle Owen
-Original Message- From: Meir Hazon [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 8:58 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Writing to a directory Hello All, I use Apache 2.0 in order to access remote directories over the web. Using a web

RE: [EMAIL PROTECTED] Writing to a directory

2006-11-30 Thread Meir Hazon
Thanks Owen, Can I use the apache as an http to ftp proxy in order to do so? Port 21/ ftp protocol is blocked by a firewall. The ftp uses PASV mode. How can it be done? It will not be an anonymous ftp server, users will have to log into it. Thanks again, Meir -Original Message- From:

RE: [EMAIL PROTECTED] Writing to a directory

2006-11-30 Thread Boyle Owen
-Original Message- From: Meir Hazon [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 9:32 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Writing to a directory Thanks Owen, Can I use the apache as an http to ftp proxy in order to do so?

RE: [EMAIL PROTECTED] Writing to a directory

2006-11-30 Thread Meir Hazon
Hi, Then my only true option is to use mod_dav, right? Did you use it in the past? Does it really work? Thanks, Meir -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 10:54 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Writing

RE: [EMAIL PROTECTED] Writing to a directory

2006-11-30 Thread Boyle Owen
-Original Message- From: Meir Hazon [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 10:01 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Writing to a directory Hi, Then my only true option is to use mod_dav, right? You never really described your

RE: [EMAIL PROTECTED] Writing to a directory

2006-11-30 Thread Meir Hazon
Thanks alot -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 11:07 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Writing to a directory -Original Message- From: Meir Hazon [mailto:[EMAIL PROTECTED] Sent:

[EMAIL PROTECTED] How to chain two rules

2006-11-30 Thread Norman Khine
Hello, Can someone please advise how to chain two rules together so that: [1] VirtualHost *:80 [2] ServerName mysite.com [3] ServerAlias www.mysite.com [4] RewriteEngine On [5] RewriteCond %{HTTP_HOST} ^www\.mysite\.info [nc] [6] RewriteRule (.*) http://mysite.info/$1 [R=301,C] [7]

[EMAIL PROTECTED] content negotiation by directory

2006-11-30 Thread Daniel McBrearty
Hi I have multilingual content on my site, but I wish to organise it differently to the way described in 'content negotiation' in th docs. (I am running 2.2.) If the user requests '/' with a preference for 'fr', I would like to server /fr/index.html and so on. I don't see any way to do this

RE: [EMAIL PROTECTED] content negotiation by directory

2006-11-30 Thread Boyle Owen
-Original Message- From: Daniel McBrearty [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 11:00 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] content negotiation by directory Hi I have multilingual content on my site, but I wish to organise it

[EMAIL PROTECTED] Dir Module problem

2006-11-30 Thread JM
Hi, I have this in my httpd.conf IfModule dir_module DirectoryIndex index.php /IfModule mod_dir - module is listed in the compiled modules why is it when i try to visit the site.. http://mydomain.com/sample/ index.php doesn't show up.. i have to manually add

RE: [EMAIL PROTECTED] Dir Module problem

2006-11-30 Thread Boyle Owen
-Original Message- From: JM [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 11:23 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Dir Module problem Hi, I have this in my httpd.conf IfModule dir_module DirectoryIndex index.php /IfModule

Re: [EMAIL PROTECTED] content negotiation by directory

2006-11-30 Thread Nick Kew
On Thu, 30 Nov 2006 11:08:17 +0100 Boyle Owen [EMAIL PROTECTED] wrote: What about mod_rewrite? Maybe something conditional on the Accept-Language header? That'll work up to a point. Specifically, the point of a yes/no decision as to whether a user accepts a language. But content negotiation

Re: [EMAIL PROTECTED] content negotiation by directory

2006-11-30 Thread Daniel McBrearty
that's what I'm thinking, Nick. I'm wondering about using the content-negotiation to serve the standard index.fr.html, but then having mod-rewrite to transform .fr.html into the real path to file. I'd have to read up on the order of processing, but IIRC that might work. bit of a fiddle though.

RE: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-30 Thread Earl, Robert\(IT\)
I am using apache 1.3 with a default install on windows XP. Pretty much the only mod to the apache config I did was set the php parameters (using as a module, not cgi), and the vhosts. Have each vhost point to their own document root. Below is an example of how I set the vhosts. I set vhost1 in

[EMAIL PROTECTED] apache 2.2.3 and headers management

2006-11-30 Thread Davide Corio
Hi *, I'm trying to setup Apache2 to pass auth headers to Zope The problem is that I can use mod_ntlm to authenticate users against Active Directory but I can't pass the REMOTE_USER variabile to Zope (event with basic auth). Apache passes (null). I recompiled Apache with the

Re: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-30 Thread Joshua Slive
On 11/30/06, Earl, Robert(IT) [EMAIL PROTECTED] wrote: I am using apache 1.3 with a default install on windows XP. That's mistake number 1. The 1.3 series on win32 is not recommended. Using 2.2.3. Pretty much the only mod to the apache config I did was set the php parameters (using as a

[EMAIL PROTECTED] User Password in httpd.conf file

2006-11-30 Thread Gerard
I have a directory that I needs to be password protect and limited to only certain users. Is it possible to place all of this information into the httpd.conf file, or do I need a separate 'password' file? -- Gerard [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] User Password in httpd.conf file

2006-11-30 Thread Joshua Slive
On 11/30/06, Gerard [EMAIL PROTECTED] wrote: I have a directory that I needs to be password protect and limited to only certain users. Is it possible to place all of this information into the httpd.conf file, or do I need a separate 'password' file? You need a separate file:

[EMAIL PROTECTED] mod_rewrite: remembering environment variables

2006-11-30 Thread A. K.
The mod_rewrite doc mentions that the *E=**VAR*:*VAL flag *[can be used] to strip but remember information from URLs. What exactly does that mean? I need to remember the values of certain EV's after a rewrite process has completed. It would be particluarly useful to me know what the original

Re: [EMAIL PROTECTED] mod_rewrite: remembering environment variables

2006-11-30 Thread Joshua Slive
On 11/30/06, A. K. [EMAIL PROTECTED] wrote: The mod_rewrite doc mentions that the E=VAR:VAL flag [can be used] to strip but remember information from URLs. What exactly does that mean? I need to remember the values of certain EV's after a rewrite process has completed. It would be particluarly

[EMAIL PROTECTED] Could not reliably determine FQDN

2006-11-30 Thread sniedermeyer
I have the servername directive in my virtualhosts config file, but am still getting the following error: httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.1.1 for ServerName I did some Googling on this and someone mentioned I might have to enter a

Re: [EMAIL PROTECTED] mod_rewrite: remembering environment variables

2006-11-30 Thread A. K.
iptables redirects to the VirtualHost which rewrites to the script housed on localhost. The script does some processing then re-requests the original request based on the parameters and query string passed to it. google.com will display just fine except for the logo image which gets re-written

[EMAIL PROTECTED] Godaddy ssl sertificate problem...

2006-11-30 Thread Mailing Lists
Hi, I am having trouble with a certificate from Godaddy.com. My website is https://www.piercebroscoffee.com On many browsers (Firefox, Epiphany, and even Lynx!) I am not able to validate the cert. Here is a clue that I noticed: It only fails if that is the first time that you need to validate

Re: [EMAIL PROTECTED] Godaddy ssl sertificate problem...

2006-11-30 Thread Richard de Vries
The problem is that your certificate has been signed by a Certificate Authority which is not trusted by many browsers. Your HTTPS instance worked fine on my internet explorer 7, but did indeed fail on firefox. An examination of the certificate revealed that your certificate was issued by

Re: [EMAIL PROTECTED] Godaddy ssl sertificate problem...

2006-11-30 Thread Richard de Vries
Ok, after doing some more research, I need to take the statement in which I said their certificates are not trusted in many browsers back. It does appear that most browsers trust StarTech. I looked thru the CA certs in firefox and noticed it has a trusted CA for StarTech. Hmmm very interesting. I

Re: [EMAIL PROTECTED] Godaddy ssl sertificate problem...

2006-11-30 Thread Bill Angus
I had no problem with the Godaddy certificate we use. Though as a newbie I recall that it did take me a while to figure out the distinguished name and its proper use in generating certificates. Browsers virtually all recognize the godaddy cert. I also found that their customer service is

Re: [EMAIL PROTECTED] Could not reliably determine FQDN

2006-11-30 Thread Joshua Slive
On 11/30/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have the servername directive in my virtualhosts config file, but am still getting the following error: httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.1.1 for ServerName I did some

[EMAIL PROTECTED] Re: Could not reliably determine FQDN

2006-11-30 Thread sniedermeyer
This appears to have worked. Thanks Joshua! Steven Niedermeyer Bellingham, WA Joshua Slive [EMAIL PROTECTED]

RE: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-30 Thread Earl, Robert\(IT\)
Here is what I have and found. In my hosts file I set up 127.0.0.1 localhost 192.54.131.157 emp2.mydomain.com 192.54.131.157 emp3.mydomain.com In my httpd.conf I set up -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joshua

RE: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-30 Thread Earl, Robert\(IT\)
Sorry about the last post, sent by mistake. My config is below. What I found is if I switch the order of the virtual host blocks, it will pick up the files from whichever documentroot of whichvever vhost is listed first. In my hosts file I set up 127.0.0.1 localhost 192.54.131.157

RE: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-30 Thread Earl, Robert\(IT\)
It does distinguish the source from the localhost vs the other 2 which I used the same IP for though. I thought the name would distinguish the vhosts. -Original Message- From: Earl, Robert(IT) [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 3:48 PM To: users@httpd.apache.org

Re: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-30 Thread Joshua Slive
On 11/30/06, Earl, Robert(IT) [EMAIL PROTECTED] wrote: It does distinguish the source from the localhost vs the other 2 which I used the same IP for though. I thought the name would distinguish the vhosts. I can not parse that paragraph at all. Anyway, the first thing to do is to make your

Re: [EMAIL PROTECTED] How to Lock a user out after 3 bad attempts

2006-11-30 Thread Joshua Slive
On 11/30/06, Jones Scott - sjones [EMAIL PROTECTED] wrote: Is there a module that will work with AuthDBI to help lock a user out after 3 bad attempts Not that I know of. It is a harder problem than it might appear to be. Since HTTP is stateless, you'd need to write to a database on each

Re: [EMAIL PROTECTED] REMOTE_USER = (null)

2006-11-30 Thread Davide Corio
Il giorno gio, 30/11/2006 alle 21.54 +0100, Davide Corio ha scritto: Hello list, I'm still tryng to get mod_rewrite work correctly in order to pass authorization headers to Zope. Solved! :) RewriteEngine on RewriteCond %{REMOTE_USER} (.*) RewriteRule .* - [E=REMOTE_USER:%1] RequestHeader add

RE: [EMAIL PROTECTED] 2 vhosts with same file names - Apache only uses one file

2006-11-30 Thread Earl, Robert\(IT\)
Read that article before and had tried that. It makes no difference. Just tried it again to make sure. It also mentions that older browsers might not send the information required for name based virtual hosts to work correctly. I use a current browser, not the latest though. (firefox 1.5). I also

Re: [EMAIL PROTECTED] ErrorDocument on 401

2006-11-30 Thread Joshua Slive
On 11/30/06, Saad, Dan (N-Computer Sciences Corp) [EMAIL PROTECTED] wrote: Additionally, a 401 Authorization Required error was encountered while trying to use an ErrorDocument to handle the request. You need to point the Errordocument directive at a place that is not itself restricted by