in reply to Re: Re: debugging mod_perl?
in thread debugging mod_perl?

Hmmm. Why is your server being shut down in the middle of handling requests? Are you sure that you're completely destroying the session object every time? You could have a scoping problem that prevents Apache::Session from saving.

Replies are listed 'Best First'.
Re: Re: Re: Re: debugging mod_perl?
by Flame (Deacon) on May 19, 2003 at 04:57 UTC
    That's the question I'm trying to answer... sometimes I'll request the page and it will just sit there... I'll never get a reply (this from a process that should reply almost instantly.) I can't find any loops it could concievably be getting stuck in.



    My code doesn't have bugs, it just develops random features.

    Flame ~ Lead Programmer: GMS (DOWN) | GMS (DOWN)

      That really sounds like a problem with scoping of Apache::Session objects to me. Try removing the session code or explicitly undef'ing your session object at the end of the request. Or put in some warnings in Apache::Session to see if DESTROY is being called.
        I do use an explicit undef immediately after I finish all other processing. Actually it's an explicit untie, but it amounts to the same thing.



        My code doesn't have bugs, it just develops random features.

        Flame ~ Lead Programmer: GMS (DOWN) | GMS (DOWN)