tridion

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

Dynamic drop downs in Tridion designing in schema in SDL Tridion 2011 SP1

旧城冷巷雨未停 提交于 2019-12-23 18:11:12
问题 I am working on a Schema creation in SDL Tridion 2011 SP1. I have struck at one thing. I have to display three drop downs to user. List: Country List:State List:Location If the user selects one country in the drop down, need to populate the states according to it. Depending the selected state I have to populate Locations. I thought of implementing through Categories. Created categories to countries Created States as Abstract Keywords under for each country. Created locations as Normal

Can we show a different tooltip when a Dashboard Button is disabled?

断了今生、忘了曾经 提交于 2019-12-23 16:23:07
问题 I'm working specifically with the PowerTools extensions for Tridion 2011, but this applies to any Anguilla extension with buttons in the dashboard. We can set <ext:title> to get a hover-over tooltip. User hovers over the GUI extension button to see this text. See example for the "count items" extension in the config. <ext:extension assignid="CountItems" name="Count Items" pageid="Power Tools" groupid="Tools"> <ext:command>PT_CountItems</ext:command> <ext:title>Count Items</ext:title> <ext

How to Extend “CheckOut” Command in SDL Tridion 2011 SP1?

早过忘川 提交于 2019-12-23 15:44:43
问题 I am trying to extend the "CheckOut" command of Tridion, and as of now I am trying to display my own message and am expecting the OOTB CheckOut action needs to be place when i click "CheckOut" option from the ribbon tool bar. I have created the config file and .js file as given below, i have made changes in the System.config as well and created the virtual directory also. However my .js not fired and not displaying my custom message. config.xml <?xml version="1.0"?> <Configuration xmlns="http

Tridion.AudienceManagement.API throws exception during initialization

二次信任 提交于 2019-12-23 15:20:58
问题 I have created a console application that performs simple actions on the Tridion.AudienceManagement.API API. When I start the application, the first thing it does is reference UserContext.Current , at which point I get the following exception. The type initializer for 'Tridion.AudienceManagement.DomainModel.Utilities.Configuration' threw an exception. at Tridion.AudienceManagement.DomainModel.Utilities.Configuration.get_LogFolder() at Tridion.AudienceManagement.DomainModel.Utilities.Logger

Tridion DTAP Clarified - How many Content Delivery setups do I need?

半世苍凉 提交于 2019-12-23 14:48:11
问题 I asked about developer setup for Tridion DTAP (development, test, acceptance, and production) in this other question, but understand the example didn't match a typical DTAP scenario. Chris Summers explains the CM-side well in his Fifth Tridion Environment post. But for clarity, could I get help understanding the ideal setup? CMS environments D = Development T = Test A = Acceptance P = Production I understand typical authors only use Production and publish from CMS Production to "Live" and

How to get the complete set of Embedded field values in a popup window in the Tridion Web GUI?

落爺英雄遲暮 提交于 2019-12-23 12:58:07
问题 I implemented a ribbon tool bar button for Tridion 2011 SP1, which opens an aspx page and populates a drop down list based on a look-up component. The look-up component comprises of different embedded schemas. To filter out the values based on embedded schema name I need to get the Embedded schema field values of component creation page on button click in button JavaScript. Because in my component creation page consists of multivalued Embedded schema field has the info, which helps look up

In SDL Tridion 2011, how can I process metadata on an item using the Core Service?

孤街醉人 提交于 2019-12-23 12:19:15
问题 I'm using the Core Service to read Keyword information in SDL Tridion 2011. How can I process any metadata on the items I'm reading? I can see a Metadata property that contains a string of XML, and a MetadataSchema property that represents a link to a Schema. Should I deal directly with the XML, or is there a way to do something more like the ItemFields processing in the TOM.Net? What if I want to add metadata to an item that doesn't already have any set? 回答1: You'll need to provide your own

How to Implement Google Analytics in SDL tridion web sites?

大憨熊 提交于 2019-12-23 12:08:15
问题 My Options : include the analytics code in page templates or CTs. create a component contains the analytic code and render it in Comonent presentation of the page. which could be better or please suggest any other way out. 回答1: The first approach is normally preferable, since it allows you to include information about a component or page in your call to Google Analytics. And you may not even have to write it yourself, since there is a free extension called the Web Analytics Enabler, which is

Is it possible to intermix Modular templating and legacy VBScript CT?

拟墨画扇 提交于 2019-12-23 09:43:26
问题 In particular, the case I have in mind is this: @@RenderComponentPresentation(Component, "<vbs-legacy-ct-tcm-uri>")@@ The problem I'm having is that in my case VBS code breaks when it tries to access component fields, giving "Error 13 Type mismatch ..". (So, if I were to give the answer, I'd say: "Partially, of no practical use") EDIT The DWT above is from another CT, so effectively it's a rendering of component link, that's why parameterless overload as per Nuno's suggestion won't work