AJAX post returning 500 Internal Server Error on Live Server

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
liljester
Forum Contributor
Posts: 400
Joined: Tue May 20, 2003 4:49 pm

Re: AJAX post returning 500 Internal Server Error on Live Se

Post by liljester »

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.
Post Reply