How would you prevent a browser from timing out while a long process is running in php?
We have a process which accepts a file upload and runs process on the file data. Sometimes this file can be very large with a lot of records, and in these cases the user gets a timeout error. I believe it is a browser timeout because the script is still running in the background and finishes successfully.
I normally don't work in php (in fact, never before troubleshooting this website) and was wondering if there was an easy way to prevent the browser from timing out while the process runs.