Apache problem on 7.3

2003-06-18 Thread Ashley M. Kirchner
I have the stock apache 1.3.27-2 RPM installed, and I'm trying to get suEXEC to work without success. In the virtual host file I have the DocumentRoot set to /home/rash/www and I have User and Group set. The configtest passes without a problem. However whenever I try to execute anything

Re: Apache problem on 7.3

2003-06-18 Thread Michael Schwendt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 18 Jun 2003 00:52:41 -0600, Ashley M. Kirchner wrote: I have the stock apache 1.3.27-2 RPM installed, and I'm trying to get suEXEC to work without success. In the virtual host file I have the DocumentRoot set to /home/rash/www and I

Re: Apache problem on 7.3

2003-06-18 Thread Ashley M. Kirchner
Michael Schwendt wrote: Run suexec -V to find out. Okay, so that says: -D DOC_ROOT=/var/www -D GID_MID=100 -D HTTPD_USER=apache -D LOG_EXEC=/var/log/httpd/suexec_log -D SAFE_PATH=/usr/local/bin:/usr/bin:/bin -D UID_MID=100 -D USERDIR_SUFFIX=public_html How do I overwrite that? I

Re: Apache problem on 7.3

2003-06-18 Thread Ashley M. Kirchner
Ashley M. Kirchner wrote: -D DOC_ROOT=/var/www -D GID_MID=100 -D HTTPD_USER=apache -D LOG_EXEC=/var/log/httpd/suexec_log -D SAFE_PATH=/usr/local/bin:/usr/bin:/bin -D UID_MID=100 -D USERDIR_SUFFIX=public_html Ok, so I changed everything to match what that output says. I changed my UserDir

Re: Apache problem on 7.3

2003-06-18 Thread Michael Schwendt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 18 Jun 2003 01:40:47 -0600, Ashley M. Kirchner wrote: -D DOC_ROOT=/var/www -D GID_MID=100 -D HTTPD_USER=apache -D LOG_EXEC=/var/log/httpd/suexec_log -D SAFE_PATH=/usr/local/bin:/usr/bin:/bin -D UID_MID=100 -D

Re: Apache problem on 7.3

2003-06-18 Thread Ed Wilts
On Wed, Jun 18, 2003 at 12:52:41AM -0600, Ashley M. Kirchner wrote: I have the stock apache 1.3.27-2 RPM installed, and I'm trying to get suEXEC to work without success. The most common problem I've seen is that the suexec binary is not marked suid by default, or least it wasn't back

Re: Apache problem on 7.3

2003-06-18 Thread John Nichel
Michael Schwendt wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 18 Jun 2003 01:40:47 -0600, Ashley M. Kirchner wrote: -D DOC_ROOT=/var/www -D GID_MID=100 -D HTTPD_USER=apache -D LOG_EXEC=/var/log/httpd/suexec_log -D SAFE_PATH=/usr/local/bin:/usr/bin:/bin -D UID_MID=100 -D

Re: Apache problem on 7.3

2003-06-18 Thread Michael Schwendt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 18 Jun 2003 08:37:45 -0500, John Nichel wrote: -D DOC_ROOT=/var/www -D GID_MID=100 -D HTTPD_USER=apache -D LOG_EXEC=/var/log/httpd/suexec_log -D SAFE_PATH=/usr/local/bin:/usr/bin:/bin -D UID_MID=100 -D USERDIR_SUFFIX=public_html

Re: Apache problem on 7.3

2003-06-18 Thread John Nichel
Michael Schwendt wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 18 Jun 2003 08:37:45 -0500, John Nichel wrote: -D DOC_ROOT=/var/www -D GID_MID=100 -D HTTPD_USER=apache -D LOG_EXEC=/var/log/httpd/suexec_log -D SAFE_PATH=/usr/local/bin:/usr/bin:/bin -D UID_MID=100 -D

Re: Apache problem on 7.3

2003-06-18 Thread Joseph A Nagy Jr
Ashley M. Kirchner wrote: I have the stock apache 1.3.27-2 RPM installed, and I'm trying to get suEXEC to work without success. In the virtual host file I have the DocumentRoot set to /home/rash/www and I have User and Group set. The configtest passes without a problem. However whenever I

RH8 apache problem?

2003-03-11 Thread Larry Brown
I have a default install of RH8 and apache and every time I run a .cgi or .pl file it executes but then the browser doesn't display the results, it asks if you want to download it. All the permissions seem ok and again, the script runs, it just doesn't display the page. And yes the header

RH8 apache problem?

2003-03-11 Thread Larry Brown
I have a default install of RH8 and apache and every time I run a .cgi or .pl file it executes but then the browser doesn't display the results, it asks if you want to download it. All the permissions seem ok and again, the script runs, it just doesn't display the page. And yes the header

Re: RH8 apache problem?

2003-03-11 Thread Richie Crews
Make sure the following line is uncommented in your apache conf AddHandler cgi-script .cgi also add a line below it for .pl scripts like this AddHandler cgi-script .pl On Tue, 2003-03-11 at 21:31, Larry Brown wrote: I have a default install of RH8 and apache and every time I run a .cgi or

Re: RH8 apache problem?

2003-03-11 Thread Bret Hughes
On Tue, 2003-03-11 at 20:31, Larry Brown wrote: I have a default install of RH8 and apache and every time I run a .cgi or .pl file it executes but then the browser doesn't display the results, it asks if you want to download it. All the permissions seem ok and again, the script runs, it just

Re: RH8 apache problem?

2003-03-11 Thread Bret Hughes
On Tue, 2003-03-11 at 20:31, Larry Brown wrote: I have a default install of RH8 and apache and every time I run a .cgi or .pl file it executes but then the browser doesn't display the results, it asks if you want to download it. All the permissions seem ok and again, the script runs, it just

RH8 apache problem?

2003-03-11 Thread Dennis Kaptain
Try something REALLY simple like this. your browser should be calling http://localhost/cgi-bin/program.pl create /var/www/cgi-bin/program.pl as follows: #! /usr/bin/perl use strict; print Content-type: text/html\n\n; print HTML\n; print BODY\n; print Hello World\n; print

RE: RH8 apache problem?

2003-03-11 Thread Larry Brown
) Subject: Re: RH8 apache problem? Make sure the following line is uncommented in your apache conf AddHandler cgi-script .cgi also add a line below it for .pl scripts like this AddHandler cgi-script .pl On Tue, 2003-03-11 at 21:31, Larry Brown wrote: I have a default install of RH8 and apache

RE: RH8 apache problem?

2003-03-11 Thread Larry Brown
Networks, Inc. (727) 723-8388 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Dennis Kaptain Sent: Tuesday, March 11, 2003 10:12 PM To: [EMAIL PROTECTED] Subject: RH8 apache problem? Try something REALLY simple like this. your browser should

RE: RH8 apache problem?

2003-03-11 Thread Larry Brown
Kaptain Sent: Tuesday, March 11, 2003 10:12 PM To: [EMAIL PROTECTED] Subject: RH8 apache problem? Try something REALLY simple like this. your browser should be calling http://localhost/cgi-bin/program.pl create /var/www/cgi-bin/program.pl as follows: #! /usr/bin/perl use strict; print

RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Ward William E DLDN
I'm trying to set up Apache to work on my system; long story short, while I had Apache working briefly, it's not working now (only changes made were in /etc/httpd/conf/httpd.conf). This is a STOCK RH7.3 system; I only installed it last night, it's not connected to the internet yet (because I

Re: RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Frederic Herman
Are you running portsentry? If so, you may need to stop it and then start httpd, then retsart portsentry. Fred Ward William E DLDN wrote: I'm trying to set up Apache to work on my system; long story short, while I had Apache working briefly, it's not working now (only changes made were in

Re: RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Patrick Beart
At 1:50 PM -0400 7/23/02, Ward William E DLDN wrote: I'm trying to set up Apache to work on my system; long story short, while I had Apache working briefly, it's not working now (only changes made were in /etc/httpd/conf/httpd.conf). This is a STOCK RH7.3 system; I only installed it last night,

RE: RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Ward William E DLDN
Portsentry is not running. -Original Message- From: Frederic Herman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 2:11 PM To: [EMAIL PROTECTED] Subject: Re: RH7.3 and Apache... problem with it not starting Are you running portsentry? If so, you may need to stop

RE: RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Ward William E DLDN
-Original Message- From: Patrick Beart [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 2:17 PM To: [EMAIL PROTECTED] Subject: Re: RH7.3 and Apache... problem with it not starting At 1:50 PM -0400 7/23/02, Ward William E DLDN wrote: I'm trying to set up Apache to work

Re: RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Joachim Breuer
Ward William E DLDN [EMAIL PROTECTED] writes: The error message I'm getting is in /var/logs/httpd/error_logs [Tue Jul 23 12:43:43 2002] [crit] (98)Address already in use: make_sock: could not bind to port 80 which is NOT helpful, since it comes up even AFTER a reboot. Two things come to

RE: RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Ward William E DLDN
. Anyone on the list know what mistake I'm making on the Virtual Hosts? Bill -Original Message- From: Ward William E DLDN [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 1:50 PM To: Redhat-List (E-mail) Subject: RH7.3 and Apache... problem with it not starting I'm trying to set

RE: RH7.3 and Apache... problem with it not starting

2002-07-23 Thread Ward William E DLDN
-Original Message- From: Joachim Breuer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 4:48 PM To: [EMAIL PROTECTED] Subject: Re: RH7.3 and Apache... problem with it not starting Ward William E DLDN [EMAIL PROTECTED] writes: The error message I'm getting

Apache problem

2002-06-26 Thread Van Den Abeele Kristof
Hello all , I just installed the apache web server on my pc at home. All went fine , apache rulez ... But is there a way I can provide 'more' access ( some private pages ) based on the fixed ip adres of the hosts ? Hope you understand my problem. Thx , Kristof Van den Abeele Visit our

Re: Apache problem

2002-06-26 Thread Anthony E. Greene
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 26-Jun-2002/15:52 +0200, Van Den Abeele Kristof [EMAIL PROTECTED] wrote: I just installed the apache web server on my pc at home. All went fine , apache rulez ... But is there a way I can provide 'more' access ( some private pages ) based on

Re: Apache problem

2002-06-26 Thread Jonathan Bartlett
Look for the allow/deny directives Jon On Wed, 26 Jun 2002, Van Den Abeele Kristof wrote: Hello all , I just installed the apache web server on my pc at home. All went fine , apache rulez ... But is there a way I can provide 'more' access ( some private pages ) based on the fixed ip

newbie apache problem

2002-06-21 Thread Pierre Hardy
I'm new to linux and even newer to Apache. Apache wont' start. It says that it's unable to resolve hostname. Any help please... ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: newbie apache problem

2002-06-21 Thread Anthony E. Greene
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 21-Jun-2002/09:54 +, Pierre Hardy [EMAIL PROTECTED] wrote: I'm new to linux and even newer to Apache. Apache wont' start. It says that it's unable to resolve hostname. Any help please... If you have a fixd IP address, make sure your

RE: newbie apache problem

2002-06-21 Thread Ismael Touama
httpd.conf and then change the good directive...sorry it's out of my head, can't tell more. bbsc, ism -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]De la part de Pierre Hardy Envoyé : vendredi 21 juin 2002 11:54 À : [EMAIL PROTECTED] Objet : newbie apache problem

Re: newbie apache problem

2002-06-21 Thread Anthony E. Greene
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 21-Jun-2002/14:11 +0200, Ismael Touama [EMAIL PROTECTED] wrote: If started or not, try to locate you daemon httpd and then you can running it... To solve your hostname pb, go to your httpd.conf and then change the good directive...sorry it's out

RE: newbie apache problem

2002-06-21 Thread Ismael Touama
apache problem -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 21-Jun-2002/14:11 +0200, Ismael Touama [EMAIL PROTECTED] wrote: If started or not, try to locate you daemon httpd and then you can running it... To solve your hostname pb, go to your httpd.conf and then change the good directive

Re: Apache problem

2000-09-25 Thread Steven J. Yellin
On Wed, 13 Sep 2000, Jake McHenry wrote: I have been configuring my new box and have been having some problems. Where are the files that are called when linux boots? I know about the rc.d directory and how that works, but I've looked all over for where the line "/etc/httpd" is in the

Re: Apache problem

2000-09-13 Thread Rob Hardowa
Hi Jake, I'm not an Apache admin or anything but I may be able to help. If your problem is where Apache is looking for your web files, then the config file you are looking to change is, depending on apache version, likely httpd.conf. You will likely find this in the conf directory of your

RE: Apache problem

2000-09-13 Thread Juha Saarinen
%- I have been configuring my new box and have been having some %- problems. Where %- are the files that are called when linux boots? I know about %- the rc.d directory %- and how that works, but I've looked all over for where the line %- "/etc/httpd" is in the init files. I am moving all web

Apache problem

2000-09-13 Thread Jake McHenry
I have been configuring my new box and have been having some problems. Where are the files that are called when linux boots? I know about the rc.d directory and how that works, but I've looked all over for where the line "/etc/httpd" is in the init files. I am moving all web stuff into /home/web

Re: rh6.2/apache problem?

2000-08-26 Thread burk
On Fri, 25 Aug 2000, Davros wrote: by hand (localhost - yes, my hosts file is correct), and it worked...sorta. no errors starting, but when i browse to the server, it sais that i do not have permission to access "/". It's possible that you don't have automatic directory listing enabled

RE: rh6.2/apache problem?

2000-08-25 Thread Steve Curry
] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Friday, August 25, 2000 1:16 PM To: [EMAIL PROTECTED] Subject: rh6.2/apache problem? hi all, i installed redhat6.2 workstation, but now have need for apache. according to what ive read, this should work "out of the box

rh6.2/apache problem?

2000-08-25 Thread
hi all, i installed redhat6.2 workstation, but now have need for apache. according to what ive read, this should work "out of the box", so to speak. i installed the rpm and went to start it: ./http start it gave me something about a server name not specified. i then, mistakingly,

Re: rh6.2/apache problem?

2000-08-25 Thread Jeff Hogg
-Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Friday, August 25, 2000 3:47 PM Subject: rh6.2/apache problem? hi all, ..ok, so i reinstalled apache (ala windows), and entered one by hand (localhost - yes, my hosts file

Apache problem..

2000-06-10 Thread Anurag Jalan
Hi all, Apache was correctly installed on my Redhat box .. and i was able to view the default manual page from all my machines... Today while booting httpd failed to start .. i checked the error messages .. there were syntax errors on Lines 350 and 369 of the httpd.conf file ( an extra " sign

Re: Apache problem..

2000-06-10 Thread Bernhard Rosenkraenzer
On Sat, 10 Jun 2000, Anurag Jalan wrote: The error message says ' You do not ahve permission to access / on this server' .. This when i am logged on as root ! This has nothing to do with the user you're currently logged in as (that would be a major security problem). Check the permissions on

Apache problem (fwd)

1999-11-22 Thread Davey...
Hello everyone... I have a big problem. I moved the pine conf files out of /etc (for a reason too long to get into here). After I completed the move, now Netscape browsers are just displaying the plain source text. Anyone have anything for me to check? --davey -- To unsubscribe: mail

Re: Apache problem (fwd)

1999-11-22 Thread Davey...
On Mon, 22 Nov 1999, Davey... wrote: Hello everyone... I have a big problem. I moved the pine conf files out of /etc (for a reason too long to get into here). After I completed the move, now Netscape browsers are just displaying the plain source text. Sorry.. didn't mean PINE conf