Forums

internal server error (500) with large json file

My ajax request works fine for a website that I developed until a certain json file size is reached. I am wondering if there is a setting (e.g., wsgi.py file) that needs to be made that allows larger json files with an ajax request. Thank you for your help.

If you're getting a 500 error from your web app, look in your error and server logs for tracebacks that you can use to start debugging.

Glenn,

You were right on. There was a left over print statement in my program that prepared the json file, the print statement was too large. Got rid of it, now it works.

Thanks!!!!!!