Posts

Showing posts from July, 2025

Sorry, there was an error - Sitecore 10.4 Update installation

Image
Sitecore recently launched the Sitecore 10.4 update 1 with important updates to 3rd party dependencies, and a roll-up of functional and security vulnerability fixes that includes SOLR upgrade to version 9.8.1, Sitecore Identity server on .NET 8, Security fixes and enhancements and resolved issue with Content Editor, Experience Editor, Publishing and Headless rendering, Language fallback, Performance and NuGet packaging.   To explore these features and improvements, I planned to install Sitecore 10.4 update 1 on a local developer machine. After successfully installing, when I log in to the Sitecore Identity server, instead of redirecting to the Sitecore instance, I encounter the following error: "Sorry, there was an error." I have checked the log files and have not found any logs related to it. After that, I have checked the Quick Install Guide for XP Developer Workstation , which is a Guide describing how to install the Sitecore XP Single (XP0)...

Sitecore Content Hub CKEditor Bullet Point Issue

Image
Problem Statement: While working with the CKEditor (Rich Text Editor) in Sitecore Content Hub, I have encountered one issue in which my content was listed in alphabetical order. When the author updates any content in the particular CKEditor field and saves the changes, the alphabetical list automatically changes to a numbered list.  After the author edits and updates the content, and clicks on save: Solution: It appears we are experiencing an issue in the Content Editor where nested numbered lists are displayed as alphabets in the editor:  Another example: However, after saving, the lists appear as numbers: To ensure the display is consistent, we need to add the following CSS to the Content Detail page in the page settings:  .content-field ol ol {     list-style-type: lower-latin; } For more information, please refer to the documentation for the CSS tab in the page settings: Sitecore Content Hub CSS Documentation ...