Robert Cummings wrote:
On Wed, 2006-04-26 at 12:44, Jochem Maas wrote:
hicham wrote:
easy way 2:
use lots of echo()/var_dump()/print_r() in your code to figure out
where it's breaking.
If you're trying to track down an error using this technique (by far one
of the most popular techniques and time tested), be sure and use your
knowledge of binary search algorithms to speed up your search. Applying
the heuristic of guessing approximately where it's occurring will help
you greatly also :) This kind of technique though is mostly only
necessary when PHP does something stupid like segfault *grin*.
Most of the times it is true, however, sometimes everything just fails.
Apache continues to give segfaults on running a specific PHP script,
which do don't find until you look into error logs of apache. Then you
try to generate backtrace using gdb. All this while, on every try
Apache+PHP keeps crashing on you.
gdb backtrace too does not help much. So finally you compile bare bones
apache+php and Voila! Everything works just fine.. From there, you go on
adding one module per compilation to find the defaulter module and run
/that/ PHP script after every compile to see if it crashes. And after a
few compiles you find an Apache module to be a real culprit.
--
Sameer N. Ingole
Blog: http://weblogic.noroot.org/
---
Better to light one candle than to curse the darkness.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php