[PHP] PHP Seg Faults, How to Trackdown?

2004-03-30 Thread Tim Schaab
Greetings, I need help tracking down a crash in PHP. I have not been able to work out a test case where it will crash reliably, so I have been hesitant to fill out a bug report. Here's the kit I have running: PHP4 - Latest Stable Snapshot as of 30/Mar/2004 12:18 Apache - 1.3.29 mod_ssl -

Re: [PHP] PHP Seg Faults, How to Trackdown?

2004-03-30 Thread Rasmus Lerdorf
3 of those are putenv() crashes. Whenever I see that I always think thread safety issues. In your case you are linking against the NTPL-aware libc on Redhat (/lib/tls/libc.so.6). Could you try doing this: LD_PRELOAD=/lib/i686/libc.so.6 in your Apache startup script and let me know if it

Re: [PHP] PHP Seg Faults, How to Trackdown?

2004-03-30 Thread Tim Schaab
Howdy, I tried the suggestion, though I had to load up some extra files to get it to work. I had to do a LD_PRELOAD=/lib/i686/libc.so.6 /lib/i686/libm.so.6 /lib/i686/libpthread.so.0 /lib/i686/libpthread.so.0 had to be in since /lib/tls/libpthread.so.0 would not load when