[PHP] Page not found problem

2002-07-10 Thread Chen
I use php3 with IIS 5.0. When user typed a no existing .html or php3 page, they will get a No input file specified. page. How can I point this to a HTTP Error 400 page? Anything can be set up in the php.ini file or in IIS configuration? Thanks for any help!! -- PHP General Mailing List

Re: [PHP] Page not found problem

2002-07-10 Thread Chris Hewitt
Chen, If the webserver cannot file a file then this is a webserver problem not php. You need to look at your IIS configuration/documentation. Sorry I can't help further, but I don't use IIS. HTH Chris Chen wrote: I use php3 with IIS 5.0. When user typed a no existing .html or php3 page,

Re: [PHP] Page not found problem

2002-07-10 Thread Chen
Chris, Thank you for the response. I think this is the php setting. If the user enter a page name 12345.pdf and there is no such page, the browse will show the page cannot be found and the HTTP 404 error. But if user enter 12345.php3 or 12345.html(IIS mapping these two kind of files to

RE: [PHP] Page not found problem

2002-07-10 Thread Lazor, Ed
Is it doing this for all php based files? Have you tried a php file that only has basic commands? Something like this: ?php echo Hello world!; ? -Original Message- only display No input file specified. message.