Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Evert Lammerts
>> chmod -R 755 /path/to/document/root you should replace /path/to/document/root with the actual path to your document root - the path to the folder you want apache to make accessible. In my case for example, I keep my websites at /var/www (which is the default location). You can check the locatio

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Ch Praveena
Ok.. But please confirm me what exactly do I need to give the command meaning "/path/to/document/root"? Is it something like the PREFIX path? or anything else.. 2008/8/19 Evert Lammerts <[EMAIL PROTECTED]> > How about : > >> chmod -R 755 /path/to/document/root > > I'm guessing that since conf

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Evert Lammerts
How about : >> chmod -R 755 /path/to/document/root I'm guessing that since configure went well, and apache actually works (you're getting a 403 response), your prefix shouldn't be a problem. Evert On Tue, Aug 19, 2008 at 2:44 PM, Ch Praveena <[EMAIL PROTECTED]> wrote: > Very happy to see your re

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Ch Praveena
Very happy to see your response :) I ve got the message as follows in my command line: [EMAIL PROTECTED] ~]# chown www-user /path/to/document/root chown: `www-user': invalid user [EMAIL PROTECTED] ~]# chown www-data /path/to/document/root chown: `www-data': invalid user *NOTE: I ve not given the

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Evert Lammerts
Sorry, instead of www-user it should be www-data. So, try: >> chown www-data /path/to/document/root On Tue, Aug 19, 2008 at 2:35 PM, Evert Lammerts <[EMAIL PROTECTED]> wrote: >> 1. I have started linux from the ROOT user. > > It doesn't matter which user you've started apache with. The > permissio

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Evert Lammerts
> 1. I have started linux from the ROOT user. It doesn't matter which user you've started apache with. The permissions apache works with are by default set to 'www-user' (in apache2.conf), meaning that www-user needs to have access to your document root folder. Check which folder is your document

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Ch Praveena
Thank you Mr. Eric. But could you please let me know how to identify that and avoid it? 2008/8/19 Eric Covener <[EMAIL PROTECTED]> > On Tue, Aug 19, 2008 at 8:00 AM, Ch Praveena <[EMAIL PROTECTED]> wrote: > > Hi Mr. Eric Covener, > > > > I am sure that I am currently running from ROOT user com

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Ch Praveena
Hi all, Let me be clear about my points I ve done so far: 1. I have started linux from the ROOT user. 2. Configured setting a prefix path rather than default.Installed and configured successfully. 3. I could see the creation of folders like bin, conf, build, modules (13 folders) 4. I ve

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Ch Praveena
Hi Mr. Eric Covener, I am sure that I am currently running from ROOT user completely. But still I am getting this error. Please let me know if any other reason would be for this. Please let me know why SELINUX objects the apache to run? 2008/8/19 Eric Covener <[EMAIL PROTECTED]> > On Tue, A

Re: [EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Eric Covener
On Tue, Aug 19, 2008 at 7:48 AM, Ch Praveena <[EMAIL PROTECTED]> wrote: > Hi all, > > I ve installed httpd 2.0.63 server and I got 403 Forbidden error in > the web console and giving the error log as: > > [Tue Aug 19 17:13:32 2008] [error] [client 10.20.220.15] (13)Permission > denied: acce

[EMAIL PROTECTED] Forbidden error

2008-08-19 Thread Ch Praveena
Hi all, I ve installed httpd 2.0.63 server and I got 403 Forbidden error in the web console and giving the error log as: *[Tue Aug 19 17:13:32 2008] [error] [client 10.20.220.15] (13)Permission denied: access to / denied *I am running on my linux machine and I am very much sure that I ve

Re: [EMAIL PROTECTED] Forbidden error using mod_userdir.c

2007-11-16 Thread Joshua Slive
[Please keep your messages on the list.] On Nov 16, 2007 8:10 PM, fchan <[EMAIL PROTECTED]> wrote: > Hi Joshua, > I have rwxr-xr-x on /home and the user's directory. The symbolic link > to the nfs mount is rwxrwxrwx in the user's directory. > > Actually I copied these settings from my original ser

Re: [EMAIL PROTECTED] Forbidden error using mod_userdir.c

2007-11-16 Thread Joshua Slive
On Nov 16, 2007 6:22 PM, fchan <[EMAIL PROTECTED]> wrote: > > Here is an excerpt from my error_log from httpd: > [error] [client xxx.xxx.xxx.xxx] (13)Permission denied: access to > /~username/ denied > [error] [client xxx.xxx.xxx.xxx] Symbolic link not allowed or link > target not accessible: /hom

[EMAIL PROTECTED] Forbidden error using mod_userdir.c

2007-11-16 Thread fchan
Hello, I have interesting issue with mod_userdir.c to allow users to show their websites from their directories. I'm running RHL5 with httpd server 2.2.6 and SELinux is in permissive mode. These directories are symbolic links to NFS mount but I thought SymLinks would allow this. I have reboote

Re: [EMAIL PROTECTED] Forbidden error on .exe files in apache on RH 4.0

2007-08-23 Thread Jeff Peng
Original-Nachricht > Datum: Thu, 23 Aug 2007 11:35:30 -0700 > Von: "Ali, Saqib" <[EMAIL PROTECTED]> > An: users@httpd.apache.org > Betreff: [EMAIL PROTECTED] Forbidden error on .exe files in apache on RH 4.0 > Hello All, > > I just install

Re: [EMAIL PROTECTED] Forbidden error on .exe files in apache on RH 4.0

2007-08-23 Thread Ali, Saqib
Hi Joshua, Thank you very much :) That resolved the issue. Your posting are indeed very helpful. Saqib Ali On 8/23/07, Joshua Slive <[EMAIL PROTECTED]> wrote: > On 8/23/07, Ali, Saqib <[EMAIL PROTECTED]> wrote: > > but this is not a CGI file. > > Well, they are marked as such in your co

Re: [EMAIL PROTECTED] Forbidden error on .exe files in apache on RH 4.0

2007-08-23 Thread Joshua Slive
On 8/23/07, Ali, Saqib <[EMAIL PROTECTED]> wrote: > but this is not a CGI file. Well, they are marked as such in your config file. You likely have an AddHandler or AddType directive designating .exe files as cgi scripts. You'll need to get rid of that if you want them downloaded without proces

Re: [EMAIL PROTECTED] Forbidden error on .exe files in apache on RH 4.0

2007-08-23 Thread Ali, Saqib
but this is not a CGI file. On 8/23/07, Joshua Slive <[EMAIL PROTECTED]> wrote: > On 8/23/07, Ali, Saqib <[EMAIL PROTECTED]> wrote: > > Hello All, > > > > I just installed a RH 4.0 box with apache, and I am getting a > > "Forbidden" error when trying to d/l .EXE files. > > > > The log says: >

Re: [EMAIL PROTECTED] Forbidden error on .exe files in apache on RH 4.0

2007-08-23 Thread Joshua Slive
On 8/23/07, Ali, Saqib <[EMAIL PROTECTED]> wrote: > Hello All, > > I just installed a RH 4.0 box with apache, and I am getting a > "Forbidden" error when trying to d/l .EXE files. > > The log says: > Options ExecCGI is off in this directory: /path/path/file.exe In httpd.conf, you have an Options d

[EMAIL PROTECTED] Forbidden error on .exe files in apache on RH 4.0

2007-08-23 Thread Ali, Saqib
Hello All, I just installed a RH 4.0 box with apache, and I am getting a "Forbidden" error when trying to d/l .EXE files. The log says: Options ExecCGI is off in this directory: /path/path/file.exe Any thoughts? Saqib - The off