
Christopher Duarte - 2007-08-16 20:46:30
117c117,119
< $data = fread($fop, filesize($src));
---
> while (!feof($fop)) {
> $data .= fread($fop, 1024);
> }
Changing this one line of text, I was able to parse an XML file located at a URL address. Otherwise the filesize() function would error stating that it couldn't stat the file.