Server Doesn't Respond Multiple Ajax Request At The Same Time
In a website i make, we use arrowchat chat plugin. Arrowchat sends AJAX requests once in around 30 seconds to get the online ppl list. On the other hand, website's navigation syste
Solution 1:
It's likely you're locked by session. If you use sessions in your php - then perform session_write_close
in page.php
as long as you don't need it anymore.
Otherwise other requests wait for session file to be unlocked (on script end)
Post a Comment for "Server Doesn't Respond Multiple Ajax Request At The Same Time"