-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed as not planned
Closed as not planned
Copy link
Labels
BugFor errors / faults / flaws / inconsistencies etc.For errors / faults / flaws / inconsistencies etc.duplicateFor issues that already existed in our issue tracker and were reported previously.For issues that already existed in our issue tracker and were reported previously.
Description
When the visits log is disabled globally or in website setting, loading reports for a period that has not yet been archived (without browser trigger), might currently show the error "Visits log is deactivated in website settings..."
The problem seems to be that the raw data check might try to perform a request to Live.getLastVisitsDetails
in
matomo/plugins/CoreHome/vue/src/ReportingPage/ReportingPage.vue
Lines 275 to 279 in 6ab9923
return AjaxHelper.fetch({ | |
method: 'Live.getLastVisitsDetails', | |
filter_limit: 1, | |
doNotFetchActions: 1, | |
}); |
That method is not available with deactivated visit log.
We should check if we can use or create another API method that provides the needed information, or maybe avoid the call completely if it doesn't make sense in that case.
Metadata
Metadata
Assignees
Labels
BugFor errors / faults / flaws / inconsistencies etc.For errors / faults / flaws / inconsistencies etc.duplicateFor issues that already existed in our issue tracker and were reported previously.For issues that already existed in our issue tracker and were reported previously.