tridion

How do you get a user's name and description from their ID in the SDL Tridion Anguilla framework

泪湿孤枕 提交于 2019-12-12 10:46:27
问题 I have written a GUI extension for SDL Tridion 2011 SP1. The GUI consists of an extra ribbon button and event handler which is triggered when a component is saved. My event handler is registered as follows: PowerTools.Commands.ItemCommenting.prototype._execute = function (selection) { var item = $display.getItem(); $evt.addEventHandler(item, "save", this.getDelegate(this._onItemSaved)); $cme.getCommand("SaveClose")._execute(selection); }; and the event handler looks like this: PowerTools

Running Custom Deployer from Eclipse

橙三吉。 提交于 2019-12-12 09:37:37
问题 I've gone through Jaime's deployer tutorial. I've successfully created my deployer extension, which when integrating with SDL Tridion, the functionality works exactly as required. But, what i can't get to work is the local debugging / running with the deployer inside eclipse (documented here) The eclipse based deployer does run. If I drop my zip file into my test incoming folder the zip is picked up and processed. However, the customdeployer code I have written is never entered or executed. I

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

HTTP Deployer throws “Attempt to load JVM failed on native side”

房东的猫 提交于 2019-12-11 07:36:34
问题 On Tridion 2011 SP1, after I just restarted an HTTP Deployer, I get the error "Attempt to load JVM failed on native side" when I try to access HTTPUpload.aspx. What is the issue? I added an env variable JAVA_HOME, restarted the server, but no luck so far. Many thanks in advance! 回答1: Nevermind... It seems that after rebooting the server AGAIN, problem was fixed. I guess I'll never know what was it. 回答2: The story is way deeper than initially believed and it all boils down to memory allocation

Executing a Page with DCP in SDL Tridion 2011 SP1

和自甴很熟 提交于 2019-12-11 06:24:55
问题 I have published a ASPX page with DCP. <html> <head> </head> <body> <tridion:ComponentPresentation runat="server" PageURI="tcm:9-5251-64" ComponentURI="tcm:9-5245" TemplateURI="tcm:9-5247-32"/> </body> </html> What are the ways to execute this page, so that it renders the DCP. I just tried browsing this page through IIS, I am getting parser error. Unknown server tag 'tridion:ComponentPresentation' It would be great if some one can guide me to run this page. Thanks in Advance 回答1: Make sure

Cannot unpublish component

久未见 提交于 2019-12-11 05:49:08
问题 I am using Tridion R5.3. I am trying to delete a component in but it it showing as published. No matter what I do I cannot get it to unpublish. I ran the following query against the database to determine where the component is published. SELECT * FROM [dbo].[PUBLISH_STATES] WITH (NOLOCK) WHERE REFERENCE_ID = 268494 And I received the following information ID : 45173 REFERENCE_ID : 268494 ITEM_TYPE : 16 PUBLICATION_ID : 4 STATE : 1 STATE_CHANGE_DATE : 2006-08-18 12:50:25.597 PUBLICATION_TARGET

Unable to get Core Service client working

家住魔仙堡 提交于 2019-12-11 05:45:45
问题 I am trying to publish the component using core service, to do this, I just created a console application, and executed from the server. I am getting the below error message. Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'Tridion.ContentManager.CoreService.Client, Version=6.1.0.996, Culture=neutral, PublicKeyToken=ddfc895746e5ee6b' or one of its dependencies. The system cannot find the file specified. The below is my code, can anyone faced this issue?

Tridion UGC Anonymous Users saved to UGC Database with ID null

*爱你&永不变心* 提交于 2019-12-11 04:55:27
问题 NOTE Exact same issue as Tridion UGC comment shows author as null When posting comments from the presentation website users are saved with ID null. This causes the next comment to show as posted from the first user who commented and also has ID null. The cd core log file shows that the AnonymousPostClaimProcessor is using the tracking id . DEBUG ClaimStore - put: uri=taf:claim:contentdelivery:webservice:user, value=tridion_2151731a-97d2-4a90-800f-bee20074b970 TRACE ODataInputParser - Parsing

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

Extending the current publishing/unpublishing screen

痞子三分冷 提交于 2019-12-10 17:38:40
问题 I have a requirement where I need to show a an alert/popup when an editor clicks on the Unpublish menu command. I will show the popup with an Yes/No Button, if Yes is selected we proceed and show the existing UnPub screen. If No is selected No activity happens and the user return back to the screen. How this can be achieved ? Can we extend/override the existing CME command's without creating a new Command for ourselves? 回答1: I just learned how to do this yesterday (Thank to Nuno Linhares) -