Posts

Showing posts from September, 2022

SITECORE ITEM CREATION USING POWER SHELL EXTENSION

Image
       With Sitecore poweshell extension we can create sitecore item in the content tree. New-Item -Path "master:/sitecore/system/Settings/Services/API Keys" -Name "TestItem" -ItemType "System/Services/API Key" -ForceId "546FB77C-D7A2-4B5F-B695-B5355150FCA5" the above command will create the item in the specified path. Thanks, Varun Allada

XdbSearchUnavailableException-Error 50000: Sync token is no longer valid

Image
 When we get the below error in CD or CM while performing any action in Sitecore. Need to see the logs in Xconnect index worker- if there is an error related to sync token follow the below. A rebuild of the xDB index should will those errors and fix the List Manager issues: https://doc.sitecore.com/xp/en/developers/101/sitecore-experience-platform/rebuild-the-xdb-index-in-solr.html Thanks, Varun Allada

MIGRATING ITEM HISTORY IN SITECORE- Workflow history not migrated from Sitecore 9 to Sitecore 10 Migration

Image
 When we are working on the Sitecore migration project. if the client wants to see the item history of the items it will be blank as shown below. As part of the migration, we need to migrate the item history data as well. to do so go to the existing sitecore_master database.                                           Please consider restoring the workflow history simply by copying the entries from old WorkflowHistory table to your new database. Thanks, Varun Allada