OK Fleccy - managed to get the /kick function to work, but am not sure if this represents a security risk :
in kick.cmd.php change
PHP Code:
if (($password != $PWD_Hash) || (($perms != "moderator")&&($perms != "admin")) || (($perms == "moderator")&&(!room_in(stripslashes($R), $rooms))))
to
PHP Code:
if ( (($perms != "moderator")&&($perms != "admin")) || (($perms == "moderator")&&(!room_in(stripslashes($R), $rooms))))
it seems to be the password checking that was causing the kick function to fail - does the password need to be rechecked at this point anyway as the user is already logged in to chat?