Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 17431 invoked by uid 500); 7 Aug 2002 15:47:29 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 17420 invoked from network); 7 Aug 2002 15:47:28 -0000 Received: from dcimail.donaldson.com (162.107.240.195) by daedalus.apache.org with SMTP; 7 Aug 2002 15:47:28 -0000 Received: by dcimail.donaldson.com with Internet Mail Service (5.5.2653.19) id ; Wed, 7 Aug 2002 10:50:29 -0500 Message-ID: <11864A3328DDD5119DE70002A540D64A8DD51D@ntblm16.dci.com> From: "Nelson, Robert D." To: "'users@httpd.apache.org'" Subject: RE: File parsing problems Date: Wed, 7 Aug 2002 10:41:44 -0500 X-Mailer: Internet Mail Service (5.5.2653.19) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Matthew: Without knowing more specifics I would say that you have two issues here. First, the web server is serving up files that are not called exactly by the URL. Generally this is something that is done by mod_speling. This mod will serve up a file that doesn't exactly match the URL but comes the closest. Many people find this a plus since it takes care of some accidental 404's (especially those annoying case-sensitive problems). If you turn off this mod it should take care of that. Also look for a... CheckSpelling On ...line somewhere. The second problem is that the server is parsing all files. Try looking around for the... AddType application/x-httpd-php .php ...line. Make sure that you only have the ".php" extension listed. You may also want to check your mime.types file. You should also look for... AddHandler server-parsed .shtml Make sure that you only have extensions listed that you want the server to parse. Let me know if this is helpful. ~ Robert -----Original Message----- From: Matthew Daubenspeck [mailto:matt@oddprocess.org] Sent: Tuesday, August 06, 2002 8:28 AM To: users@httpd.apache.org Subject: File parsing problems For some reason, apache is parsing any files automatically no matter what their extension. Meaning, if I try http://domain/foo or http://domain/foo.php, both work and neither give an error, and the file is actually foo.php It does the same with .htm or .html files as well. It is no real big deal, more of a nuisance. Any ideas how I can change this? --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org