tridion2009

How can we override the existing deployer customization in Tridion 2009?

余生颓废 提交于 2020-01-06 15:39:28
问题 While in process of customizing Deployer, I noticed that we have already customized PageDeploy and PageUndeploy modules, please see the below config sections taken from cd_deployer_conf.xml. PageDeploy: <Module Type="PageDeploy" Class="com.tridion.extensions.deployer.ConditionalPageDeploy"> <Transformer Class="com.tridion.deployer.TCDLTransformer" /> </Module> PageUndeploy: <Module Type="PageUndeploy" Class="com.tridion.extensions.deployer.ConditionalPageUndeploy"/> I just have their .jar

Attempting to deploy a binary to a location where a different binary is already stored

混江龙づ霸主 提交于 2019-12-23 18:11:44
问题 When I am publishing my page from tridio 2009, I am getting the error below: Destination with name 'FTP=[Host=servername, Location=\RET, Password=******, Port=21, UserName=retftp]' reported the following failure: A processing error occurred processing a transport package Attempting to deploy a binary [Binary id=tcm:553-974947-16 variantId= sg= path=/Images/image_thumbnail01.jpg] to a location where a different binary is already stored Existing binary: tcd:pub[553]/binarymeta[974950] Below is

Keyword Path in SDL Tridion

血红的双手。 提交于 2019-12-23 09:27:44
问题 Could someone please give some idea on how this can be done? This might be very simple and basics, but i couldn't figure this out. Here is my requirement. I have a category A with child keyword B and B got another Child Keyword C. I want to get the exact path of selected keyword in my component template,Say for eg, if user selects keyword C, i need the value with path like A\B\C and not just as C. But Tridion always gives me the value as C and not as A\B\C . Component Schema is using "Tree"

Tridion 2009 SP1 Broker not returning results

本秂侑毒 提交于 2019-12-23 09:21:15
问题 I am having trouble loading a Dynamic Component Presentation from the Broker based on a fairly simple query like the below, where I am trying to load the Component based on being tagged with a specific Keyword: private string GetComponentPresentations() { Logger.Log.Info("Entered GetComponentPresentations"); var publicationCriteria = new PublicationCriteria(_publicationId); int schemaId = int.Parse(SchemaId.Split('-')[1]); // Is it the correct content type (Schema) var isSpecifedSchema = new

Any open source alternatives for Dreamweaver using WebDav?

扶醉桌前 提交于 2019-12-21 05:17:10
问题 We would like to use WebDav to work with our templates and we can't use Dreamweaver. Any suggestions? Thank you, 回答1: Any text editor should do the job here - i'd recommend either Sublime Text 2 or Notepad++ As long as you have the WebDav path mapped as network drive you should be good to go. 回答2: I would suggest looking at OxygenXML editor. It isnt open source, but its relatively cheap and has good HTML, css, etc support, and has built in support for webdav. I've found that editors which

Server Performance going down while we trying to get some data from Tridion 2009 broker LINK_INFO table using C# 2.0

浪子不回头ぞ 提交于 2019-12-12 00:43:12
问题 Actually I tried to implement Google Markup on our pages, so that our usercontrol will render below type of HTML on the page header section <link rel="alternate" hreflang="en-GB" href="http://www.mysite.com/english/index.aspx" /> <link rel="alternate" hreflang="de-DE" href="http://www.mysite.com/de/german/index.aspx" /> <link rel="alternate" hreflang="en-DE" href="http://www.mysite.com/de/english/index.aspx" /> <link rel="alternate" hreflang="ru-RU" href="http://www.mysite.com/ru/russian

Can we customize Deployer using .NET? [closed]

[亡魂溺海] 提交于 2019-12-10 23:18:23
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I need to customize my deployer for some reasons, I can only see some articles which are using java for customizing deployer. Can we customize deployer using .NET project, please share your thought and if

how to pass embedded schemas as drop down for the content schema in SDL Tridion 2011 SP1

大憨熊 提交于 2019-12-10 09:22:22
问题 I am trying to create a schema in SDL Tridion to satisfy these requirements. I have two main fields: ABCD, which has one sub field as "XYZ" AAAA, which has two sub fields namely "Name" and "Value" Both main fields are repeatable and and should be movable. Example patterns may look as per requirement: ABCD----AAAA----ABCD---AAAA AAAA----ABCD----ABCD----AAAA The main fields AAAA and ABCD should be moved from one to another. Say if I create a component with the created schema and the first main

How to make a Custom Deployer to write data to MS SQL database?

为君一笑 提交于 2019-12-08 02:13:31
问题 I've added a custom module in the default processor in config/cd_deployer_conf.xml: <Processor Action="Deploy" Class="com.tridion.deployer.Processor"> ... <Module Type="MyCustomModuleDeploy" Class="com.tridion.new.extensions.MyCustomModule"> </Module> </Processor> The code for the module looks something like this: public class MyCustomModule extends com.tridion.deployer.modules.PageDeploy { static Logger logger = Logger.getLogger("customDeployerFirst"); public MyCustomModule(Configuration

Tridion 2011 - Filtering XSLT on Formatting Feature window

倾然丶 夕夏残阳落幕 提交于 2019-12-07 08:49:26
问题 Currently we are doing Tridion upgrade from 2009 to 2011. I see a strange problem and want to know why it is been updated differently. My Problem: On many of Schema's, we have our own filtering XSLT for content fields (that is, Rich Text Fields). Example: <xsl:stylesheet ... > ... ... ... </xsl:stylesheet> After upgrade to Tridion 2011, I see schema's are updated with the below format <stylesheet... > ... ... ... </stylesheet> Due to this, on the components rich text fields are not appearing.