How To Fix Out Of Memory At Line:139 From Web Page?

1

1 Answers

John Swindells Profile
John Swindells answered
If this is your own web page, you need to do some debugging to locate the source of the memory usage.  Typically you will be iterating over a data set and not initialising variables, thus building up a large new array of data.  Or maybe you're accepting form data and not performing size checks - so a large amount of data passed through the form is blowing up your script.

If you see this on somebody else's web site, let them know! Every good site should have a 'contact us' link either at the top or bottom of every page.  Let them know what the URL was (the text in the address bar) and roughly what you were trying to do.

Answer Question

Anonymous