Reputation: 605
I'm working with some web services that are giving big amount of data. The time of WS reply has made us to download data it contains (on daily basis, as cronjob).
However I have difficulties with test the script to parse data. Whole script will probably run about 1-2 hrs. After few minutes script gets interrupted. The browser returns a file download prompt (name of file: "name_of_action" without extension).
I'm running this as webserver script, in apache server (Zend server to be specific). Tried:
set_time_limit(0);
ignore_user_abort();
and setting long execution times in php.ini - nothing helps. Script keeps getting interrupted.
Best regards and thanks in advance for any help
Upvotes: 0
Views: 2828