Magento – Magento Business Intelligence service. Retry Synchronization

magento2.2.2

I am using Magento 2.2.2. In the past, I used to get the message below in every time I log in as an admin:

Failed to synchronize data to the Magento Business Intelligence service. Retry Synchronization

I have run a command line and disabled the above message, I disabled the Synchronization, I don't remember what was the command line. Now I am trying to enable the advanced reporting and I have applied all of what is written in the documentation: http://docs.magento.com/m2/ce/user_guide/reports/advanced-reporting.html

I still cannot get any report. I only get the image below. How can I enable the synchronize data to the Magento Business Intelligence service via a command line to reverse what I've done so that I can get the reports?

enter image description here

Best Answer

You probably just disabled the module via command line.

Try this:

php bin/magento module:enable Magento_Analytics

and then run

php bin/magento setup:di:compile

php bin/magento setup:upgrade

And make sure that you have enabled Advanced Reporting in:

Admin -> Stores -> Configuration -> General -> Advanced Reporting

Related Topic