|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-07-31 18:36 UTC] tony2001@php.net
[2006-08-01 12:46 UTC] djh146 at psu dot edu
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 14:00:01 2025 UTC |
Description: ------------ I am running PHP as a CGI under IIS 5. There are multiple web instances running on the server. Two are PHP applications that use include files (i.e. includes/header.php, includes/footer.php, etc.) that are included on pages as <? include('includes/header.php') ?>. Both applications use the same code structure. When running these applications, I am seeing the include files from one website instance appearing as the includes on another instance. It appears to be only in one direction. I encountered a similar problem when objects of the same name were being treated ambigiously. This was discovered to be a problem occuring using the ISAPI module in IIS and shared process space, which is why I moved to the CGI configuration. Could this be a similar problem? The two sites are running under the same IP address with different headers, and the source for each are located in seperate folders on the same drive. Expected result: ---------------- The sites should (and have) run without interference from each other. Actual result: -------------- Site A's include header and footer will appear in Site B's output.