Re: [Resin-interest] Disable watch dog

2007-11-06 Thread Scott Ferguson
On Nov 5, 2007, at 10:33 AM, Jaswinder Kaur wrote: Hello How much memory watchdog process takes? As little as the JDK allows. The watchdog itself doesn't take much memory, but the JDK tends to allocate quite a bit. How can I disable watchdog? You can't. Or, really, you don't want to.

Re: [Resin-interest] additional Comet questions

2007-11-06 Thread Scott Ferguson
On Nov 5, 2007, at 2:35 AM, Robert Varga wrote: Hi Scott, still have some questions :-) 3. What happens if I call CometController.wake() while another thread is executing on a CometServlet with the same CometController instance? Will resume() be called once again after the resume/

Re: [Resin-interest] Quercus PHP throws NullPointerException in urlencode

2007-11-06 Thread sjanes71
It looks like a bug in Quercus when urlencode is given an empty $_REQUEST variable, I changed to code in Phorum to guard the call to urlencode() to this (lines 192-196 of include/admin/users.php): [code] 192 if ($_REQUEST[search]) { $url_safe_search=urlencode($_REQUEST[search]); }