JeffSChilders
Programmer
First off there is no copy issue with the scraping of this page. The site I am working on is a subdomain.
Using the following code:
error: failed to open stream: Bad file descriptor
If I replace with all is well and the page is displayed. I presume that it has something to do with how it is requesting the page since a web browser will display the page.
Considering these limitations of the tools at hand, no curl and older php. Is there a way I can get this page? I am not tied to file_get_contents() method. Any working solution would be greatly appreciated.
Using the following code:
Code:
...
$url = '[URL unfurl="true"]http://www.outlands.org/Portals/0/event_cal.php';[/URL]
$fp = file_get_contents($url);
echo $fp;
...
If I replace with all is well and the page is displayed. I presume that it has something to do with how it is requesting the page since a web browser will display the page.
Considering these limitations of the tools at hand, no curl and older php. Is there a way I can get this page? I am not tied to file_get_contents() method. Any working solution would be greatly appreciated.