I create a content node, I give it a publish and remove date, using the above fields from the properties tab and when the time comes around the content node does not get published. Also, I'll create a content node, publish it, and then give it a remove date it doesn't get unpublished. This is built in Umbraco functionalty... so it should work.
I am having the same problem. Please let me know if there is any progress. At least how to track umbraco background process that does automatic publish/unpublish? I could'nt find any errors in umbraco log at the time when it had to work.
Node is deleted at specified time, which means user can't browse to it. But it stays in admin section in published state. The solution might be to update and rebuild umbraco.dll from source as adviced in this article http://forum.umbraco.org/yaf_postst4170_Publish-at--Remove-at-bug.aspx
Background process starts updating nodes 10 minuntes after web site start and does checks every minute after. See for the following sql commands in sql profiler trace:
Remove at:
exec sp_executesql N'select distinct nodeId from cmsDocument where newest = 1 and not expireDate is null and expireDate <= @today',N'@today datetime',@today='2011-03-16 09:02:19.983'
Publish at:
exec sp_executesql N'select distinct nodeId, level, sortOrder from cmsDocument inner join umbracoNode on umbracoNode.id = cmsDocument.nodeId where newest = 1 and not releaseDate is null and releaseDate <= @today order by [level], sortOrder',N'@today datetime',@today='2011-03-16 08:56:00.970'
I did find an issue in 4.5.2 with the Remove At feature, where the document would get removed from cache but it's .Published "flag" was still set to published. Wondering if that might be your issue. It should be fixed in 4.6.1+.
That's not the case here. I got this to work in FF once since my last post but I had to enter in one date or the other nut not both. A publish date and time or an unpublish date and time but not both. Until this gets fixed... I'm going to have to deem this as a feature I cannot use.
Publish at and Remove at do not work...
.NET 4.0
WIN SVR 2008 R2
Publish at
Hi Kevon
Could you be a bit more specific?
What steps do you take when you create a node that should be published on a certain time?
The dump above does not make much sense I think, since no dates have been chosen? :)
/Jan
I create a content node, I give it a publish and remove date, using the above fields from the properties tab and when the time comes around the content node does not get published. Also, I'll create a content node, publish it, and then give it a remove date it doesn't get unpublished. This is built in Umbraco functionalty... so it should work.
I am having the same problem. Please let me know if there is any progress. At least how to track umbraco background process that does automatic publish/unpublish? I could'nt find any errors in umbraco log at the time when it had to work.
The history of the problem dates back a few releases ago that allegedly was fixed... this is irritating that the functionality is broken again.
I wonder if background process that handles these tasks needs to be setup somehow or started explicitly?
Node is deleted at specified time, which means user can't browse to it. But it stays in admin section in published state. The solution might be to update and rebuild umbraco.dll from source as adviced in this article http://forum.umbraco.org/yaf_postst4170_Publish-at--Remove-at-bug.aspx
Background process starts updating nodes 10 minuntes after web site start and does checks every minute after. See for the following sql commands in sql profiler trace:
Remove at:
exec sp_executesql N'select distinct nodeId from cmsDocument where newest = 1 and not expireDate is null and expireDate <= @today',N'@today datetime',@today='2011-03-16 09:02:19.983'
Publish at:
exec sp_executesql N'select distinct nodeId, level, sortOrder from cmsDocument inner join umbracoNode on umbracoNode.id = cmsDocument.nodeId where newest = 1 and not releaseDate is null and releaseDate <= @today order by [level], sortOrder',N'@today datetime',@today='2011-03-16 08:56:00.970'
Hi,
I did find an issue in 4.5.2 with the Remove At feature, where the document would get removed from cache but it's .Published "flag" was still set to published. Wondering if that might be your issue. It should be fixed in 4.6.1+.
-Tom
That's not the case here. I got this to work in FF once since my last post but I had to enter in one date or the other nut not both. A publish date and time or an unpublish date and time but not both. Until this gets fixed... I'm going to have to deem this as a feature I cannot use.
Note, this feature is still broken in v.6.2.6.
is working on a reply...