You are facing this problem in all campaign stats ?Hi guys
We're currently having this problem whenever we try to access stats for campaigns that were already delivered:
View attachment 9848
This kills our Ecommerce traceability, making impossible for us to knowledge which costumer made a purchase on our website
(Currently using version 1.9.6)
Many Thanks
Is there any way to Increase those days from 5 to 30, so if we want to keep stat for 1 month we can apply.This happens because in backend > settings > cron you have selected to remove campaign logs, so after 5 days, these are removed and you cannot see detailed stats anymore. This helps because it keeps the database small and fast, but the downside is that you don't get access to detailed stats after 5 days after the campaign finished sending.
You can add in apps/common/config/main-custom.php bellow param and this will overwrite default settings:s there any way to Increase those days from 5 to 30, so if we want to keep stat for 1 month we can apply.
'params' => array(
.....
'campaign.delivery.logs.delete.days_back' => 30,
),
Thats Good.You can add in apps/common/config/main-custom.php bellow param and this will overwrite default settings:
PHP:'params' => array( ..... 'campaign.delivery.logs.delete.days_back' => 30, ),
More about app params at https://kb.mailwizz.com/articles/adding-custom-configuration-params/