php-general | 2001122
Date: 12/31/01
- Next message: Bogdan Stancescu: "Re: [PHP] Apache Error 500"
- Previous message: Bogdan Stancescu: "Re: [PHP] Testing: DON'T Ignore This Message"
- Next in thread: Bogdan Stancescu: "Re: [PHP] Apache Error 500"
- Reply: Bogdan Stancescu: "Re: [PHP] Apache Error 500"
- Reply: Andrew Hill: "RE: [PHP] Apache Error 500"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi,
I am using the list comment to decompose urls for navigation.
This works fine. Except on one particular server and I don't know
why..
if my url is like : test.php everything is ok, but when I use
test.php/1, I get the Apache Internal 500 Error.
I believe that apache is checking if the 1 in the dir test.php
exists, which of course is not the case since test.php is a file.
I am only allowed to modify a htaccess file...
Does anyone have a suggestion how to fix this?
Thanks,
Patrick
PS:
my file test.php looks like
list($dummy1,$dummy2,$pid1,$pid2) = split("/",$PHP_SELF);
switch( $pid1 ) {
case 1:
include "file1.html";
break;
case 2:
include "file2.html";
break;
default:
include "default.html";
break;
}
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Bogdan Stancescu: "Re: [PHP] Apache Error 500"
- Previous message: Bogdan Stancescu: "Re: [PHP] Testing: DON'T Ignore This Message"
- Next in thread: Bogdan Stancescu: "Re: [PHP] Apache Error 500"
- Reply: Bogdan Stancescu: "Re: [PHP] Apache Error 500"
- Reply: Andrew Hill: "RE: [PHP] Apache Error 500"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

