Bas Zoetekouw said:
> I had lots of troubles. A few of these:
This looks serious. My guess is that you ran out of file handles, which
of course is not supposed to happen anymore. Or could some other global
resource on your system been used up coincidentally at the same time as
your mass check?
The uninitialized and undefined value errors, at least in the ones I
looked up in DnsResolver, are in calls to dbg() in which there's
something that looks like
if ($packet && $packet->answer ... ) {
... something ...
} else {
dbg("some debug error message for packet " . $packet->string);
}
When $packet is undef the dbg call gets an error even when debug is not
enabled. That should be fixed, but I can't get to it right now. Anyone
else?
If that were fixed it would not solve your problem, just eliminate those
particular error messages while leaving the other ones that you are
getting.
-- sidney