Hey all,
On my webhost's linux machine running php and apache, I can use .htaccess files to configure my php_include directory. For example:
php_value include_path ".:/www/public_html/includes"
If I put the above code into my .htaccess file, apache will look in that directory to try to find 'header.php', or whatever else I include.
This is nice, but I cannot reproduce the same functionality on my Windows XP box running php and apache. If i try to use the same code, nothing happens. If I try to use the code that PHP.org calls 'appropriate', it also fails. Example:
php_value include_path ".;D:\www\public_html\includes"
That does NOT work, although from reading the documentation it looks as though it should. Any advice? Does anyone have a clue? Thanks a bunch!