I'm running a facebook fql query which returns a big json string. I then file_get_contents the URL. If I limit the fql query to 100 results, my file_get_contents() returns fine. If I up it to 200 results, file_get_contents() returns false.
I have tested it through the facebook open graph explorer and both 100 and 200 queries run fine. Also, on my localhost i can get back 200 results fine. On my production, i can only get 100. when i try 200, file_get_contents returns false.
Is there a php.ini setting on my production environment that is preventing file_get_contents from working for too large of a file?