I'm working with a new Win2K3 Server running IIS 6 w SSI enabled.
I have an index.shtml page that is calling:
Code:
#include virtual="personnel/vdaily.shtml"
The personnel folder is a virtual directory on a different server with read & execute permissions given to everyone in the domain (both servers are part of the same domain as well). On the webserver, the page works fine. However, on any other machine (which are also part of the domain), I get 'Error processing SSI file'.
However, I can browse the personnel folder and type in :
http://webserver/personnel/vdaily.shtml
and see the page just fine from any station.
I have also tried using :
Code:
#include file="http://webserver/personnel/vdaily.shtml"
with the same results. Mime types are setup in IIS6 to allow shtml files. This code works fine if I physically copy over the personnel directory to the webserver, so my thinking is that there is some permissions problem accessing the files over the virtual directory. But if it were permissions, why can I call the file directly? Website is set to use integrated windows authority, but I have tried it using anonymous access and baic authentication as well.
Any help on this would be appreciated.