I have a download form that uploads mp3 to my website. I have some intermittent issues with some users that I suspect are slow send connections ...
But in any case, the first line of code is set_time_limit(0); , which fixed it for users who had connections that occasionally downloaded, but some of them still lose time, and I have no idea why.
It says that the script has exceeded the limit of 60 seconds. The script has no loops, so it doesnβt like some kind of infinite loop.
It is strange that no matter what line of code is in the first line, it will always say "error on the first, second, etc.", even if it is set_time_limit(0); . I tried to erase it, and the very first line of code always seems to be a mistake, it does not even give me a hint why it cannot execute a php page.
This is a problem that few users experience, and no one else seems to be affected. Can anyone think about why this might happen?
source share