Noticed when adding measurand starting with integer it broke my report.
Eg. Name = 95th Pentile, abbreviation: 95th ... is this a known bug?
Deleting this measurand or renaming to not start with integer fixed the issue..
Now I have a view reports locked *** in progress ***.. bugger!
Report it - locked, *** in progress report *** -integer bug?
Moderators: Developers, Moderators
Re: Report it - locked, *** in progress report *** -integer
Quick database fix from command line for the lazy...
Code: Select all
# mysql -p
mysql> use cacti
mysql> select * from reportit_reports; // look for in_process column..
// update all (lazy)
mysql> UPDATE reportit_reports SET in_process = 0;
Query OK, 0 rows affected (0.08 sec)
Rows matched: 28 Changed: 0 Warnings: 0
// update specific record
mysql> UPDATE reportit_reports SET in_process = 0 WHERE id = 2;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
Who is online
Users browsing this forum: No registered users and 0 guests