So I am using the PHP Simple HTML DOM Parser to get the contents of a webpage. After I knew what I was doing was right, I still got the error that there was nothing to be fo
simple_php_dom.php contains:
simple_php_dom.php
define('MAX_FILE_SIZE', 600000); ... if (empty($contents) || strlen($contents) > MAX_FILE_SIZE) { return false; }
The second page is over 672000 bytes, so this size check fails. Increase that constant and you should be OK.