I have an application written in php. Until now, it hasn't been easy but it does the job. But now I have a problem: my script might need more than 10 mins to complete.
At the begining I was stuck with the 60 secs limit. Then I learned about "Tasks Push" and now I can make it run for 10 mins straight. I even "split" my code into pieces so every stage can have 10 mins to complete. But now I want even more and I've tried the "modules" approach but I just mess it up and almost cripple my app entireley.
Now I'm back to no-modules, using Tasks, with the code in stages but I'm wondering if there is a way I can run a script (in php) for more than 10 mins. I'm willing to try the "modules" approach again.
Any ideas? suggestions?