[PHP] problem with using include to a URL

2004-09-01 Thread Tim Wolgemuth
We are currently experiencing issues with HTTP streams within PHP scripts. The following will present sample code that produces the error, error messages, and system information. Code that produces errors: ?php fopen(http://somewebhost.domain.gTLD/index.html;, r); $httpfile =

Re: [PHP] problem with using include to a URL

2004-09-01 Thread Tim Wolgemuth
. If I am on that box I can use a text browser to it see the file that I am trying to include. Any other help? Tim John Holmes wrote: From: Tim Wolgemuth [EMAIL PROTECTED] Code that produces errors: ?php fopen(http://somewebhost.domain.gTLD/index.html;, r); $httpfile = file_get_contents(http

Re: [PHP] problem with using include to a URL

2004-09-01 Thread Tim Wolgemuth
This is the way that the customer waits to do it. Here is the sample code that is being included: ? print this is a test2BR; ? Tim John Holmes wrote: From: Tim Wolgemuth [EMAIL PROTECTED] We do have allow_url_fopen set to be on. I can not find any docs. on allow_burl_fopen. Was that a typo

Re: [PHP] problem with using include to a URL

2004-09-01 Thread Tim Wolgemuth
When I run it from the command line it works. But if I run it through Apache it does not work. Tim John Holmes wrote: From: Tim Wolgemuth [EMAIL PROTECTED] This is the way that the customer waits to do it. Here is the sample code that is being included: ? print this is a test2BR; ? Well