Re: Preexecute JQuery

2018-02-14 Thread Hilmar Bunjes
As Mario said you could use JScript via ASP. However, I do not recommend that. In most cases you would use a scripting language like PHP and get the image width via attribute. Then you can write it like that: " src="<%img_image%>"> In the example above you should make sure that img_image is se

Re: Looping Through Children Elements

2017-02-07 Thread Hilmar Bunjes
Heather, you can iterate through multilinks list list and containers like this: <%!! Store:myItem.Id !!%>, <%!! Store:myItem.GetUrl() !!%>, <%!! Store:myItem.Headline !!%> HTH, Hilmar On Monday, February 6, 2017 at 9:15:51 PM UTC+1, Heather Napoleone wrote: > > I have a page with a

Re: How to for-each through XML results [Delivery Server] [Dynament]

2017-01-04 Thread Hilmar Bunjes
Walter, in the for-each attribute you are missing the rde-id "10", so you say rde-id but there is no reference to which one exactly. The attribute should be something like "rde-id:10:attributeValues.item". If possible I would use xml/xslt or xpath to access the values. Best, Hilmar Am Mittwoc

Re: Run custom code after page has been published

2016-07-29 Thread Hilmar Bunjes
In addition to what Gavon wrote: You can also call a URL after publication which triggers your code (e.g. ASP.NET MVC application). This is especially useful if you cannot run a service which monitors a directory. We do this quite often in projects and it works great. Best, Hilmar Am Freitag,

Re: RQL to list all publication target

2016-05-30 Thread Hilmar Bunjes
Hi, it is: See e.g. line 609 in https://github.com/erminas/smartapi/blob/master/SmartAPI/erminas.SmartAPI/CMS/Project/IProject.cs Best, Hilmar Am Montag, 30. Mai 2016 12:47:10 UTC+2 schrieb Dennis de Lara: > > Hello. > > Does anyone knows the RQL to list all Publication Targets? > > I couldn't

Re: Clearing Session Attributes

2016-03-05 Thread Hilmar Bunjes
Hi Christian, I just tried this at a DS Build 11.2.2.320 and it all worked as expected. I have three files: test1.html: Output: test2.html: Output before: Output after: test3.html: Output: The output is (I called them in this order): test1.html: hallo test2.html: hallo t

Re: RedDot CMS V11.2.2 SmartEdit > Right‑click: Shortcut Menu not working for some pages

2016-02-29 Thread Hilmar Bunjes
splayed the usual normal web page righ-click short menu, this > happening in IE and Chrome. > > Before the upgrade, which was on Red Dot V11.1, all pages are fine in the > older IE verison. > > thanks for the reply. > > > > On Friday, February 26, 2016 at 11:10:20 PM UTC+8

Re: RedDot CMS V11.2.2 SmartEdit > Right‑click: Shortcut Menu not working for some pages

2016-02-26 Thread Hilmar Bunjes
Hi, do you have any JS errors on those pages? This could be a reason for the non-working context menu. Does it only happen in IE11 or also in other browsers. Best, Hilmar Am Freitag, 26. Februar 2016 08:23:22 UTC+1 schrieb Victor: > > We upgrade the CMS from V11.1 to V11.2.2 (sevice Pack 2), in

Copying content elements with language specific default values

2015-10-14 Thread Hilmar Bunjes
Hi all, I'm not sure if this is a new bug or "expected behavior" for some time now. I copy elements in SmartTree from a content class to another content class expecting that all element settings are transferred as well. However, the default value for all languages is overwritten by the current l

Re: Can't finish tasks

2015-10-05 Thread Hilmar Bunjes
Mario, this is a known issue (WSGMS-15076) and is resolved in Hot Fix 8 for Web Site Management Server 11.2 Service Pack 1 or by using another browser (Chrome, Firefox, Safari). Best, Hilmar You need Am Montag, 5. Oktober 2015 11:31:59 UTC+2 schrieb Mario: > > Hi, > I use Management Server

Cleaner Job deletes too many files

2015-09-04 Thread Hilmar Bunjes
Hi, I'm working in a project where after each publication there is a cleaner job that executes this RQL: The cleaner job works pretty much great. All pages from the Delivery Server are deleted that need to be removed (e.g. deleted or unlinked). There have been some adjustments so that every

SmartAPI 1.0.5 with NuGet Package

2015-08-12 Thread Hilmar Bunjes
- Improved support of workflows in version >=11.2 More about this release: http://www.smartapi.de/en/2015/07/release-of-version-1-0-5-0-2/ I hope you enjoy the new version and the improvements with NuGet. Best, Hilmar Bunjes http://www.erminas.de -- You received this message because you

Re: RQL create and link page from a page definition - subpages not visble in page edit

2015-07-12 Thread Hilmar Bunjes
Hi, Do the pages in SmartTree have headlines? A page without headline kind of doesn't exist in the CMS and I can imagine you need the headline set during page creation. Best Hilmar Bunjes Sent via mobile phone Am Freitag, 10. Juli 2015 17:55:33 UTC+2 schrieb Marcin Dzięgielewski: &g

Re: Digest for reddot-cms-users@googlegroups.com - 1 update in 1 topic

2015-07-11 Thread Hilmar Bunjes
Hi, Do the pages in SmartTree have headlines? A page without headline kind of doesn't exist in the CMS and I can imagine you need the headline set during page creation. Best Hilmar Bunjes Sent via mobile phone Am 11.07.2015 um 16:44 schrieb "reddot-cms-users@googlegroups.com<

Re: Comparing a string length

2015-06-16 Thread Hilmar Bunjes
of the string. Neil, if it *HAS* to be done in a render tag, do it Hilmar’s way (assuming you haven’t already). /R From: reddot-cms-users@googlegroups.com<mailto:reddot-cms-users@googlegroups.com> [mailto:reddot-cms-users@googlegroups.com] On Behalf Of Hilmar Bunjes Sent: Tuesd

Re: Comparing a string length

2015-06-16 Thread Hilmar Bunjes
he format of your rendertag. > > > > > http://simplyreddot.blogspot.com/2014/05/rendertag-to-escape-double-quote-and.html > > > > Try this instead. > > > > <%!! Escape:HtmlEncode(<%txt_body%>).Length !!%> > > > On Monday, June 15, 20

Re: Comparing a string length

2015-06-15 Thread Hilmar Bunjes
Hi Neil, if you write this: Escape:Text(txt_content).Length you get the length of the String "txt_content" which should result in 11 characters. However, I'm not sure why you get "Less then 10" (which is in fact "Less than or equal 10"). A slightly better solution for this problem could be to

Re: Comparing a string length

2015-06-14 Thread Hilmar Bunjes
Hi Neil, which version are you using? In 11.0.1.642 it works just as you wrote (with gt or >) without the "Int:" Mark suggested. However, in some version it could be required to add the "Int:" to trigger the CMS to handle the return value of the Length property is integer. Best, Hilmar Am Fr

Re: Source control / release management

2015-06-02 Thread Hilmar Bunjes
Hi Dave, the templates in the CMS as well as the pages have an internal versioning in the CMS itself. This is most often used in development. There is no built in moving changes from one system to another but there are external tools like http://www.erminas.de/en/web/products/cms-sync-tool.html

Re: "Loading message" in SmartEdit

2015-02-25 Thread Hilmar Bunjes
orm on the page load there might be some room for improvement. Best, Hilmar Bunjes erminas GmbH On Tuesday, February 24, 2015 at 11:03:23 AM UTC+1, Koen wrote: > > We get some slow response time for a few tasks in SmartEdit. Sometimes the > user doesn't know if they activated the tas

Re: SmartAPI - System.Net.WebException: The remote server returned an error: (413) Request Entity Too Large

2015-02-10 Thread Hilmar Bunjes
Hi Bart, could you try in MS\Web\WebServuce\web.config to set the maxStringContentLength in the following place: to a higher value like "8388608" (8MB)? Best, Hilmar On Tuesday, February 10, 2015 at 3:12:07 PM UTC+1, Bart wrote: > > Hi, > > I'm having some issues when I try to copy a text e

Re: Performance: RenderTag or element?

2015-01-26 Thread Hilmar Bunjes
Hi, due to the RenderTag overhead I always recommend to use elements whereever possible. The elements are the native way to get information for a single page where RenderTags are already a workaround. Remember: Using RenderTags can result in RQL executed on the server. My suggestion for usage:

Re: jMeter and Management Server 11

2015-01-25 Thread Hilmar Bunjes
hrieb Dorin Suma mailto:suma.do...@gmail.com>>: Dear Hilmar, If I would like to run a scripted Telerik Job every 10 minutes, I suppose I need the licensed product. It's a fact that I should give Telerik a try. Thanks, Dorin Am 23.01.2015 um 15:59 schrieb Hilmar Bunjes mailto:hilmar.b

Re: jMeter and Management Server 11

2015-01-23 Thread Hilmar Bunjes
. Thank you very much for your help. Best Regards, Dorin Viele Grüße Dorin Suma -- Dorin Suma | Birkenbusch 32 | D-53757 Sankt Augustin | +491788178580 | Key: D65C92F2 2015-01-23 14:17 GMT+01:00 Hilmar Bunjes <mailto:hilmar.bun...@erminas.de>>: Hi Dorin, just for my interes

Re: jMeter and Management Server 11

2015-01-23 Thread Hilmar Bunjes
2015 16:10:23 UTC+1 schrieb Hilmar Bunjes: >> >> Hi, >> if you are not required to use jMeter I suggest to try Fiddler for this >> purpose. Especially, if you do not need to configure different users, I >> found it very easy to build testcases for the CMS with it. >>

Re: Unable to access the methods envolved in Reddot webservice.

2015-01-23 Thread Hilmar Bunjes
save the content and publish it automatically. > > Which helped us to reduce half of the time we used to spent on the same > activity. > > > > Thanks for everyones help. > > > > Regards > > Samridhi Dubey > > > On Wednesday, January 7, 2015 at 2:58:

Re: jMeter and Management Server 11

2015-01-07 Thread Hilmar Bunjes
Hi, if you are not required to use jMeter I suggest to try Fiddler for this purpose. Especially, if you do not need to configure different users, I found it very easy to build testcases for the CMS with it. Best, Hilmar Am Mittwoch, 7. Januar 2015 09:11:28 UTC+1 schrieb Dorin: > > Hi, > > we wo

Re: Unable to access the methods envolved in Reddot webservice.

2015-01-07 Thread Hilmar Bunjes
.01.2015 um 17:40 schrieb Jian Huang: Hilmar, not a problem. The library is an excellent addition to the community. Is Sami sending the RQL correctly? I noticed she did not include ... in the RQL string. -Jian On Tuesday, January 6, 2015 10:15:40 AM UTC-5, Hilmar Bunjes wrote: Hi Sami

Re: Unable to access the methods envolved in Reddot webservice.

2015-01-06 Thread Hilmar Bunjes
Hi Sami, I've just seen this discussion (and thanks to Jian for the very positive statement about the SmartAPI :-) ). I'm wondering if the Page Preview looks correctly if you clear the page cache before viewing the page. In the SmartAPI support Google group there was another question from Abhis

Re: Get Page's Parent's Headline only if element has specific value

2015-01-06 Thread Hilmar Bunjes
Hi Nathan, sure, you can get the value of the option element "opt_nav" and depending on that value (either by custom coding of using RenderTag-if statements) you fetch the name of the page above via RenderTag navigating upwards by using "MainLink.OwnerPage" (please be aware that this is not supp

SmartAPI 1.0.4.0 released - New features available

2014-11-20 Thread Hilmar Bunjes
pi-release-1-0-4-0/ Source Code at: https://github.com/erminas/smartapi We hope you enjoy the new version and it helps you improving your projects! Hilmar Bunjes erminas http://www.erminas.de -- You received this message because you are subscribed to the Google Groups "RedDot CMS U

Re: Show only one 2nd tier's subs on page

2014-09-24 Thread Hilmar Bunjes
Hi Nathan, if the structure is always as shown you can create a navigation area with: Level 1-2 (on) : only in the template Level 3 (on+off): Show Link and Name of page (you could check if CurrentIndex.Id == LastIndex.Id if you want to highlight C2 in your example) If the structure is different

Re: pdf and print variants not publishing

2014-09-13 Thread Hilmar Bunjes
Hi Joe, I know what you mean. A lot of our customers and other companies I know stopped sharing content classes from a master to many different projects. There are pretty often problems that changes of (especially) content elements are not synchronizes correctly. Sometimes, all of the projects

Re: Navigation Look Ahead

2014-09-10 Thread Hilmar Bunjes
Hi Rob, I think you are looking for this Rendertag; ... Best, Hilmar Am Dienstag, 9. September 2014 18:22:26 UTC+2 schrieb Rob Wagner: > > We have an option element on all foundation pages which allows the > contributor to determine whether that page should appear in the navigation

Re: Using Cookie Data in Active Templates

2014-08-31 Thread Hilmar Bunjes
Hi Fabian, is it possible to get access to the Cookie Data in Active Templates using > PHP? > > I want to use a PHP session throughout a SmartEdit Session, i.e. the user > should use the same session when browsing through the site in SmartEdit. > For that purpose i call a in a PreExecute block

Re: SmartAPI new release 1.0.3

2014-07-02 Thread Hilmar Bunjes
Joel, The SmartAPI uses RQL via the official WebServices, so both MS SQL and Oracle installations are supported. We thought about implementing some features in SQL directly but then we loose the possibility to access the data from places where the DB connection is blocked. Maybe in a future rel

SmartAPI new release 1.0.3

2014-07-02 Thread Hilmar Bunjes
instead of a IPageElement - You can now load a page by guid via Project.Pages.GetByGuid Bugfixes: - Support for whitespaces in values of numerical standard fields, just like RedDot - IStandardFieldEmail.Value no longer throws an exception on access Thanks, Hilmar Bunjes http://www.

Re: Moving objects between Management servers (dev->QA->PROD)

2014-02-19 Thread Hilmar Bunjes
tails) for any further questions or a demo. Best, Hilmar Bunjes Am Montag, 17. Februar 2014 21:38:25 UTC+1 schrieb Anil Mamidi: > > Hello, > > We have WSM Management servers(10.1) across the landscape, We do most of > the configurations/development (content classes, auth packages.

SmartAPI release 1.0 - .NET RQL library for Open Text WSM Management Server

2013-09-27 Thread Hilmar Bunjes
m/smartapi>mailing list, on the SmartAPI Website <http://www.smartapi.de>, and also directly<http://www.erminas.de/en/contact-us.html>. Next to our workshops, web sessions, and tutorials we also offer custom development and plugins using the SmartAPI. Thank you, Hilma

News list items and related pages

2013-09-26 Thread Hilmar Bunjes
Hi, in a Project we have the following page structure: News Page 2013 - con_content (Target Container) - News List - list_newsitems > Target Container above - News Item 1 - News Item 2 Now we want to publish the "News Item 1" including the News List where this Nnws item is l

Re: trying to get clean URLs for list items

2013-07-24 Thread Hilmar Bunjes
k if we published out everything without an > extension but I am prepared to modify this file and will test this > tomorrow. > Many thanks for responding, > > Sanjeev > > On Tuesday, 23 July 2013 19:25:34 UTC+1, Hilmar Bunjes wrote: >> >> Hi Sanjeev, >> so

Re: trying to get clean URLs for list items

2013-07-23 Thread Hilmar Bunjes
g settings). As any of These suitable for you? Best, Hilmar Bunjes erminas GbR http://www.erminas.com > Hi Hilmar, > > Many thanks for getting back to me. Yes we have rewrite rules on our > server to remove the .htm for publishe

Re: trying to get clean URLs for list items

2013-07-16 Thread Hilmar Bunjes
lowing (use .NET "Replace" in the RenderTag instead of preexecute): < foreach itemname="childPages" object="Context:Indexes.GetIndexByPageId(Guid:021743AA8509473C9615A4BA5C2BAC32).SubIndexes" countername=&q

RC2 of SmartAPI released - Thanks to the community!

2013-06-07 Thread Hilmar Bunjes
feature requests and bug reports. We are very close to finish the version 1.0 development. Currently we are improving to handle the Content Class elements and hope to be finished with this step by the end of next week. Thanks! Hilmar Bunjes erminas GbR http://www.erminas.de P.S.: To everyone

Re: Handling retina images

2013-05-02 Thread Hilmar Bunjes
Does this sound it should work at template level? On Tuesday, 30 April 2013 15:59:20 UTC+1, Hilmar Bunjes wrote: Hi Neil, At present, we use 800x450 images for

Re: Handling retina images

2013-04-30 Thread Hilmar Bunjes
you will have two images in your page, the large and the small one (the small one with "rdax_..." in the name). The same procedure is also done with thumbnails for images that show the large one by clicking on it. Best, Hilmar Bunjes http://www.erminas.de -- You received this message

Re: Get Image in Navigation Template

2013-03-20 Thread Hilmar Bunjes
to use the more performant way. Best, Hilmar Am 20.03.2013 19:40, schrieb Mario Brandt: Hi Hilmar, so far using ...ByName() made no speed difference for me. If there was an increasement, then only in ms. Cheers Mario Am Mittwoch, 13. März 2013 schrieb Hilmar Bunjes : And don't fo

Re: Get Image in Navigation Template

2013-03-13 Thread Hilmar Bunjes
And don't forget to use GetElementByName() instead of Elements.GetElement() if you want to improve Performance in your projects (at least of you use a current V10 or V11 system, was introduced in V10 SP1 HF1). Best, Hilmar Am Mittwoch, 13. März 2013 09:44:37 UTC+1 schrieb Mario: > Thanks ,

Re: Getting login information in Custom Render Tag

2013-02-27 Thread Hilmar Bunjes
Wolfgang, I was wondering why the context object has the session information but the values are not set. Using the info elements for the session information is possible but using the RenderTags with that information doesn't really help with clean templates :-( unfortunately, not all information

Re: Pages in RedDot

2013-02-27 Thread Hilmar Bunjes
greatly appreciated. On Wed, Feb 27, 2013 at 9:49 AM, Hilmar Bunjes mailto:hilmar.bun...@erminas.de>> wrote: Hi Damon, maybe this overview gives some good examples: http://www.jquery4u.com/plugins/10-jquery-pagination-plugins/ I really like this one: https://github.com/

Re: Pages in RedDot

2013-02-27 Thread Hilmar Bunjes
Hi Damon, maybe this overview gives some good examples: http://www.jquery4u.com/plugins/10-jquery-pagination-plugins/ I really like this one: https://github.com/wesnolte/Pajinate/wiki You can put all your elements into one list and call pajinate on that list. Depending on your requirements you

Getting login information in Custom Render Tag

2013-02-25 Thread Hilmar Bunjes
Hi, has anybody been successful in getting the login information (login guid and session key) in the context session in a custom Render Tag in CMS Build 11.0.1.536? Everything I have tested always lead to Guid.Empty as login guid and null as session key. Has anyone else experienced this bef

Re: Sequence contains no matching element - users can't log in

2013-02-21 Thread Hilmar Bunjes
Markus, is the user in any group? We had some issues with users being in groups with assigned SmartEdit start pages. Those users could not login to a project. First, we had to remove the group, let the user login and then set the group assignment again. Another try would be to check if the sam

Re: Warning: SmartEdit start pages for groups not working correctly in CMS 11 (V 11.0.1.536 )

2013-02-20 Thread Hilmar Bunjes
Hi, it seems that we can reproduce this issue in Version 10 as well. Now we are wondering if no one uses this feature because at least in version 10 somebody should have found it. In V10 you will see "Database error occured" in the db, in V11 you will see "Validate: Illegal SqlLanguageId" in

Warning: SmartEdit start pages for groups not working correctly in CMS 11 (V 11.0.1.536 )

2013-02-20 Thread Hilmar Bunjes
Hi all, just a warning for all of you migrating to CMS 11 and using SmartEdit start pages set for groups: If you create a new user and assign him to the project and group (with a SmartEdit start page set) before his first login, the user will *not* be able to even login into the project. We

Re: Cookies with "=" (equal sign) in value don't work in DS 11?

2013-02-19 Thread Hilmar Bunjes
ian On Tuesday, February 19, 2013 11:37:09 AM UTC-5, Hilmar Bunjes wrote: Hi Jian, I am using version 11.0.1.536. The bug is the way the PreviewHandler handles the get parameters. There is much space to improve the behavior ;-) Just add a "&test" to the PreviewHan

Re: Cookies with "=" (equal sign) in value don't work in DS 11?

2013-02-19 Thread Hilmar Bunjes
UTC+1 schrieb Jian Huang: > Hi Hilmar, > > What version of Management Server are you using with the get parameter? > > There was a bug with GET parameter in RDExecute and Preexection not able > to get GET parameter. > > WSGMS-3889 > > Fixed in 10.1 > >

Re: Cookies with "=" (equal sign) in value don't work in DS 11?

2013-02-19 Thread Hilmar Bunjes
Hi, just confirmed by Open Text: This is a bug in the Delivery Server :-( Best Hilmar -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to reddot-cms-users+unsu

Cookies with "=" (equal sign) in value don't work in DS 11?

2013-02-19 Thread Hilmar Bunjes
Hi, we've just run into a problem with the cookie handling in the current Delivery Server 11. One of the cookies has a value containing an equal sign (=) which seems not to be handled correctly. If we output the cookie value by then we only get the part before the equal sign (e.g. test inste

Re: Setting up a new V.11 on Windows Server 2008 R2

2013-01-31 Thread Hilmar Bunjes
> I had the same problem of losing user GUIDS when moving RedDot to new > servers - especially an issue if users have thing s saved in draft as they > become set to 'unknown user'. > To get around the problem and assuming that the user names from LDAP are > unique I wrote some code to: > > Ex

Re: Applying CSS classes based on page ID

2013-01-31 Thread Hilmar Bunjes
Hi, > Elements.GetElement is known to cause performance and memory issues on the > MS system when used too often. It is best to avoid it. > > Instead of using > <%!! Context:CurrentPage.Elements.GetElement(opt_Class).GetHtml() !!%> > > You can simply use the placeholder as it is > <%opt_Class%>

Re: Race condition when deleting pages in Recycle Bin

2013-01-24 Thread Hilmar Bunjes
Tim, > > >> Not on this specific action but I've seen other developers find some RQLs >> trigger asynchronous functions. I can't recall if you'll have access to >> async queue in a programmatic means but if this is one of these without >> doing timeouts and retries, you'd need to interrogat

Re: Race condition when deleting pages in Recycle Bin

2013-01-23 Thread Hilmar Bunjes
Tim, nice to see you again :-) > Not on this specific action but I've seen other developers find some RQLs > trigger asynchronous functions. I can't recall if you'll have access to > async queue in a programmatic means but if this is one of these without > doing timeouts and retries, you'd need

Re: Setting up a new V.11 on Windows Server 2008 R2

2013-01-23 Thread Hilmar Bunjes
Hi, > Our projects are currently running on RedDot 10.1.2 but we need to move to > a new server. Therefore, we need to start from scratch, and also wish to > upgrade to V. 11 (plus latest hotfix). Our plan is to install V.11 on the > new server and then to “import” our exported projects from

Installation Management Server V11 on German Windows Server

2013-01-23 Thread Hilmar Bunjes
Hi, one of our customers wanted to have the Management Server V11 SP1 installed on a German Windows Server 2008 R2. They did a lot of tries without success. We had a look at the server today and tested the installation but it breaks with a failure in the Configuration Utility. We get the failure

Re: Complex publishing challange :)

2013-01-23 Thread Hilmar Bunjes
without some hardcore RQL or something like that. It's removing the file extensions and rendering the URLs exactly as needed but its also removing the file extensions from the file names themselves. Which is logical but not what we need... Sent from my iPhone On 22 Jan 2013, at 16:56, H

Re: Complex publishing challange :)

2013-01-22 Thread Hilmar Bunjes
Hi, > I'll give it a shot! :) thanks! > Seems like . is gonna be my favourite punctuation mark now! > > yeah, I think unfortunately they haven't set the text color to red on those input fields ;-) Best, Hilmar -- You received this message because you are subscribed to the Google Groups

Re: Complex publishing challange :)

2013-01-22 Thread Hilmar Bunjes
Dan, > Ah, yes that's right! :) > Didn't think of that. > > Great it's working :-) > Now, can you think of a way tiger rid of the file name extensions in the > URL but keep them on the file names? > I looked for an option or setting that does it but canny find anything... > > Have you se

Re: Complex publishing challange :)

2013-01-22 Thread Hilmar Bunjes
Hi Daniel > I looked at that but it only works to change the name of the (virtual) > folder, not remove it. > I tried putting in just a space in the name but then the published URL > becomes "/ / /folder3/filename.htm" > And that is no good... > > You can write dots in there which means "stay

Re: Slow V11 Performance

2013-01-22 Thread Hilmar Bunjes
ng? Do the CMS logs show any error? Best, Hilmar Bunjes -- *http://www.smartapi.de* <http://www.smartapi.de/> - Open Source .NET RQL API for Open Text WSM Management Server -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group

Re: Complex publishing challange :)

2013-01-22 Thread Hilmar Bunjes
Dan, > We have come across some publishing needs in the new project I am working > on and I was hoping to get some advise/thoughts from the group. > > I need to be able to remove the file extension from the URLs that are > rendered inside pages by navigation manager and any other links such as

Re: WSM 10.1 - Update Production Server to 11.0

2013-01-22 Thread Hilmar Bunjes
Rich, > Tim, > > Thanks for the reply. > > When you say "new hardware" are you referring to a development/test > machine or replacement hardware? > The replacement hardware is not a possibility and as it turns out, get a > full testing environment setup is a bit of challenge. > Do many of your

Re: Reddot Upgradation from V9 to V11

2013-01-22 Thread Hilmar Bunjes
so copy the database and then upgrade the database from that installation. If you are using the Delivery Server: There are some changes on the SOAP communication between both servers so you should try full publications if they work without errors. Best, Hilmar Bunjes -- http://www.smartapi.

Re: Reddot Upgradation from V9 to V11

2013-01-03 Thread Hilmar Bunjes
Hi, good to hear that the migration went fine. However, I am wondering why you first installed V10.1 SP2. I think you could have saved a lot of time installing V11 directly. Best, Hilmar -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To

Race condition when deleting pages in Recycle Bin

2012-12-19 Thread Hilmar Bunjes
have experience with this behavior? Adding a default delay into that method or just try several times wouldn't be a good solution. Does anyone have an idea to really find out if a page is in the Recycle Bin and can be removed from there? Thanks, Hilmar Bunjes -- You received this message

Re: Reddot Upgradation from V9 to V11

2012-12-19 Thread Hilmar Bunjes
Hi, I totally agree with Gavin. We have successfully migrated a lot of projects this way: Export from CMS 7.5 or CMS 9 -> Import into MS 11 We never had problems during this export/import (only when publishing from MS11 to DS11 but there should be a hotfix by Friday). Best, Hilmar Bun

SmartAPI - .NET RQL library

2012-12-05 Thread Hilmar Bunjes
.com/forum/#!forum/smartapi We are happy about every feedback and usage of this library. Thanks, Hilmar Bunjes erminas GbR http://www.erminas.de -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To view this discussion on