Re: [EMAIL PROTECTED] Windows installation error

2006-12-07 Thread Steve Swift
To tell what program is using port 80 I would use "Active Ports" which I probably downloaded from http://www.protect-me.com/freeware.html When you have IIS Installed, you have an extra Icon in "Control Panel" -> "Administrative Tools" called "Internet Information Service" (or something like that)

Re: [EMAIL PROTECTED] Apache quit on me all of a sudden?

2006-12-07 Thread Sander Temme
On Dec 7, 2006, at 11:19 PM, Evan Platt wrote: Now, error is httpd: Syntax error on line 327 of /Library/Apache2/ conf/httpd.conf: Cannot load /Library/Apache2/modules/mod_access.so into server: cannot create object file image or add library mod_access.so is missing. Mod_access has been re

Re: [EMAIL PROTECTED] Apache quit on me all of a sudden?

2006-12-07 Thread Evan Platt
At 08:34 AM 12/7/2006, you wrote: At 10:33 PM 12/6/2006, you wrote: That'll run the first httpd found in your PATH. On a plain vanilla MacOSX installation, that is the httpd 1.3.33 that Apple supplies. However, you must have something else there since 1.3.33 doesn't recognize the -k flag. AFAI

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Norman Peelman
- Original Message - From: "Gaming Mouse" <[EMAIL PROTECTED]> To: Sent: Thursday, December 07, 2006 4:28 AM Subject: Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work > > > Sounds to me like Apache can't find the httpd.conf file for some > reason... there should be a command

[EMAIL PROTECTED] Going crazy over mod_deflate

2006-12-07 Thread Cabbar Duzayak
Before I start, I am using apache 2.0.52 with PHP 4.3.9. In my .htaccess, I have a rewrite rule that rewrites /bb.flv as /bb.php, and this bb.php file reads a flv file and outputs it. In the PHP file, I am specifying content-type as video/x-flv and content-length, however mod_deflate still compre

RE: [EMAIL PROTECTED] Windows installation error

2006-12-07 Thread Lawrence Weathers, Ph.D.
How do you tell what has what port? And, if it is IIS, how do you turn it off or get Apache to use another port? Thanks Larry Lawrence Weathers, Ph.D. Psychologist 6921 E Jamieson Rd. Spokane WA 99223 509-448-6462, Fax 806 209 8854 [EMAIL PROTECTED] www.caer.com, www.adhdhelp.org In shallow wat

[EMAIL PROTECTED] help with location

2006-12-07 Thread Douglas WF Acheson
Hello, I have configured a virtual server for scm.b.com to house my svn repository via web_dav (hope the lingo is okay). I have it working and here is the config file CustomLog logs/scmAccess.log dwfa ErrorLog logs/scmError.log DocumentRoot "/usr/local/scm/svn/html"

Re: [EMAIL PROTECTED] Windows installation error

2006-12-07 Thread William A. Rowe, Jr.
Lawrence Weathers, Ph.D. wrote: > > (OS 10048)Only one usage of each socket address (protocol/network > address/port) > is normally permitted. : make_sock: could not bind to address 0.0.0.0:80 > no listening sockets available, shutting down > > What is it trying to tell me and what should I do

[EMAIL PROTECTED] Windows installation error

2006-12-07 Thread Lawrence Weathers, Ph.D.
At the end of the windows install I get this message: Installing the Apache2.2 service The Apache2.2 service is successfully installed. Testing httpd.conf Errors reported here must be corrected before the service can be started. (OS 10048)Only one usage of each socket address (protocol/

Re: [EMAIL PROTECTED] VirtualHosts and cgi-bin problem

2006-12-07 Thread Joshua Slive
On 12/7/06, Mark Feather <[EMAIL PROTECTED]> wrote: If i add a link into a html files source code of a sponsored domain name the expected content does not print to screen and the link is visible within the source code of the html file. Permissions are set to 755 on scripts and html files

Re: [EMAIL PROTECTED] Does Apache Restrict Multiple Concurrent Connections from one IP?

2006-12-07 Thread Jesse Ross
Does anyone know of a way to limit concurrent connections on the server side? It looks like I might be able to stretch mod_evasive to get this behavior out of it, but I'd just as soon use something built-in if possible. I'm running 1.3.27. thanks, Jesse Ross Systems Administrator Broad Insti

[EMAIL PROTECTED] VirtualHosts and cgi-bin problem

2006-12-07 Thread Mark Feather
A little background info I have a default server (My Business) and 3 sponsored virtualhosts at the mo. They are all working without errors, i can browse them all when punching in the respective domain names. The default server has a cgi-bin called cgi-bin, i have set things up so that thi

Re: [EMAIL PROTECTED] .htaccess mixed access based on client-ip/auth

2006-12-07 Thread ara . t . howard
On Thu, 7 Dec 2006, Joshua Slive wrote: On 12/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> still, i think even REMOTE_ADDR could be spoofed easily couldn't it? > > No, it is determined directly from the TCP/IP connection information which > cannot be (easily) spoofed. The Client-IP

[EMAIL PROTECTED] compilation problem with mod_proxy_html

2006-12-07 Thread sharath reddy
By compiling of the mod_proxy_html (version 2.5.2) for apache2.0.50(on LINUX) with the command "apxs -c -I/usr/include/libxml2 -i mod_proxy_html.c", I get the follow error: [EMAIL PROTECTED] tmp]# /opt/apache2/bin/apxs -c -I/usr/include/libxml2 -i mod_proxy_html.c /opt/apache2/build/libtool --s

Re: [EMAIL PROTECTED] .htaccess mixed access based on client-ip/auth

2006-12-07 Thread Joshua Slive
On 12/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> still, i think even REMOTE_ADDR could be spoofed easily couldn't it? > > No, it is determined directly from the TCP/IP connection information which > cannot be (easily) spoofed. The Client-IP is simply a request header which > the clie

Re: [EMAIL PROTECTED] .htaccess mixed access based on client-ip/auth

2006-12-07 Thread ara . t . howard
On Thu, 7 Dec 2006, Joshua Slive wrote: You should be fine if: 1) the proxy clears any existing Client-IP header before setting its own; and 2) the back-end box accepts connections only from the proxy. (The latter one is a little tricky, since you can't use mod_access to do this restriction in

Re: [EMAIL PROTECTED] .htaccess mixed access based on client-ip/auth

2006-12-07 Thread Joshua Slive
On 12/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> ps. any thoughts on why 'Allow from x.x.x.x' uses REMOTE_ADDR and not >> HTTP_CLIENT_IP? > > Because HTTP_CLIENT_IP is completely non-standard and could be > trivially manipulated by the client in most circumstances? hmmm. in this ca

Re: [EMAIL PROTECTED] .htaccess mixed access based on client-ip/auth

2006-12-07 Thread ara . t . howard
On Thu, 7 Dec 2006, Joshua Slive wrote: On 12/7/06, Ara.T.Howard <[EMAIL PROTECTED]> wrote: does this make sense? i'm sure that is based on a mis-understanding on my part about Order/Allow/Deny, but i'm sure what i'm trying to do should be possible solely from this .htaccess file. thoughts

Re: [EMAIL PROTECTED] .htaccess mixed access based on client-ip/auth

2006-12-07 Thread Joshua Slive
On 12/7/06, Ara.T.Howard <[EMAIL PROTECTED]> wrote: does this make sense? i'm sure that is based on a mis-understanding on my part about Order/Allow/Deny, but i'm sure what i'm trying to do should be possible solely from this .htaccess file. thoughts? You should include an Order Allow,Deny D

[EMAIL PROTECTED] MOD PROXY startup error: undefined symbol: ap_proxy_is_word

2006-12-07 Thread Sumit Shah
Hello All, I added mod_proxy support on my existing Apache2 installation using 'apxs'. This is what i did: prompt> apxs -c -i mod_proxy.c Then I loaded the module in my httpd.conf. When I restart Apache i get following error: Syntax error on line 235 of /home/apache2/httpd/prefork/conf/httpd.

[EMAIL PROTECTED] RewriteRule - Trailing slash required on Url

2006-12-07 Thread Dave Kennedy
After installing RoR on Apache 1.3 there is a problem with the trailing Slash HowtoInstallAndRunRubyOnRailsOnCpanel http://wiki.rubyonrails.com/rails/pages/HowtoInstallAndRunRubyOnRailsOnCpane l Problem This url displays the site 1. http://www.yourtestdomain.com/rails/ but this displays 400 Bad Re

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread William A. Rowe, Jr.
Steve Swift wrote: >> The behavior of httpd is to look in ../conf/ so that's probably not it. > > That's as may be, but the OP ran httpd.exe -V and got: > -D SERVER_CONFIG_FILE="conf/httpd.conf" The reason is it's conditional on the CWD - NOT the binary path (argv[0]'ish thing). SO... because

[EMAIL PROTECTED] .htaccess mixed access based on client-ip/auth

2006-12-07 Thread Ara.T.Howard
i'm trying to setup something which seems like it should be quite simple, underneath a hierachry which is protected via htpasswd digest auth i'd like to also allow unauthenticated access from inside our intranet. this task is complicated by the fact that our proxy setup makes all requests look l

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Steve Swift
The behavior of httpd is to look in ../conf/ so that's probably not it. That's as may be, but the OP ran httpd.exe -V and got: -D SERVER_CONFIG_FILE="conf/httpd.conf" So I maintain that double-clicking on the httpd.exe in the /bin subdirectory will look for /bin/conf/httpd.conf for the configur

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Gaming Mouse
William A. Rowe, Jr. wrote: > > There should be such a shortcut installed in your Start menu under Apache. > > William, I tried this again, after restarting, and it DID work. That was the problem. Thanks very much for you help!! Jonah

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Gaming Mouse
William A. Rowe, Jr. wrote: > >> rogram Fiels\Apache Software Foundation\Apache 2.2 >> > > There should be such a shortcut installed in your Start menu under Apache. > Ok, I tried opening the Apache shortcut in the Start Menu -- still no luck. > > On that subject, to the original poster, a

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Gaming Mouse
Steve Swift wrote: > You said that you were double-clicking the httpd.exe > That would make the current directory: > C:\Program Fiels\Apache Software Foundation\Apache 2.2\bin > > so apache would go looking for a conf subdirectory of \bin and not > find it. > > You will have to contsruct a shortcu

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread William A. Rowe, Jr.
Steve Swift wrote: > You said that you were double-clicking the httpd.exe > That would make the current directory: > C:\Program Fiels\Apache Software Foundation\Apache 2.2\bin > > so apache would go looking for a conf subdirectory of \bin and not find it. The behavior of httpd is to look in ../co

Re: [EMAIL PROTECTED] Apache hides directory that contains archive .htaccess

2006-12-07 Thread Bruno Oliveira
On Thu, 2006-12-07 at 11:57 -0500, Joshua Slive wrote: > > Time to upgrade. > > Joshua. please which the procedure to make update for the code source. I use the FreeBSD system and I go to bring up to date using the Ports I do not know if it knows. Bruno. --

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Flowering Weeds
Does the output of "httpd -V" confirm or refute his theory about httpd.conf not being found? Perhaps use Microsoft's Windows PowerShell to see what the process is really doing. PS> start-service Apache2.2 PS> get-process http* Handles NPM(K)PM(K) WS(K) VM(M) CPU(s) Id Proce

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Steve Swift
You said that you were double-clicking the httpd.exe That would make the current directory: C:\Program Fiels\Apache Software Foundation\Apache 2.2\bin so apache would go looking for a conf subdirectory of \bin and not find it. You will have to contsruct a shortcut to launch httpd.exe with a work

[EMAIL PROTECTED] DSO-Compiling Error: apxs:Error: Command failed with rc=65536

2006-12-07 Thread sharath reddy
By compiling of the mod_proxy_html (version 2.5.2) for apache2.0.50(on LINUX) with the command "apxs -c -I/usr/include/libxml2 -i mod_proxy_html.c", I get the follow error: [EMAIL PROTECTED] tmp]# /opt/apache2/bin/apxs -c -I/usr/include/libxml2 -i mod_proxy_html.c /opt/apache2/build/libtool --s

Re: [EMAIL PROTECTED] Apache hides directory that contains archive .htaccess

2006-12-07 Thread Joshua Slive
On 12/7/06, Bruno Oliveira <[EMAIL PROTECTED]> wrote: On Thu, 2006-12-07 at 11:11 -0500, Joshua Slive wrote: > Security reasons. It is unsafe to disclose the existence of protected > content by default. If you don't like it, use the "IndexOptions > ShowForbidden" option: > http://httpd.apache.o

Re: [EMAIL PROTECTED] Apache hides directory that contains archive .htaccess

2006-12-07 Thread Bruno Oliveira
On Thu, 2006-12-07 at 11:11 -0500, Joshua Slive wrote: > Security reasons. It is unsafe to disclose the existence of protected > content by default. If you don't like it, use the "IndexOptions > ShowForbidden" option: > http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html#indexoptions > > Jos

Re: [EMAIL PROTECTED] Apache quit on me all of a sudden?

2006-12-07 Thread Evan Platt
At 10:33 PM 12/6/2006, you wrote: That'll run the first httpd found in your PATH. On a plain vanilla MacOSX installation, that is the httpd 1.3.33 that Apple supplies. However, you must have something else there since 1.3.33 doesn't recognize the -k flag. AFAIK, I've removed the Apple version.

Re: [EMAIL PROTECTED] Apache hides directory that contains archive .htaccess

2006-12-07 Thread Joshua Slive
On 12/7/06, Bruno Oliveira <[EMAIL PROTECTED]> wrote: Hi, When I place the archive .htaccess inside of a directory that is being had access for the Apache this exactly directory is occult and alone I obtain to enter typing the way of the complete directory in the URL field. Example: URL www.mi

[EMAIL PROTECTED] Apache hides directory that contains archive .htaccess

2006-12-07 Thread Bruno Oliveira
Hi, When I place the archive .htaccess inside of a directory that is being had access for the Apache this exactly directory is occult and alone I obtain to enter typing the way of the complete directory in the URL field. Example: URL www.minhaempresa.com.br/downloads/ when access appears a lis

Re: [EMAIL PROTECTED] 'mydomain.com' doesn't work ('www.mydomain.com' does)

2006-12-07 Thread Krist van Besien
On 12/7/06, thomas Armstrong <[EMAIL PROTECTED]> wrote: Hi. Working with Apache 2 on Linux, I'm trying to make server accept also 'mydomain.com' petitions (www.mydomain.com works fine). Within my httdp.conf, I've got: - ServerName mydomain.com:80 ServerAlias www.mydo

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Gaming Mouse
> These are the two important lines. Apache was compiled to expect the > config to be at /apache/conf/httpd.conf. Is it? > > Rgds, > Owen Boyle > Disclaimer: Any disclaimer attached to this message may be ignored. > Owen, What is the initial "/" relative to? Again, for clarity, I will give

RE: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Boyle Owen
> -Original Message- > From: Gaming Mouse [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 07, 2006 10:28 AM > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work > > > > Sounds to me like Apache can't find the httpd.conf file for some >

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Gaming Mouse
Steve Swift wrote: > Well, before you start playing with your shortcut, is there a "conf" > subdirectory below the working directory specified in your shortcut, > and does that conf subdirectory contain your configuration file (which > had better be named " httpd.conf" !) > Up until this point I

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Steve Swift
Well, before you start playing with your shortcut, is there a "conf" subdirectory below the working directory specified in your shortcut, and does that conf subdirectory contain your configuration file (which had better be named "httpd.conf" !) On 07/12/06, Gaming Mouse <[EMAIL PROTECTED]> wrote:

[EMAIL PROTECTED] apache serves cgi error as application/x-perl

2006-12-07 Thread Tony van der Hoff
Hi, Apologies if this has been raised before; I couldn't find anything similar in the faq, nor the last 2 months archives. I recently upgraded from Apache 2.0 to 2.2. Adjusted the configuration appropriately, and mostly everything works fine. However, when the server fails to execute a perl cgi

Re: [EMAIL PROTECTED] Dir Module problem

2006-12-07 Thread JM
logs below: i accessed the site www.mydomain.com/ -- no error since the server replied with "200" unfortunately the index page did not load... xxx.xxx.xxx.xxx - - [07/Dec/2006:19:17:56 +0800] "GET / HTTP/1.0" 200 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050524

Re: [EMAIL PROTECTED] How to notify application server that ssl sessionhasexpired

2006-12-07 Thread Claude Libois
Nobody to help me (or my mail was not clear)? Claude - Original Message - From: "Claude Libois" <[EMAIL PROTECTED]> To: Sent: Tuesday, December 05, 2006 11:52 AM Subject: [EMAIL PROTECTED] How to notify application server that ssl sessionhasexpired Hello, For our project we have in

Re: [EMAIL PROTECTED] Apache 2.2.3 monitor

2006-12-07 Thread fRANz
On 12/6/06, Lucuk, Pete <[EMAIL PROTECTED]> wrote: I would like to setup something that would… - test to see is Apache is up or down - if Apache is up, do nothing - if Apache is down, bring it back up ASAP Hi. mon has an http module for check webserver availability:

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Gaming Mouse
> Sounds to me like Apache can't find the httpd.conf file for some reason... there should be a command switch to force it to look at a specific place: > > httpd -V > > should tell you what config that it has been compiled to look for - make sure it's in the right place or, > > httpd -f "path:/

[EMAIL PROTECTED] 'mydomain.com' doesn't work ('www.mydomain.com' does)

2006-12-07 Thread thomas Armstrong
Hi. Working with Apache 2 on Linux, I'm trying to make server accept also 'mydomain.com' petitions (www.mydomain.com works fine). Within my httdp.conf, I've got: - ServerName mydomain.com:80 ServerAlias www.mydomain.com UseCanonicalName Off DocumentRoot /v

Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work

2006-12-07 Thread Norman Peelman
- Original Message - From: "Gaming Mouse" <[EMAIL PROTECTED]> To: Sent: Wednesday, December 06, 2006 6:36 PM Subject: Re: [EMAIL PROTECTED] Changing DocumentRoot Doesn't Work > > > It sure sounds like you are doing the right things. Try this - once the > > httpd window is closed, look

Re: [EMAIL PROTECTED] Apache 2.2.3 monitor

2006-12-07 Thread Norman Peelman
Apache 2.2.3 monitor- Original Message - From: Lucuk, Pete To: users@httpd.apache.org Sent: Wednesday, December 06, 2006 8:59 AM Subject: [EMAIL PROTECTED] Apache 2.2.3 monitor Hello, I have Apache 2.2.3 with mod_ssl and mod_jk installed and they work like a champ! I am now wrappi