I'm maintaining an old CodeIgniter web app.
Lately, when certain forms are saved, the browser shows a permanent "Pending" for the status of the request. The request never completes (unless I reboot the web server in which case it errors out immediately).
There aren't any client-side errors in Dev Tools.
There aren't any server-side errors in the logs.
This happens in different browsers.
It happens in a Chrome incognito window with no extensions loaded.
All I have to go on is, the submit button it hit, the browser says "waiting for <servername>
" and nothing else happens.
Does this look like a network problem? There was no problem loading any of the application's other pages, all of which came out of the same database and web server.
How do I debug a "pending" HTTP request in a browser, when neither the client or the server shows an error?
TIA