A Bit more info...
I am changing the include path in .htaccess
file and is currently:
php_value include_path ".;..\include"
I turned on PHP warnings and I get:
"Warning: Failed opening '/home/chrisbetts/public_html/blank.php' for inclusion (include_path='.;..\include') in Unknown on line 0"
i.e it is failing to load the file it is loading at present (blank.php) ?????
I am (up to this point sucessfully) mimiking the layout of my clients virtual servers running on different Linux boxes, So I can test complete installations on a PC before upload. To do this I am using Apache Virtual Servers each one having its own DocumentRoot pointing to the public_html subdirectory.
i.e. in httpd_conf
<VirtualHost 127.0.0.2>
DocumentRoot /home/chrisbetts/public_html
<VirtualHost 127.0.0.3>
DocumentRoot /home/anothervs/public_html
etc...
What I am trying to do is to move certain sensitive data to a safe area out of the public_html subtree, which is possibly accessable from any tree.
So I now have dirs:
/home/chrisbetts/include
/home/chrisbetts/public_html
safe_mode is off
I think that this is something to do with not being able to escape from the DocumentRoot ... but not sure.
As I say it works on the linux Virtual servers ... But I am missing something on the Windowz version!
I should probably move this request over to the installation section now!
Any Ideas would be a great help.
Chris