Problem with check_load

Hi,

I am running nagios 2.0b3 on RedHat

When I use the command line check_load -w 5.0,4.0,3.0 -c 10.0,6.0,4.0, the results are ok
However, the web interface displayed: Warning threshold must be float or float triplet!

Heres part of my config:
define command{
command_name check_local_load
command_line $USER1$/check_load -w $ARG1$ -c $ARG2$
}

define service{
use generic-service ; Name of service template to use
host_name localhost
service_description Current Load
is_volatile 0
check_period 24x7
max_check_attempts 4
normal_check_interval 5
retry_check_interval 1
contact_groups admins
notification_interval 960
notification_period 24x7
check_command check_local_load!5.0,4.0,3.0!10.0,6.0,4.0
}

Hi
Try just giving check_local_load instead of check_local_load!5.0,4.0,3.0!10.0,6.0,4.0 .

other thing can be done is install plugins with ssl support.

try out this.
let us know if any problem

Thanks