I've made a quick fix(not necesary best fix
) to limit the download size to 10k until you guys more capable of making a better fix temporarily.in libs/link.php, class HTTPRequest, method DownloadToString
Code:
$read_count =0;
/* modified read max 10k */
while(is_resource($this->_fp) && $this->_fp && !feof($this->_fp) &&
$read_count++ < 10) {
Digg It





ownloadToString() in .../libs/link.php on line 69
Linear Mode

