I am executing one php script, if data is less (approx 30K), it will take 3 minutes and display the output.
But if data is huge, then execution time is approx 7-8 minutes, but browser is not showing the output. I checked the script with the logs, script is executing till the last line of the code, but browser is not responding that output.
I tried with the lots of options like increase memmory limit, max execution time, but didn’t get the solution.
Kindly look into that…..
You need to output some data to the browser. It the browser has to wait for minutes the browser will think that there is a connection timeout.
If possible you could begin to send the html header and
flushit to the client.