AJAX post returning 500 Internal Server Error on Live Server
Moderator: General Moderators
Re: AJAX post returning 500 Internal Server Error on Live Se
500 Internal Server Error means the webserver is not able to handle the script youve told it to run. that means the PHP youre calling with AJAX cannot finish execution for some reason, i doubt i has anything to do with your javascript. if your production server is still running php, just not the ajax, it may because your ajax script tries to use an extension that is not enabled. you could turn on display errors (php.ini) and get a little more information on why the script fails as well.