Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Oct 2002 17:55:13 +0200
From:      Lefteris Tsintjelis <lefty@asda.gr>
To:        DaleCo Help Desk <daleco@daleco.biz>
Cc:        John Bleichert <syborg@stny.rr.com>, Rotaru Razvan <roti_343@yahoo.com>, freebsd-questions@FreeBSD.ORG
Subject:   Re: regarding php installation
Message-ID:  <3DC15261.896280DF@asda.gr>
References:  <Pine.LNX.4.44.0210310944190.25948-100000@janeway.vonbek.dhs.org> <01ba01c280ef$2cdee760$fa00a8c0@DaleCoportable>

next in thread | previous in thread | raw e-mail | index | archive | help
DaleCo Help Desk wrote:
> 
> From: "John Bleichert" <syborg@stny.rr.com>
> To: "Rotaru Razvan" <roti_343@yahoo.com>
> Cc: <freebsd-questions@FreeBSD.ORG>
> Sent: Thursday, October 31, 2002 8:45 AM
> Subject: Re: regarding php installation
> 
> > On Thu, 31 Oct 2002, Rotaru Razvan wrote:
> >
> > > Date: Thu, 31 Oct 2002 06:41:45 -0800 (PST)
> > > From: Rotaru Razvan <roti_343@yahoo.com>
> > > To: freebsd-questions@FreeBSD.ORG
> > > Subject: regarding php installation
> > >
> > > Hello,
> > >
> > > Well I have apache2+mod_php4 installed. Still my apache server
> does not
> > > execute php scripts (it just sends them as plain text). After
> > > installing mod_php4 i didn't modify anything in httpd.conf.
> > > Should I? As i can tell the module is loaded. Why is the server
> not
> > > running the scripts?
> > >
> > > Regards,
> > > Razvan
> > >
> >
> > Assuming it's the same setup as 1.2.x you need to tell the server
> what
> > type of files to interpret as php. See the comments in the file,
> search it
> > for 'php'.
> >
> > JB
> >
> > #  John Bleichert
> 
> That's pretty much it.  Load_Module, Add_Module,
> and AddType application should get it.  Do your scripts have the
> .php extension?

Try adding the following in your httpd.conf:

<IfModule mod_php4.c>    
        AddType application/x-httpd-php .php .php4 .php3 .phtml
        AddType application/x-httpd-php-source .phps
</IfModule>


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3DC15261.896280DF>