Very WIRED error msg

2000-10-23 Thread hpcenter
Hello guys , I saw this : [Mon Oct 23 14:45:09 2000] [notice] Apache/1.3.12 (Unix) mod_perl/1.24 configured -- resuming normal operations Argument "OK" isn't numeric. Argument "OK" isn't numeric. Argument "OK" isn't numeric. Argument "OK" isn't numeric. etc.. What that mean ??? Thanks -

Re: Very WIRED error msg

2000-10-23 Thread John Saylor
Hi - Original Message - From: [EMAIL PROTECTED] Argument "OK" isn't numeric. Argument "OK" isn't numeric. Argument "OK" isn't numeric. Argument "OK" isn't numeric. What that mean ??? Your code is expecting a numeric value [probably 1 or 0] and it's getting a string. Your code is

Re: Very WIRED error msg

2000-10-23 Thread Sean D. Cook
Argument "OK" isn't numeric. Argument "OK" isn't numeric. Argument "OK" isn't numeric. Argument "OK" isn't numeric. It looks like you are trying to check the return value from a mod_perl handler. my $foo = handler(); if($foo == 1){ # this won't work :) } sub handler { ...