1. Function get_map_by_sysmapid is not defined in maps.inc.php.
file config.inc.php, line 2142
$user=get_map_by_sysmapid($id);
should be replaced with
$user=get_sysmap_by_sysmapid($id);
2.
If you delete host, but there are user permissons still exist for this host, you will get an error in the frontend's "Users" section:
Error in query [select * from hosts where hostid=] [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1]
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in include/db.inc.php on line 151
I think this operation (removing user's permissons when host is deleted) should be done automatically.
3. If user don't have Default Permission, but have permissions for hosts and items, he cannot see Lastest data, Triggers, Alarms (No permissions !) for his objects. This user can see all Trigger names for all hosts in Overview (Group All, Type Triggers) though.
file config.inc.php, line 2142
$user=get_map_by_sysmapid($id);
should be replaced with
$user=get_sysmap_by_sysmapid($id);
2.
If you delete host, but there are user permissons still exist for this host, you will get an error in the frontend's "Users" section:
Error in query [select * from hosts where hostid=] [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1]
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in include/db.inc.php on line 151
I think this operation (removing user's permissons when host is deleted) should be done automatically.
3. If user don't have Default Permission, but have permissions for hosts and items, he cannot see Lastest data, Triggers, Alarms (No permissions !) for his objects. This user can see all Trigger names for all hosts in Overview (Group All, Type Triggers) though.
Comment