RE: [EMAIL PROTECTED] Location question

2006-04-05 Thread Axel-Stéphane SMORGRAV
Wouldn't the problem rather be that Location should be replaced by LocationMatch ?? -ascs -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2006 2:31 PM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Location question > -Original Mes

RE: [EMAIL PROTECTED] Error 416 Request Range Not Satisfiable

2006-04-05 Thread Axel-Stéphane SMORGRAV
Makes me a little curious because I have never seen any browser make a Range request. I wonder what prompted the browser to make a Range request rather than just request the whole document. Could be worthwhile to ask the client to flush the browser cache... -ascs -Original Message- Fro

Re: [EMAIL PROTECTED] uri and location directive

2006-04-05 Thread toni pérez
On 4/4/06, Boyle Owen <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: toni pérez [mailto:[EMAIL PROTECTED] > > Sent: Montag, 3. April 2006 17:11 > > To: users@httpd.apache.org > > Subject: [EMAIL PROTECTED] uri and location directive > > > > Hi list, > > > > I have got an apache

[EMAIL PROTECTED] Compile Error apache 2..2.0

2006-04-05 Thread Mickoski Miki
Hi Apache users. I compile apache 2.2.0 ./configure past succsesful but make give me an error here is the outputThe section bellow whit bold is the main errormake[1]: Leaving directory `/usr/local/src/apache2/httpd-2.2.0' server/.libs/libmain.a(main.o)(.text+0xbe2): In function `main': /usr/local/s

Re: [EMAIL PROTECTED] Installation Issue

2006-04-05 Thread Robert Baird
Graham, Thanks so much, that was it.  I had the line, but had a slight syntax error. Bob Graham Frank <[EMAIL PROTECTED]> wrote: If that message happens for the same reason it happens in linux, then your httpd.conf is missing the following line:addtype application/x-httpd-php .phpRestart apache

Re: [EMAIL PROTECTED] Installation Issue

2006-04-05 Thread Graham Frank
Hey, Glad I could help. Have a great day! --Graham -Original Message- From: Robert Baird <[EMAIL PROTECTED]> Subj: Re: [EMAIL PROTECTED] Installation Issue Date: Wed Apr 5, 2006 7:20 am Size: 730 bytes To: users@httpd.apache.org Graham, Thanks so much, that was it. I had the l

[EMAIL PROTECTED] PHP page only accessible via SSL

2006-04-05 Thread P.M
Hi,I would like to know how can i do if i want to force user to type https:// for a particular page.for example, i have a web page "admin.php" which should be ONLY accessible via SSL.if user types -->> http://admin.php, server should answer that this page does not exist.on the other hand, if user t

Re: [EMAIL PROTECTED] Error 416 Request Range Not Satisfiable

2006-04-05 Thread Joshua Slive
On 4/5/06, Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]> wrote: > Makes me a little curious because I have never seen any browser make a Range > request. I wonder what prompted the browser to make a Range request rather > than just request the whole document. There are two applications I know of t

Re: [EMAIL PROTECTED] PHP page only accessible via SSL

2006-04-05 Thread Joshua Slive
On 4/5/06, P.M <[EMAIL PROTECTED]> wrote: > Hi, > > I would like to know how can i do if i want to force user to type https:// > for a particular page. > > for example, i have a web page "admin.php" which should be ONLY accessible > via SSL. > > if user types -->> http://admin.php, server should an

Re: [EMAIL PROTECTED] PHP page only accessible via SSL

2006-04-05 Thread Graham Frank
Another option would be to check the server port: if ( $_SERVER['SERVER_PORT'] != 443 ) { header("Location: https://$_SERVER['HTTP_HOST']{$PHP_SELF}"); } That will force redirection to port 443 if the user accesses via 80. Another solution is to check against http method, but I cannot remembe

[EMAIL PROTECTED] ftp proxying

2006-04-05 Thread mastr0
Hi, just wanne kown if the "mod_proxy_ftp" is a plain cern-proxy or if there's a possibility to use the apache as a reverse proxy for FTP?! (may in combination with some mod_ftp or so) Thanks, kind regards CC -- GMX Produkte empfehlen und ganz einfach Geld verdienen! Satte Provisionen für GMX P

Re: [EMAIL PROTECTED] Secure Apache Directories

2006-04-05 Thread David Bernal
Excellent suggestion.  Another recent thought I had was to put certain files outside the web root (e.g. /var/notwebroot/) and use PHP to fetch those files after authenticating through a "php fetch file" script.   Thanks Boyle!  On 4/5/06, Boyle Owen <[EMAIL PROTECTED]> wrote: > -Original Messa

RE: [EMAIL PROTECTED] RE: failure notice

2006-04-05 Thread Amalan, S
Not to interrupt an on-going discussion, but I am interested in the user/group requirements for Apache as well. I didn't see anywhere on the Apache website for installation steps that one needs to be root in order to start or run the Apache server, but I have heard it from others. So which way is

[EMAIL PROTECTED] How to control the Apache service remotely?

2006-04-05 Thread Larry Flathmann
Greetings! I haven't been able to find any documentation on this, so I thought I would ask the experts. What options do I have to control the Apache service remotely? I need to be able to start, stop, restart the service from a remote location. The server and the outside machine I would be c

Re: [EMAIL PROTECTED] RE: failure notice

2006-04-05 Thread David Salisbury
Well.. on most unix systems I believe, you wont get a program to bind to a port number that's under 1024 unless the program is being run by root. The other ports are open to any user. -Dave - Original Message - From: "Amalan, S" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 05, 2

Re: [EMAIL PROTECTED] RE: failure notice

2006-04-05 Thread Ross A. Del Duca
The catch is the port. If your server is not listening on standard ports (80 or 443) you can start your server up as any user. However, the privileged ports (1-1024) are generally (always?) restricted so that only UID 0 can create listeners that bind to them. As indicated by a previous post, the

RE: [EMAIL PROTECTED] RE: failure notice

2006-04-05 Thread Axel-Stéphane SMORGRAV
>From the top of my head you also need to be root in order to do setuid/setgid >to change the process owner according to the User and Group configuration >directives. -ascs -Original Message- From: David Salisbury [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 05, 2006 7:08 PM To: us

Re: [EMAIL PROTECTED] PHP page only accessible via SSL

2006-04-05 Thread edward . dunkle
One other thing to consider is the Rewrite rules you can put in httpd.conf RewriteEngine On # Force to https RewriteCond %{SERVER_PORT} ^443$ RewriteRule ^/admin.php         https://yourhostname/$1 [L,R] #

Re: [EMAIL PROTECTED] ftp proxying

2006-04-05 Thread Emmanuel E
i think its just a plain cern proxy. it probably does ftp transactions but generates http responses. i dont know about mod_ftp (is it available?). but i dont think mod_proxy_ftp will do ftp reverse proxying. - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Wednesday, April 05

[EMAIL PROTECTED] unable to create worker thread

2006-04-05 Thread edward . dunkle
Apache seems to be running out of memory on one 512Meg box but not another.  What affects the amount of memory available to Apache? It also fails on a 1Gig server.  But it starts fine on one of the 512Meg servers.  I am using this configuration on a Linux 2.4 OS: ServerLimit 1 ThreadLimit   512

[EMAIL PROTECTED] Require differences between 2.0.53 and 2.2.0

2006-04-05 Thread Mike McMullen
Hi All, I am putting in a new server to replace an old server we are using. The old server is running FC3 and Apache 2.0.53. The new server is running FC5 and Apache 2.2.0. We have a small user base and use .htaccess file to manage access in people's public_html directories using "require use

[EMAIL PROTECTED] httpd 2.2 basic authentication problems

2006-04-05 Thread Peter_Duquette
Aloha folks, Kind of an apache-noob here, but other experienced eyes are at a loss on this as well as I. Here's my situation: I've got to configure a suite of three jsp-based web apps, all running on the same instance of apache, and the same instance of tomcat. One of the apps ("SP") is auth

Re: [EMAIL PROTECTED] internal dummy connection

2006-04-05 Thread Robert Ionescu
Denis wrote: Constantly there are such messages: XX.XX.XX.XXX - - [01/Apr/2006:15:55:42 +0300] "GET / HTTP/1.0" 200 8273 "-" "Apache/2.2.0 (FreeBSD) mod_ssl/2.2.0 OpenSSL/0.9.7e-p1 DAV/2 PHP/4.4.2 (internal dummy connection)" what it means? It's defined in /server/mpm_common.c: | This fun

RE: [EMAIL PROTECTED] RE: failure notice

2006-04-05 Thread Amalan, S
Thanks much. This explains why my installation did not need root privileges - I was running it on port 1150 or so. This also brings up the question: is there a reason to set the port to be below 1024 so that only root can start it up? Is there a downside to running Apache on a port greater than

[EMAIL PROTECTED] Newbie ReWrite Question

2006-04-05 Thread Mike McMullen
Hi All, Let me start off by stating I are ignernt of rewriting rules. In our .htaccess files on our server I have the following magic that forces connections for user-based directories to an SSL connection: RewriteEngine on RewriteCond %{SERVER_PORT} ^80$ RewriteCond %{PATH_INFO} ^$ Rewrit

Re: [EMAIL PROTECTED] RE: failure notice

2006-04-05 Thread Sean Conner
It was thus said that the Great Amalan, S once stated: > > Thanks much. This explains why my installation did not need root > privileges - I was running it on port 1150 or so. > > This also brings up the question: is there a reason to set the port to > be below 1024 so that only root can start i

[EMAIL PROTECTED] RE: failure notice

2006-04-05 Thread httpd2
On Wed, 5 Apr 2006, Amalan, S wrote: > To: users@httpd.apache.org > From: "Amalan, S" <[EMAIL PROTECTED]> > Subject: RE: [EMAIL PROTECTED] RE: failure notice > > Thanks much. This explains why my installation did not need root > privileges - I was running it on port 1150 or so. > > This also br