Php 4.3.2
I've come across a curious problem after upgrading to PHP 4.3.2 last nightI have a few scripts that fopen() a remote file for reading and then fread() the contents before fwrite() to a local file.
However since 4.3.2 either fread() or fwrite() is stopping after a certain number of bytes (no matter what I put into fread())
I had to edit all my code to use shell_exec() and wget (although using an open stream method still works as well).