Hello, I see a bunch of undefined index warnings in log: Undefined index: time_on_page Undefined index: roles_no_track Undefined index: rss etc. Basically, if the setting is not filled/checked, you seem no to be checking with isset() if the array key is there. Any fix for this? Thanks V.
Hello, ie: Undefined index: roles_no_track, Line: 318, File:/var/www/html/assets/plugins/better-analytics/library/DigitalPointBetterAnalytics/Base/Public.php
Hmmm... what version of PHP are you using? Are you using the latest version of Better Analytics? They way it's setup, it should suppress any errors there because it intentionally uses the error control operator there. http://php.net/manual/en/language.operators.errorcontrol.php
This was in a custom error handler. There is a bunch of reasons why to avoid using of @ operator, some of them ie. here: https://derickrethans.nl/five-reasons-why-the-shutop-operator-should-be-avoided.html. Would be cool to rewrite the code to not use the @ operator I think.