I just upgraded from apache_1.3.12/php_4.0.1pl2 to apache_1.3.14/php_4.0.4pl1.
The following worked fine prior to the upgrade:
<?php
$url = "http://www.amazon.com/exec/obidos/ASIN/B00001SHKP";
$f = join("",file($url));
echo $f;
?>
After the upgrade, I get the following:
PHP Warning: file("http://www.amazon.com/exec/obidos/ASIN/B00001SHKP") - Success in t.p on line 3
PHP Warning: Bad arguments to join() in t.p on line 3
Any ideas why it would no longer be able to retrieve this URL?