Sitecore 7.2 engagement analytics not recording data

436 Views Asked by At

I'm using Sitecore 7.2 DMS (Digital Marketing System) to personalize content based on pattern cards. The problem I'm having is that the engagement analytics tool is not recording any data.

I already troubleshooted the problem based on this post but I haven't had any luck. Summarizing I checked:

  • Sitecore.Analytics.config is in the Include folder

  • The Analytics DB connection string is correct

  • Analytics.DisableDatabase is false

    I even add the enableAnalytics in the web.config (true by default)

       <site name="website" virtualFolder="/" physicalFolder="/" rootPath="/sitecore/content" startItem="/home" database="web" domain="extranet" allowDebug="true" cacheHtml="true" htmlCacheSize="10MB" registryCacheSize="0" viewStateCacheSize="0" xslCacheSize="5MB" filteredItemsCacheSize="2MB" enablePreview="true" enableWebEdit="true" enableDebugger="true" disableClientData="false" enableAnalytics="true" />
    

Thanks in advance

2

There are 2 best solutions below

0
Martin Miles On

Apart from configuration, your pages should have a VisitorIdentification tag, so that Sitecore will be able to collect tracking information. Please make sure you have got a correct tracking tag being set up on your custom page layouts.Below are examples for WebForms and MVC versions of Sitecore(correspondingly).

WebForms:

<sc:VisitorIdentification runat="server" />

MVC:

@Html.Sitecore().VisitorIdentification()

See previous SO question on that: Sitecore Analytics

1
LavaKumar On

Disable Bots detection in the Sitecore Analytics config file. by default its true. Make it to false.