Hi
Probably really simple but for the life of me cant remember how to fix this
In breif IIS6 Runing Php ... need to include files from the local host which is fine or a remote unix box
Code is
<?php include 'test2.php';?>
<?php include '\server1\tmp\test3.htm';?>
php ini file is
; Windows: "\path1;\path2"
include_path = ".;c:\php\includes"
What have I missed its proper bugging me is this now the error I get is
Warning: include() [function.include]: Failed opening '' for inclusion (include_path='.;C:\php5\pear') in C:\Inetpub\wwwroot\home_page\index5.php on line 319
Oh and \server1\tmp\test3.htm will open up in any browser and display !
Im guessing its the php.ini file I need to change where the include statement points to or add to the list where it does point to ...
is this correct ?
".;c:\php\includes:\server1\tmp"