Tridion Developer Mirrored community feed

Activity
  • Troubleshoot the SDL Tridion Deployer Service - Part 2

     
    Here we are as promised, in part 2 of troubleshooting the Deployer I continue to follow more ways to figure out what could be causing certain deployment woes. Let's take a look at one of the most important lines in the cd_deployer_conf.xml file <Queue...
  • Experiencing XPM

     
    During a recent project, the client had the need to upgrade their Tridion Systems to 2013 SP1, and upgrade their existing SiteEdit implementations to use the new Experience Manager (XPM). In this post I will briefly describe my first thoughts on the product...
  • Upgrade to Tridion 2013 sp1 – Tip

     
    Upgrading Tridion 2013 to 2013 sp1 is a fairly simple process.  However, an issue exists in the installer and if you don’t take the following step, the upgrade installer will fail with a mysterious message. This tip is thanks to Pankaj Guar Rename the...
  • Using the Parameters Schema

     
    Have no clue what to do with the Parameters Schema? Maybe after this read you can think of some use cases for it. Read the full text.
  • Tridion Linked Groups Resolver

     
    This Tridion .NET TBB gathers all repeating fields in a component and adds them as entries into the package. They’re  grouped to allow you to iterate over individual groups. using System.Collections.Generic; using System.Linq; using ContentManagement...
  • Tridion JS & CSS Resolver

     
    Demonstrates how you might go about creating a JS & CSS Resolver that can be used during publishing to inject the CSS and JavaScript references into the Page Template output. This particular resolver looks for CSS and JavaScript in the page metadata...
  • Tridion Content Delivery | Retrieve Taxonomy Keywords Given a Category Na…

     
    This code snippet demonstrates how you might retrieve a list of child keywords for a given named category in a particular publication. private List FindKeywords(string categoryName) { var list = new List(); var taxonomyFactory = new TaxonomyFactory...
  • Dreamweaver Templating (DWT)

     
    Within the new version of SDL Tridion the concept of Modular Templating as a modern and better alternative is introduced. One of these mediators is the Dreamweaver Meadiator, which is described in this article. Read the full text.
  • Re-indexing Search in Tridion 2013 SP1

     
    The old reindexing tool has been retired as we moved into Tridion 2013. In this new version, there are many commands that can be executed via PowerShell scripts, including a command to reindex search in the CME. Initially, I just ran Sync-TcmSearchIndex...