Frage

Sitecore 6.6 Update 4

I've got an instance of Sitecore that is having an issue with goals. After creating (and publishing) goals, I try to assign the goal to a specific content item. When I click on the 'Analyze\Attributes\Goals' button in the ribbon, the dialog is presented, but no goals are populated in the box.

I've looked at my error logs and don't see any errors. I've watched via Fiddler and don't see anything. I've used Chrome's developer tools and see no errors.

I have another instance of Sitecore running on the same server and it has no issues populating the goals dialog box.

Any ideas?

Thanks!

War es hilfreich?

Lösung 2

Okay, thanks to Mark (+1) for pointing me down a direction for solving this. This has to do with automating analytics deployment on CD servers.

Looking at section 6.2.1 of the ECM Administrator and Developers Guide, you can see that there are two tasks:

  1. Adding the Auto Publish action
  2. Updating the Web.config with a workflow provider for the default definition database

The goals were associated with the "Analytics Workflow", but they weren't going into a draft state after creating them and they weren't being properly deployed when saving.

After ensuring that the steps from the ECM dev guide were followed in the client's CM/CD environments, everything started working again.

Note: this may not be something someone normally sees with a default install. I had begun the process of implementing the ECM autopublish by editing the web.config files and had not completed the process of adding the "auto publish" action. Once I ensured that all items were correct, the process worked as expected.

Andere Tipps

Likely your goals have not been deployed to your Analytics dataset. Try pointing SQL Management Studio to your Analytics Database and issue the following:

SELECT *
  FROM [Sitecore_analytics].[dbo].[PageEventDefinitions]

And make sure that the goals you are registering are actually present here. There should be a Guid in PageEventDefinitionId that matches the Sitecore Item ID of your Goal.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top