Re: [EMAIL PROTECTED] alias with subfolders

2008-07-30 Thread Andre Hübner
Hi, For this reason, when two or more of these directives apply to the same sub-path, you must list the most specific path first in order for all the directives to have an effect. For example, the following configuration will work as expected: Alias /foo/bar /baz Alias /foo /gaq arrg,

Re: [EMAIL PROTECTED] alias with subfolders

2008-07-30 Thread Davide Bianchi
Andre Hübner wrote: try to use Alias /folder1/folder2 /local/path/local/path in my httpd.conf. All i get is an 404 error. If i change to: Alias /folder1 /local/path/local/path /folder1 is correct maped to /local/path/local/path and requests are ok I did not found any hint that aliasing with s

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread thomas Armstrong
I think that this has to do with these lines inserted at the top of the VirtualHost configuration: AddHandler fcgid-script .php .php5 SuexecUserGroup myuser psacln DocumentRoot "/var/www/httpdocs/web" ErrorLog /etc/httpd/logs/dev_error_log Options Ex

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread Joshua Slive
On Fri, Feb 22, 2008 at 3:18 PM, Nick Kew <[EMAIL PROTECTED]> wrote: > On Fri, 22 Feb 2008 21:07:01 +0100 > > "thomas Armstrong" <[EMAIL PROTECTED]> wrote: > > > > > There's an entry for that error message on the wiki. Have you > > > read it? > > > > I was reading: > > http://wiki.apache.org/

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread Joshua Slive
On Fri, Feb 22, 2008 at 3:16 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote: > > This seems to be a problem with your FastCGI configuration. (FastCGI > > is also probably at fault for returning a 403 without logging > > something interesting.) > > > > You haven't said which FastCGI module y

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread Nick Kew
On Fri, 22 Feb 2008 21:07:01 +0100 "thomas Armstrong" <[EMAIL PROTECTED]> wrote: > > There's an entry for that error message on the wiki. Have you > > read it? > > I was reading: > http://wiki.apache.org/httpd/CommonHTTPStatusCodes > > But no more explicit info about "403 Forbidden" messages.

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread thomas Armstrong
> This seems to be a problem with your FastCGI configuration. (FastCGI > is also probably at fault for returning a 403 without logging > something interesting.) > > You haven't said which FastCGI module you are using, and I don't know > much about FastCGI in the first place, so I can't help fu

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread thomas Armstrong
> There's an entry for that error message on the wiki. Have you read it? I was reading: http://wiki.apache.org/httpd/CommonHTTPStatusCodes But no more explicit info about "403 Forbidden" messages. - The official User-To-User s

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread Nick Kew
On Fri, 22 Feb 2008 20:37:07 +0100 "thomas Armstrong" <[EMAIL PROTECTED]> wrote: > > Look again in the apache error logs. There really should be > > something there. Most likely it is this: > > http://wiki.apache.org/httpd/13PermissionDenied > > I checked error logs again and didn't found any m

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread Joshua Slive
On Fri, Feb 22, 2008 at 2:37 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote: > > Look again in the apache error logs. There really should be something > > there. Most likely it is this: > > http://wiki.apache.org/httpd/13PermissionDenied > > I checked error logs again and didn't found any mes

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread thomas Armstrong
I also chmoded all the files to 777 and didn't work. On Fri, Feb 22, 2008 at 8:37 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote: > > Look again in the apache error logs. There really should be something > > there. Most likely it is this: > > http://wiki.apache.org/httpd/13PermissionDenied >

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread thomas Armstrong
> Look again in the apache error logs. There really should be something > there. Most likely it is this: > http://wiki.apache.org/httpd/13PermissionDenied I checked error logs again and didn't found any message. If I add "ExecCGI" I get a "500 Internal Error" message, with this line on the err

Re: [EMAIL PROTECTED] Alias returns a "403 Forbidden" error only with PHP files

2008-02-22 Thread Joshua Slive
On Fri, Feb 22, 2008 at 2:26 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote: > Hi. > > Using Apache2 on Linux, I get a "403 Forbidden" error only when I > access PHP files: > http://www.domain.com/foo/hello.php > but it works fine with HTML files > http://www.domain.com/foo/hello.html > > In

Re: [EMAIL PROTECTED] Alias won't work within my httpd.conf

2007-10-17 Thread Krist van Besien
On 10/17/07, thomas Armstrong <[EMAIL PROTECTED]> wrote: ... > But if I access: > http://newweb.myproject.com/events/ > I get a 404 error. What error messages do you see in your error log? Krist -- [EMAIL PROTECTED] [EMAIL PROTECTED] Bremgarten b. Bern, Switzerland -- A: It reverses the norma

Re: [EMAIL PROTECTED] Alias versus Symbolic Links

2007-07-26 Thread Eric Covener
On 7/26/07, Crash Dummy <[EMAIL PROTECTED]> wrote: > My question is, What the hell is a symbolic link? I have Apache installed on > Windows 2000, and use aliases to map stuff to the DocumentRoot. Are "symbolic > links" a purely *nix thing? Can I just ignore them and their related > directives > (

RE: [EMAIL PROTECTED] Alias versus Symbolic Links

2007-07-26 Thread Lindsay Hausner
-Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of "Crash" Dummy Sent: Thursday, July 26, 2007 4:52 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Alias versus Symbolic Links The Apache documentation says, "There are frequently circumstances where it is necess

Re: [EMAIL PROTECTED] Alias for Bugzilla

2007-05-11 Thread Frank Arensmeier
[snip] Alias /bugzilla /var//bugzilla/htdocs [/snip] ... maybe you misspelled the path? Shouldn't it be "Alias /bugzilla / var/www/bugzilla/htdocs"? //frank 11 maj 2007 kl. 19.21 skrev j k: Hi, I'm trying to set up bugzilla on our server so that it comes up as http://servername/bugzil

Re: [EMAIL PROTECTED] Alias for Bugzilla

2007-05-11 Thread j k
On 5/11/07, Joshua Slive <[EMAIL PROTECTED]> wrote: On 5/11/07, j k <[EMAIL PROTECTED]> wrote: > but http://servername/bugzilla doesn't work, gives a 404 everytime. What -- exactly -- does the error_log say? Joshua. I think this is the entry [Fri May 11 17:11:32 2007] [error] [client myip

Re: [EMAIL PROTECTED] Alias for Bugzilla

2007-05-11 Thread Joshua Slive
On 5/11/07, j k <[EMAIL PROTECTED]> wrote: but http://servername/bugzilla doesn't work, gives a 404 everytime. What -- exactly -- does the error_log say? Joshua. - The official User-To-User support forum of the Apache HTTP S

Re: [EMAIL PROTECTED] Alias directive not being honored

2007-04-26 Thread Roberto Tortolero
Hi I have problem with proxys on apache, i have two servers and i want to use one as a firewall an the other as web page server. i've all ready doned, but, the thing is that apache always returned the same carpet all the time, no matter what address i put, always redirect me to the first virtual

Re: [EMAIL PROTECTED] Alias directive not being honored

2007-04-26 Thread Victor Trac
This may be a long shot, but have you tried getting rid of the trailing slashes? e.g.: Alias /news /path/to/codebase/newsletters --Victor On 4/26/07, Nikolai Lusan <[EMAIL PROTECTED]> wrote: Greetings, Not sure if anyone has seen anything similar to this one ... I have a number of Alias dir

Re: [EMAIL PROTECTED] Alias Configuration :: Help Needed Please

2007-03-14 Thread Matus UHLAR - fantomas
> Dan Wareham wrote: > >I am trying to set up the follow two directory mappings > >Within tags of the httpd.conf file I have placed > >the following :: > > > >Alias /Directory1 "H:\ApplicationFiles\Directory1\" > > > ... > >Alias /Directory1 "H:\ApplicationFiles\Directory2\" > > On 13.03.07 11:4

Re: [EMAIL PROTECTED] Alias Configuration :: Help Needed Please

2007-03-13 Thread Tom Donovan
Dan Wareham wrote: I am trying to set up the follow two directory mappings Within tags of the httpd.conf file I have placed the following :: Alias /Directory1 "H:\ApplicationFiles\Directory1\" ... Alias /Directory1 "H:\ApplicationFiles\Directory2\" ... In addition to checking that you

Re: [EMAIL PROTECTED] Alias Configuration :: Help Needed Please

2007-03-13 Thread Jesse Ross
Hi Dan, Are you definitely loading the alias_module? Also, when you restart apache, is it complaining about anything in the error log? Best, Jesse Ross Dan Wareham wrote: Hello, I wonder if someone might please help me with the follow problem?? I am trying to set up the follow two direct

RE: [EMAIL PROTECTED] Alias - html problem

2006-10-08 Thread Boyle Owen
> -Original Message- > From: Gunivortus Goos [mailto:[EMAIL PROTECTED] > Sent: Sunday, October 08, 2006 10:15 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Alias - html problem > > Hello , > > In my httpd.conf is configured: > > Alias /mp3am/ "E:/mp3/" > >AllowOv

RE: [EMAIL PROTECTED] alias

2006-10-08 Thread Boyle Owen
> -Original Message- > From: Gunivortus Goos [mailto:[EMAIL PROTECTED] > Sent: Saturday, October 07, 2006 4:16 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] alias > > Hello, > > in my httpd.conf is: > > Alias /mp3down/ "H:/mp3/" > > > However, I needed to spread the

Re: [EMAIL PROTECTED] alias directive

2006-09-09 Thread Joshua Slive
On 9/9/06, chipmonkeys <[EMAIL PROTECTED]> wrote: Hello, I've downloaded and installed the latest version of Apache on my PC, so I can learn to use PHP and MySQL. I've entered http://localhost/ in my browser and get the "It works". In testing the alias directive I've included in the config fi

Re: [EMAIL PROTECTED] Alias/RewriteRule/ProxyPass/SSL - how do they coexist?

2006-08-30 Thread Devraj Mukherjee
UseCanonicalNames Off On 8/26/06, Chris Dagnon <[EMAIL PROTECTED]> wrote: Here is hopefully a succinct re-statement of my current problem: I had a website setup and it was working fine using VirtualHost ProxyPass to forward to another port and a server-level Alias+Directory pair to forward all

Re: [EMAIL PROTECTED] Alias and Rewrite directives

2006-07-24 Thread Boysenberry Payne
I think you might need to include php files that are "out of the kitchen" so to speak via a php file that is in the www area Thanks, Boysenberry boysenberrys.com | habitatlife.com | selfgnosis.com On Jul 24, 2006, at 10:14 AM, Pieter Vanmeerbeek wrote: Hi, I'm trying to redirect a spec

RE: [EMAIL PROTECTED] Alias or ScriptAlias ?

2006-07-19 Thread Boyle Owen
> -Original Message- > From: Matus UHLAR - fantomas [mailto:[EMAIL PROTECTED] > > > You can also look at AddHandler > > (http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addhandler) to > > extend CGI to all .cgi files. > > I wonder why didn't you start with this ;) And I wonder why you

Re: [EMAIL PROTECTED] Alias or ScriptAlias ?

2006-07-18 Thread Matus UHLAR - fantomas
On 18.07.06 11:48, Boyle Owen wrote: > It is not a great idea to mix static and CGI content in the same > directory since a simple misconfiguration can put your code on the web. I don't think this is a problem. or, better said, such problem can appear anywhere (e.g. just rename .php to something e

Re: [EMAIL PROTECTED] Alias or ScriptAlias ?

2006-07-18 Thread Mauro
Thank You It works fine!!! - Original Message - From: "Boyle Owen" <[EMAIL PROTECTED]> To: Sent: Tuesday, July 18, 2006 11:48 AM Subject: RE: [EMAIL PROTECTED] Alias or ScriptAlias ? Something like this might work: Options ExecCGI SetHandler cgi-script

RE: [EMAIL PROTECTED] Alias or ScriptAlias ?

2006-07-18 Thread Boyle Owen
> -Original Message- > From: Mauro [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 18, 2006 11:28 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Alias or ScriptAlias ? > > Hi all, > I have my server with its document root running. > Now I would like to add another directory

RE: [EMAIL PROTECTED] Alias Directive on Apache 2.2

2006-07-13 Thread Niamh.OReilly
Hi Gael   You can specify a 'do not proxy' using the following   ProxyPass /oto/images !   Then the alias will be used instead.   Check out http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass for more info.   Regards   Niamh   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sen

Re: [EMAIL PROTECTED] Alias and directory path

2006-01-30 Thread Joshua Slive
On 1/30/06, Brian E Miller <[EMAIL PROTECTED]> wrote: > > I want to call squirrelmail from the browser > http://www.hingedmind.com/mindmail > > The actual path is /srv/www/htdocs/hingedmind/squirrelmail-1.4.5/src or > http://www.hingedmind.com/squirrelmail-1.4.5/src/index.php > > The document root

RE: [EMAIL PROTECTED] alias domains

2006-01-27 Thread Boyle Owen
> -Original Message- > From: shaun [mailto:[EMAIL PROTECTED] > Sent: Freitag, 27. Januar 2006 10:35 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] alias domains > > Hi > > > > I need to set up a server that will allow me to use > www.domain.co.za

Re: [EMAIL PROTECTED] Alias And Redirection question

2005-09-30 Thread Joshua Slive
On 9/29/05, Simon Taylor <[EMAIL PROTECTED]> wrote: > > I am experiencing odd behaviour on our prod box when what i want to happen > works on our dev box. Sorry, but this problem description is too difficult to parse for me (and apparently others, given the general lack of response). Just for

Re: [EMAIL PROTECTED] Alias Directive Issue (403 Forbidden Error)

2005-09-26 Thread Jessica Rasku
Trystan Hughes wrote: Hi all, I want to create an Alias in the apache httpd.conf file and have done so like this Alias /test_alias/ "C:\Documents and Settings\Trystan\My Documents\" So, what this should effective do is to print the directory contents of 'My Documents' directory when I enter

Re: [EMAIL PROTECTED] Alias Directive Issue (403 Forbidden Error)

2005-09-26 Thread Joshua Slive
On 9/26/05, Trystan Hughes <[EMAIL PROTECTED]> wrote: > Hi all, > > I want to create an Alias in the apache httpd.conf file and have done > so like this > > > Alias /test_alias/ "C:\Documents and Settings\Trystan\My Documents\" > Two notes already: 1. Don't put something in an block unless you