On 5/22/07, Richard Thomas <[EMAIL PROTECTED]> wrote:
Having an issue I know I have seen before but can't place it..
http://sandbox.zend.com/~admin1/new.php
The page dies/never finishes, I have tried disabling all modules
thinking a module was causing the problem but its not.
Any brilliant ideas out there?
Does it always die on the output buffering part?
If the apache dies, get the core file and run truss (e.g.) on it. Or
run Apache through gdb.
A while ago I had some of those issues with PHP4. The problem was on
FreeBSD the modules are all loaded dynamically and not compiled
static. So when I updated the PHP4-core (so to speak -
/usr/ports/lang/php4) it just rebuilt that part and not all modules.
While 99% of them worked, the session module screwed up. Of course it
"only" happened on pages where sessions was used. ;-)
Anyway, strace/truss to the rescue.
Till