Hello,
I have some PHP pages that use include statements. On Redhat Linux 6.2, and Apache, it works fine. On IIS, it does not.
Example of the include.
include("http://www.somedomain.com/php/dbaccess.php");
www.somedomain.com is a domain on a separate web server from the PHP files that contain the 'include'
On Linux, it works fine.
On IIS, I get this error.....
Warning: Failed opening 'http://www.somedomain.com/php/dbaccess.php' for inclusion (include_path='') in E:\web\support\php\dbaccess.php on line 10
Is there anything obvious that I am missing about IIS and how it uses PHP includes?