You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Ian Murphy <ia...@yahoo.fr> on 2002/12/30 16:22:12 UTC

[users@httpd] Config problem with apache 1.2, php and SSI

I've been setting up Apache 1.3 with php 4 on an w2k machine and
everything worked well the first time until I wanted to use some php
scripts sitting on another drive, which resulted in an 'internal server
error'. I have traced my way backwards and have found that it seems to
come down to a config problem with the <directory> directive. 

I created a script
  d:/program files/apache group/apache/htdocs/mail/test.php, 

with phpinfo() in it. I also created an alias to the same directory and
added a directive

  Alias /test "D:/Program Files/Apache Group/Apache/htdocs/mail"
  <Directory "D:/Program Files/Apache Group/Apache/htdocs/mail">
      Options Indexes FollowSymLinks MultiViews Includes
      AllowOverride None
      Order allow,deny
      Allow from all
  </Directory>

it works fine using the url
  http://myserver/mail/test.php

but fails with internal server error when I use 
  http://myserver/test/test.php

the only difference being the fact that its aliased. The 'Options
includes' should tell apache to allow ssi's, no?

What have I missed?

Regards

Ian Murphy


___________________________________________________
Yahoo! Postales
Felicita las Navidades con las postales más
divertidas desde http://postales.yahoo.es

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Config problem with apache 1.2, php and SSI

Posted by DaMouse <da...@ntlworld.com>.
try this in your conf:

Alias /test "D:/Program Files/Apache Group/Apache/htdocs/mail/"
Alias /test/ "D:/Program Files/Apache Group/Apache/htdocs/mail/"


----- Original Message -----
From: Chris Taylor <ch...@x-bb.org>
To: <us...@httpd.apache.org>
Sent: Monday, December 30, 2002 4:30 PM
Subject: Re: [users@httpd] Config problem with apache 1.2, php and SSI


> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Well I always put the <Directory> block before the Alias directive
> personally, that might work :)
>
> HTH,
>
> Chris Taylor - chris@x-bb.org - The guy with the PS2 WebServer -
> http://www.x-bb.org/chris.asc
>
> - ----- Original Message -----
> From: "Ian Murphy" <ia...@yahoo.fr>
> To: <us...@httpd.apache.org>
> Sent: Monday, December 30, 2002 3:22 PM
> Subject: [users@httpd] Config problem with apache 1.2, php and SSI
>
>
> > I've been setting up Apache 1.3 with php 4 on an w2k machine and
> > everything worked well the first time until I wanted to use some
> > php scripts sitting on another drive, which resulted in an
> > 'internal server error'. I have traced my way backwards and have
> > found that it seems to come down to a config problem with the
> > <directory> directive.
> >
> > I created a script
> >   d:/program files/apache group/apache/htdocs/mail/test.php,
> >
> > with phpinfo() in it. I also created an alias to the same directory
> > and added a directive
> >
> >   Alias /test "D:/Program Files/Apache Group/Apache/htdocs/mail"
> >   <Directory "D:/Program Files/Apache Group/Apache/htdocs/mail">
> >       Options Indexes FollowSymLinks MultiViews Includes
> >       AllowOverride None
> >       Order allow,deny
> >       Allow from all
> >   </Directory>
> >
> > it works fine using the url
> >   http://myserver/mail/test.php
> >
> > but fails with internal server error when I use
> >   http://myserver/test/test.php
> >
> > the only difference being the fact that its aliased. The 'Options
> > includes' should tell apache to allow ssi's, no?
> >
> > What have I missed?
> >
> > Regards
> >
> > Ian Murphy
> >
> >
> > ___________________________________________________
> > Yahoo! Postales
> > Felicita las Navidades con las postales más
> > divertidas desde http://postales.yahoo.es
> >
> > --------------------------------------------------------------------
> > - The official User-To-User support forum of the Apache HTTP Server
> > Project. See <URL:http://httpd.apache.org/userslist.html> for more
> > info.
> > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> > For additional commands, e-mail: users-help@httpd.apache.org
>
> -----BEGIN PGP SIGNATURE-----
> Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com>
>
> iQA/AwUBPhB0wCqf8lmE2RZkEQKOewCeKzxlTEhm7mueyyermSUPIz3crhQAnj18
> 0p/wifI1c4Xzyz0d0JwPgOEO
> =E08v
> -----END PGP SIGNATURE-----
>
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Config problem with apache 1.2, php and SSI

Posted by Chris Taylor <ch...@x-bb.org>.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Well I always put the <Directory> block before the Alias directive
personally, that might work :)

HTH,

Chris Taylor - chris@x-bb.org - The guy with the PS2 WebServer -
http://www.x-bb.org/chris.asc

- ----- Original Message -----
From: "Ian Murphy" <ia...@yahoo.fr>
To: <us...@httpd.apache.org>
Sent: Monday, December 30, 2002 3:22 PM
Subject: [users@httpd] Config problem with apache 1.2, php and SSI


> I've been setting up Apache 1.3 with php 4 on an w2k machine and
> everything worked well the first time until I wanted to use some
> php scripts sitting on another drive, which resulted in an
> 'internal server error'. I have traced my way backwards and have
> found that it seems to come down to a config problem with the
> <directory> directive.
>
> I created a script
>   d:/program files/apache group/apache/htdocs/mail/test.php,
>
> with phpinfo() in it. I also created an alias to the same directory
> and added a directive
>
>   Alias /test "D:/Program Files/Apache Group/Apache/htdocs/mail"
>   <Directory "D:/Program Files/Apache Group/Apache/htdocs/mail">
>       Options Indexes FollowSymLinks MultiViews Includes
>       AllowOverride None
>       Order allow,deny
>       Allow from all
>   </Directory>
>
> it works fine using the url
>   http://myserver/mail/test.php
>
> but fails with internal server error when I use
>   http://myserver/test/test.php
>
> the only difference being the fact that its aliased. The 'Options
> includes' should tell apache to allow ssi's, no?
>
> What have I missed?
>
> Regards
>
> Ian Murphy
>
>
> ___________________________________________________
> Yahoo! Postales
> Felicita las Navidades con las postales más
> divertidas desde http://postales.yahoo.es
>
> --------------------------------------------------------------------
> - The official User-To-User support forum of the Apache HTTP Server
> Project. See <URL:http://httpd.apache.org/userslist.html> for more
> info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org

-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com>

iQA/AwUBPhB0wCqf8lmE2RZkEQKOewCeKzxlTEhm7mueyyermSUPIz3crhQAnj18
0p/wifI1c4Xzyz0d0JwPgOEO
=E08v
-----END PGP SIGNATURE-----



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org