Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Sep 2007 23:28:23 +0200
From:      Mel <fbsd.questions@rachie.is-a-geek.net>
To:        freebsd-questions@freebsd.org
Subject:   Re: php5-5.2.3_1 / website behaves as if not enabled in httpd.conf [SOLVED]
Message-ID:  <200709122328.23872.fbsd.questions@rachie.is-a-geek.net>
In-Reply-To: <94136a2c0709121345j570a85b4jd52ab5159e0c9588@mail.gmail.com>
References:  <94136a2c0709121345j570a85b4jd52ab5159e0c9588@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wednesday 12 September 2007 22:45:29 Zbigniew Szalbot wrote:
> Hello,
>
> 2007/9/12, Zbigniew Szalbot <zszalbot@gmail.com>:
> > Hi there again,
> >
> > > > Actually, maybe my description should be corrected - that is when I
> > > > want to access a directory where index.php resides, apache will just
> > > > display this directory content. But when I click (not reload) the php
> > > > file, page is loaded correctly.
> > > >
> > > >> To try and come to the cause, take Indexes outof Options for a given
> > > >> directory/location. It should give a Forbidden at that time, reason
> > > >> will be in error log, the exact request should be in access log.
> > > >> Look for subtle differences if there are any - between the forbidden
> > > >> and the reloaded page (like ending slash or what not).
> > > >
> > > > I did it for one directory where it was defined and I did get 403
> > > > error. So reading httpd-error.log:
> > > > Directory index forbidden by rule: /usr/local/www/data/test/
> > > >
> > > > access-log:
> > > > "GET / HTTP/1.1" 403 302
> > > >
> > > > Maybe I will have to say reconcile with php 4.4.7 after all.
> > >
> > > maybe this was already mentioned, but what do you have DirectoryIndex
> > > set to?
> > >
> > > it should look something like:
> > >
> > > DirectoryIndex index.html index.php
> >
> > All is fine here. I do have index.php listed. The file httpd.conf came
> > almost without any modification (apart from usual php4 replaced php5
> > references during update).
>
> I was given advice on php list to comment out everything in mod_dir.c
> starting from
> <IfModule mod_dir.c>
>     <IfModule mod_php3.c>
>         <IfModule mod_php4.c>
>
> and then enter just this:
>
> <IfModule mod_dir.c>
>    DirectoryIndex index.php index.php3 index.html index.htm
> </IfModule>
>
> Everything now works very well! Thank you all for your patience with me!

Duh! I hafta remember that. Apparently --enable-versioning doesn't expose "I 
am mod_php3.c", so Apache bails out on the IfModule mod_php3.c and doesn't 
even see what's in there.


-- 
Mel



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200709122328.23872.fbsd.questions>