0
Hello, I’m developing a PHP system where it works with IPTV lists stored in services like Pastebin. The user submits such a url, for example (https://gitlab.com/bieldry02/FilmeseSeries.m3u8/raw/master/FilmeseSeries.m3u8), in a form and my script will analyze line by line the contents of the list. The problem is that the server takes too long to respond when the list is too large. So my idea is to make the request using ajax. Except that as the server may take time to respond, the user can continue browsing the site, my big doubt is that when the server sends the response to the request there will be some problem.
Adding more information:
It is a site that has a user panel, I want to give the freedom to submit such a list and while the server does not send the reply, it continue browsing normally on the site.
It depends on how the page navigation is done. Can you explain more about the page you have? it’s all loaded at once or it’s dynamic?
– Sergio
The page loads at once.
– Marcos Silva