tridion

Content Manager configuration snap-in “Could not read configuration item”

折月煮酒 提交于 2019-12-04 04:52:09
I am on a Tridion 2011 SP1 CM server and I’m trying to start the SDL Tridion Content Manager configuration MMC snap-in. I get the following error: Could not read configuration item. Modification of this item is not available on this machine. Account has no permission to access the protected configuration section 'tridion.security'. Contact your system administrator. My user is of course part of the local admins. What is going on? how to fix it? JRW The Content Manager uses a .NET encryption key to ensure the encryption of sensitive configuration data such as passwords. By default nothing is

How can I import external files into SDL Tridion 2011 using core service?

孤者浪人 提交于 2019-12-04 03:05:51
I want to push PDF, Word and Excel files into SDL Tridion 2011 by using core service. I tried below code but get this error: Invalid value for property 'BinaryContent'. Unable to open uploaded file: using (ChannelFactory<ISessionAwareCoreService> factory = new ChannelFactory<ISessionAwareCoreService>("wsHttp_2011")) { ISessionAwareCoreService client = factory.CreateChannel(); ComponentData multimediaComponent = (ComponentData)client.GetDefaultData( ItemType.Component, "tcm:19-483-2"); multimediaComponent.Title = "MultimediaFile"; multimediaComponent.ComponentType = ComponentType.Multimedia;

How to add external JavaScript or CSS files to our Tridion page?

寵の児 提交于 2019-12-03 18:04:04
问题 I have an external JavaScript and a CSS file . I am not getting the idea how to add this file to my page. I am using DWT TBBs for both CTs and PTs . I am writing internal CSS in my page TBB for getting the output for the time being. but I am not getting how to implement JavaScript. Can somebody help me? Should I make these file as component and render them on my page? Is this the correct way? If yes, please tell me the steps to be followed. 回答1: This is a topic for wide discussion, I'll try

restrict user to insert same component and template [duplicate]

南楼画角 提交于 2019-12-03 01:21:46
问题 This question already has an answer here : Closed 7 years ago . In a page inside the insert component popup window . When a user is trying to Select a component and a Template then how to * restrict them to select the same combination of component and template * that is already present in the component list. I thought of writing a javascript on insert button.Please suggest if i am going in right way. 回答1: As Bart says above your question is amazingly vague, but here is an attempt at an answer

How to set content to a component without loading XML in SDL Tridion using core services?

允我心安 提交于 2019-12-03 00:19:01
问题 How do I set content to a component without loading XML in SDL Tridion using core services? 回答1: If you are looking to create a regular Component through the Core Service, you can avoid having to craft the XML yourself by using this helper class. With this you can create a Component like this: schemaFields = client.ReadSchemaFields("tcm:1-2-8", true, DEFAULT_READ_OPTIONS); component = (ComponentData)client.GetDefaultData(ItemType.Component, "tcm:1-57-2"); fields = Fields.ForContentOf

ASP.Net CMS recommendation, Orchard, Sitefinity, Umbraco or N2? [closed]

让人想犯罪 __ 提交于 2019-12-03 00:06:06
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Over the past 3 years I have been using (...shamefully) SharePoint 2007, DNN and Tridion to develop web portals. I am however looking to move off SharePoint and Tridion (lack of control over urls, markup and tdd) and am looking for alternatives. Which of

How to create a custom button in the ribbon of Tridion [closed]

戏子无情 提交于 2019-12-02 23:56:38
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . Please anyone can help me understand, How to create a custom button in the ribbon of Tridion. I need to have a functionality later on click of that button. 回答1: Some good tutorials on getting started creating Tridion GUI extensions: http://yoavniran.wordpress.com/2011/03/03

How to create a custom button in the ribbon of Tridion [closed]

无人久伴 提交于 2019-12-02 13:45:39
Please anyone can help me understand, How to create a custom button in the ribbon of Tridion. I need to have a functionality later on click of that button. Some good tutorials on getting started creating Tridion GUI extensions: http://yoavniran.wordpress.com/2011/03/03/setting-up-a-tridion-gui-2011-extension-in-8-steps/ http://www.curlette.com/?p=279 http://code.google.com/p/tridion-2011-power-tools/wiki/nononsenseguide http://tridionfanboy.wordpress.com/category/javascript/ http://www.curlette.com/?p=401 There are also plenty of existing extensions to be found on SDL Tridion World that serve

restrict user to insert same component and template [duplicate]

瘦欲@ 提交于 2019-12-02 13:42:05
In a page inside the insert component popup window . When a user is trying to Select a component and a Template then how to * restrict them to select the same combination of component and template * that is already present in the component list. I thought of writing a javascript on insert button.Please suggest if i am going in right way. johnwinter As Bart says above your question is amazingly vague, but here is an attempt at an answer as i've just done something similar. Given the vagueness, i'm assuming that you're knee deep in JS code and what I'm putting here will make sense to you :) In

How to get tcmid of currently logged user in Tridion?

故事扮演 提交于 2019-12-02 13:23:01
private void Subscribe() { EventSystem.Subscribe<User, LoadEventArgs>(GetInfo, EventPhases.Initiated); } public void GetInfo(User user, LoadEventArgs args, EventPhases phase) { TcmUri id = user.Id; string name = user.Title; Console.WriteLine(id.ToString()); Console.WriteLine(name); } I wrote above code and add the assembly in config file in Tridion server but no console window is coming on login of a user The event you were initially subscribing to is the processed phase of any identifiable object with any of its actions, that will trigger basically on every transaction happening in the SDL