Sitecore Publishing Agent does not collect queued items for gradual publishing

We have a publishing agent that runs every 15 minutes using "Incremental Publish". Sitecore Client users "Check In" and "Approve" in Sitecore for the queue in the item. They can also manually publish, if necessary, to immediately start living something. We see some problems when some elements that are tested and approved as part of the workflow do not get what the publisher chooses. In addition, when a user tries to publish to the publish tab, the parent publishes, but not the children. Baby items must be published one at a time.

It seems to me that the problem is that these approved items are not added to the publication queue. But I'm not so sure about that.

We have installed a module called β€œPublish Status Manager,” which basically shows the Sitecore user various publishing operations that are active or in the queue. This problem occurred after installing this module. I am not sure if this is the cause of this problem.

I am looking for some tips on where to look and how to fix this problem.

+3
source share
3 answers

, , . , , . , .

, , :

http://briancaos.wordpress.com/2011/06/16/sitecore-publish-queue/

, " ", , , .

, , :

  <agent type="Sitecore.Tasks.PublishAgent" method="Run" interval="00:00:00">
    <param desc="source database">master</param>
    <param desc="target database">web</param>
    <param desc="mode (full or smart or incremental)">incremental</param>
    <param desc="languages">en, da</param>
  </agent>
+2

, ,

0

The publish agent will not collect the queued item if value.checksecurity is true in web.config. You can make this value false. Or create a user, give him the correct access rights and redefine the agent to switch the user.

0
source

All Articles