All was going well until when I moved my old LAMP include folder to where I usually put it, just outside the webroot, and now all my includes aren't working.
php.ini - verified it is set by a echo ini_get('include_path'); & phpinfo();
Code: Select all
include_path = ".;c:\inetpub\inc"Code: Select all
<?php
echo "Hello!";
?>Code: Select all
<?php
include('test.php');
?>In Apache this would include the test.php from "c:\inetpub\inc" and echo "Hello!" on the page, under IIS it does not. Any ideas? I've spent a good portion of my day Googling this issue.
Everything else is working better than I was expecting.