I receive no data from server after multiple POST requests
问题 I've been struggling with a problem where multiple POST requests seemingly crash the server (site won't load, no requests allowed) for a couple minutes. GET requests do not cause this issue. This isn't a code issue, the code works fine It's likely something with my server config. Example of Frontend JS: $(".searchbox").keyup(function() { var data = $('.searchbox').val(); $.ajax({ url: "../assets/php/graphenesearch.php", method: "POST", data: { data: data }, async: true, dataType: "html" })