vote up 0 vote down star

I am on a windows IIS server serving some php sites. We have moved a working PHP site on to our server, however submitting one of the forms returns:

PHP has encountered a Stack overflow

When commenting out the MYSQL INSERT and assigning SESSION variables the form processes, however these are vital segments of the submission form.

Any help would be greatly appreciated.

flag
When you write a stack overflow clone in PHP :) – Mehrdad Afshari Jan 21 at 20:41

4 Answers

vote up 6 vote down

Too much recursion?

link|flag
See stackoverflow.com/questions/466884/… – Greg Hewgill Jan 21 at 21:05
Argh ... you've stack overflow'et stack overflow ... that's like a recursive recursion ... – troelskn Jan 21 at 21:09
Haha, nice one Greg. – Evan Fosmark Jan 21 at 21:10
I just accidentally this whole post. – tj111 Jan 21 at 21:10
@Greg: I wish we could upvote comments. – Crescent Fresh Jan 21 at 21:54
vote up 1 vote down

For me it's usually an infinite loop (including infinite recursion)

link|flag
vote up 1 vote down

Which version of php are you using? In some older versions, an infinite (or very deep) recursion would cause a stack overflow, if I remember correctly. Today you would get a more specific error message ("Maximum function nesting level of '100' reached, aborting!").

You mention sessions as a possible cause; Are you storing complex data structures in session? Sessions are serialized and unserialized between requests, which probably could cause some problems if you put too much stuff in them (Not sure how much is too much though). Maybe you could reduce on that?

link|flag
vote up 0 vote down

[off-topic]

$stackoverflow = file_get_contents('http://stackoverflow.com/tags/php');
// voila, php encountered stackoverflow ^-^
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.