I am using this code inside my PHP File
<?php
set_time_limit(0);
// More code here
?>
But i am still getting timedout after 100 seconds, what should i do?
I am using this code inside my PHP File
<?php
set_time_limit(0);
// More code here
?>
But i am still getting timedout after 100 seconds, what should i do?
I suggest a cron-job approach for your problem. CLI called php scripts have no time limit. A shared host however may stop process that take more than X seconds - but I think is a good option for your issue.
If that doesn't work either, please give us more details on what you're trying to do in that PHP file. Maybe we can help you reduce the execution time of that script by changing the implementation.