system fields lastclick_date and lastopen_date are empty
Moderator: moderator
-
- Posts: 9
- Joined: Tue Sep 01, 2020 8:19 am
system fields lastclick_date and lastopen_date are empty
With several tests and openings (Outlook data downloaded) the fields lastclick_date and lastopen_date remain empty. Why does openemm not write any information in these fields? I am using version 20.10.000.107. Thanks for the answer.
-
- Posts: 25
- Joined: Fri Jan 04, 2013 8:55 am
Re: system fields lastclick_date and lastopen_date are empty
Writing the last open and last click date is disabled by default.
To enable it, execute this SQL statement on your database:
INSERT INTO config_tbl (class, name, value) VALUES ('measure', 'writecustomeropenorclickfield', 'true');
After inseting this configuration key, you either have to wait 5 minutes or restart your OpenEMM.
To enable it, execute this SQL statement on your database:
INSERT INTO config_tbl (class, name, value) VALUES ('measure', 'writecustomeropenorclickfield', 'true');
After inseting this configuration key, you either have to wait 5 minutes or restart your OpenEMM.
-
- Posts: 9
- Joined: Tue Sep 01, 2020 8:19 am
Re: system fields lastclick_date and lastopen_date are empty
Thanks for the answer. It works. Nearly.
If you click after opening, the value in the lastopen_date field is overwritten. The values are then identical (lastopen_date = lastclick_date).
A mistake or intent?
If you click after opening, the value in the lastopen_date field is overwritten. The values are then identical (lastopen_date = lastclick_date).
A mistake or intent?
-
- Site Admin
- Posts: 2628
- Joined: Thu Aug 03, 2006 10:20 am
- Location: Munich, Germany
- Contact:
Re: system fields lastclick_date and lastopen_date are empty
You may activate the writing of these fields with
But be aware that this costs some database performance.
Code: Select all
INSERT INTO company_info_tbl (company_id, cname, cvalue) VALUES (0, 'measure.writecustomeropenorclickfield', 'true')
OpenEMM Maintainer