Jump to content

PHP Include - external files


crashpolo

Recommended Posts

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 !

Link to comment
https://forums.phpfreaks.com/topic/79254-php-include-external-files/
Share on other sites

Where is \\server1\tmp ? Is it a networked filesystem? If so then apply a drive letter to it on your Windows machine and use that ( Z:/tmp ). Also by including a file over URL stream  you're going to get the PHP output, not the PHP itself... so your fopen is not going to work, unless of course all you want is the html/result it gives you.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.