Hello!
I am using a Snoopy class to get some info from remote location. The script is slow, and for small pages finishes its work and after waiting about 15 - 20 sec. I see the desired output for example
Code:
$html = snoopy_get_info_from_rem_loc();
echo $html;
But for big pages the output of the same code after waiting the same time is a blank page. I think there is a reason for that in some of the php.ini settings. I've aready stopped MAX_ECECUTION_TIME (or set it to 0), but it did not help. Do you have any other ideas what paramaters to fix in the php.ini or how to make that script to finish its whole work? The time is not a problem, that's a cashing script, taking the info and storing it on my local server. Please, help!
P. S. Note, that again just for the big page the script did not work even after adding:
Code:
$html = "";
while($html != "") {
$html = snoopy_get_info_from_rem_loc();
echo $html;
}
... and remember that currently there is not MAX_EXECUTION_TIME limitation!!!
PLease, help!