Umbraco is an open source .NET based content management system. It is released under the MIT license and powers a number of high profile sites, most notably Microsoft's own www.asp.net website.

learn more… | top users | synonyms

3
votes
2answers
1k views

Calling node.NiceUrl gives me # in Umbraco

Doing a project in Umbraco, and i've encountered problems in one case that when calling node.NiceUrl I get # as the result. What is weird though is that if i debug it somehow it resolves into the ...
3
votes
1answer
73 views

Should I store my data in Umbraco or a bespoke data layer

I'm having a crisis here before starting a (potentially) large project, I use Umbraco alot and because it's so diverse you can pretty much do anything you like with it, but my question is whether to ...
3
votes
1answer
191 views

Duplicating content on save for a multilingual umbraco site

[Edit] I have actually been allowed to use the doc names, which makes it much easier but I still think it would be interesting to find out if it is possible. I have to set a trigger to duplicate ...
3
votes
2answers
227 views

How to setup encoding for Bosnian (or Croatian or Slovenian) characters set using MySql and Umbraco 4.7.1

I am having problem displaying characters š and ž on frontend when I insert it as textstring data type inside Umbraco 4.7.1. Umbraco uses MySql database. I noticed that this is not the problem when I ...
3
votes
1answer
343 views

Extension for Umbraco /base

I am writing a RestExtension for /base. I have the following code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using umbraco.presentation.umbracobase; using ...
3
votes
1answer
322 views

How to check cookie in umbraco?

I want to check cookie in umbraco , is it possible or not ? If yes then how can i set cookie in template and can retrive cookie's value in template or xslt?
3
votes
1answer
2k views

How to set up Umbraco to default in a subpage?

I have this question about umbraco structuring and I can't find the answer anywhere. Typically in Umbraco it will default the root site to the first node of the tree. so if we have Home page 1 ...
3
votes
2answers
2k views

XSL if test display content when it has values

I have an if test where I want to display the content of the 'year' property with a comma when the property has values. This isn't working so I would be thankful for suggestions. <xsl:if ...
3
votes
1answer
1k views

Umbraco: How many nodes are too many?

Is it possible to have too many nodes in the umbraco cms? I'm currently taking over development of an umbraco site which will have user-generated content and a commenting system. If I were to store ...
3
votes
1answer
199 views

Is there any sense or organisation to the Umbraco .Net namespaces?

Umbraco has a variety of namespaces, however, they seem ill-organised and complicated. For instance, what's the difference between umbraco.businesslogic and umbraco.cms.businesslogic Is there ...
3
votes
1answer
1k views

How can I create a user for ASP.Net/Umbraco SQL Membership from iPhone and WCF?

So I have been struggling for days now, trying to simply create a new user with a WCF Service using Umbraco's Membership Provider. Can someone tell me if I'm out of my mind, if this is impossible to ...
3
votes
4answers
126 views

My site is taking a very long time to load, what can I do to investigate the issue?

my site is ASP.NET,C#, .net 4, using Umbraco 4, IIS 7.5 it has been working great for months but suddenly its taking ages just to load a single page and mostly not loading at all. The DB looks ...
3
votes
1answer
783 views

Implement Umbraco membership provider in another site

I've currently got an Umbraco 4.7.1 site with membership setup which is working great. Now I want to use the umbraco membership provider in another non-umbraco site.. I have a customer that has some ...
3
votes
1answer
750 views

Database connection initialisation failed in Umbraco

I keep getting this issue are there any error logs I can look at to see what is happening?
3
votes
1answer
442 views

Working with Umbraco Node factory in ajax webservice

I created an .asmx web service which i call via Ajax. i used the following code Node iLike = Node.GetCurrent().Parent as Node; Property Subject = iLike.GetProperty("emailToAdminSubject") as ...
3
votes
2answers
299 views

Recycling app pool each time a change has been made

I've made a multi lingual site which contains 4 domains on the same site and thus, also 4 different languages and site trees. However, each time I need to publich a new change to a site or otherwise ...
3
votes
1answer
1k views

Umbraco publish date in xslt

Various Umbraco references point out that Umbraco only stores the node createDate and updateDate in umbraco.config (when you want to code up xslt transformations of Umbraco content). But I need to ...
3
votes
2answers
196 views

SQL Server: get top xx blog record from Umbraco by parameter

Following SQL get what I need: SELECT TOP (50) [nodeId] FROM [dbo].[cmsContentXml] WHERE [xml] like '%creatorID="29"%' AND [xml] like '%nodeType="1086"%' ORDER BY [nodeId] DESC I need ...
3
votes
1answer
41 views

handling media files in the URL

Based on a certain condition I m redirecting user to login page and specifying the return url as below context.Response.Redirect("~/Login.aspx?retUrl=" + ...
3
votes
1answer
212 views

How do you validate a datatype in umbraco?

I've created a custom data type in umbraco and I would like to check the value before it is saved and provide error messages if it is not ok. How do you enforce validation rules on a data type?
3
votes
1answer
319 views

Umbraco TinyMCE - not showing absolute URLs in Insert/Update link

this has been driving me crazy for a few hours, I managed to fix it on my local development machine and of course when I put it to live it's not working. Here is what I did in my Umbraco set up: in ...
3
votes
1answer
377 views

How to get TabPage on which a user control data type resides

I'm building a custom data type using the user control wrappper method. Within it I am adding the existing TinyMCE data type. The problem is that I need to find a way to dynamically get a hold of the ...
3
votes
2answers
227 views

Umbraco 5: site search

Is there a viable way to search an Umbraco 5 site? I've read a lot on XLST search, but nothing using MVC3. It also seems that Examine is coming a little bit buggy, as even the backoffice has lost the ...
3
votes
2answers
340 views

Testing image crops existence with Razor in Umbraco

I have created some Razor code to output images onto a page if the exist. It is detailed below and contains some simple checks to prevent rendering a blank list item. The site has gone live and works ...
3
votes
1answer
249 views

t-sql Tree Join to Values to get a Sum of childless nodes limited to latest data

Looking to sum in SQL (MS 2008 r2) 2 relatively simple tables, I'm struggling though to find a way to make it work, almost there but I'd really appreciate some help from a SQL expert please :) I ...
3
votes
1answer
331 views

Umbraco 301 redirect with a twist

I have installed uComponents and successfully use the umbraco301MovedPermanently property on a page to redirect the old urls to the shiny new umbraco installation. My problem is, it does not work ...
3
votes
3answers
2k views

Get Properties from Member in Umbraco programmatically

I thought this would be really simple but .. We've create a user and a member type with various properties When we try to access the properties via the member object we got nothing. //Member m is ...
2
votes
4answers
406 views

Has Microsoft ever developed a CMS?

I am going to give a talk about Umbraco at the Belgium's Microsoft Innovation Center. While preparing my speech I was wondering if Microsoft had ever developed its own CMS. Orchard is still in ...
2
votes
1answer
1k views

Why can I not create a node of a specific Document Type in Umbraco 4?

How do I get an existing Document Type to show up in the Create dialogue of Umbraco 4. I installed the BlogForUmbraco4_1.0.0 package, which I realize tries to install as the primary site, but it ...
2
votes
3answers
3k views

Umbraco 4.7.0 Macro not rendering when inserted via Richtext editor

I am using umbraco v4.7.0. I have created a Macro for a Usercontrol.ascx and adding it the usual way, and ticking the option "Use in editor". It renders fine in the RTE, but then when viewing the ...
2
votes
2answers
132 views

Sorting nodes in XLST

This code selects the nodes, I want to work on...: <xsl:variable name="rootTextpageNode" select="$currentPage/ancestor-or-self::node [@level = 2 and @nodeTypeAlias = ...
2
votes
5answers
413 views

When not to use prebuilt CMS?

Is there any case that creating your own CMS for a specialized website more advantageous than using a prebuilt CMS such as dotnetnuke or umbraco? Can anyone site a project when they had to create a ...
2
votes
4answers
1k views

Method not found on runtime

I have one asp.net c# project trying to access methods in a class in another project, its working fine for half the methods in the class, but the other half (Methods I've most recently added, compile ...
2
votes
2answers
287 views

Umbraco 4.11 MVC Mode - Children Url?

What is the correct way to obtain the URLs of children of the current node while using Umbraco 4.11 in MVC mode? This is what I tried and it keeps returning a blank URL: @if ...
2
votes
2answers
722 views

How to get current member in a Razor macro

I have asked this question on the Our Umbraco forums, however I wanted to also increase my chances of getting a solution by posting the same question here. The issue I have is that, inside a Razor ...
2
votes
2answers
1k views

Umbraco - Finding Root Node in C#

I'm working on a backend module, so Node.GetCurrent() is not an option. I need to find a way to call something like Node currentNode = new Node(parentNodeId); and get the root node of the site. I've ...
2
votes
4answers
2k views

Returning Json instead of XML with Umbraco Base

I have a .NET method that adds a new member to my DB. It does this through an AJAX request. I have this working correctly, however I am having problems returning the correct response message so I can ...
2
votes
4answers
342 views

@item.BodyText in not raw format in MVC3

When I am using @item.BodyText I am getting the raw html output - with html tags that are in it as strings. It looks like that: <p>State of Louisiana for state funded&nbsp; dispensing ...
2
votes
2answers
1k views

Book recommendations for Umbraco

I am seriously looking at adopting Umbraco to host several small business web portals. I have played with Umbraco some time ago, but I'd rather get a basic, exploratory prototype up and running with ...
2
votes
3answers
180 views

XSLT: Get node where one certain value is present

I have the following XML: <data> <page id="1118"> <itms> <values> <value>1104</value> </values> ...
2
votes
6answers
2k views

CMS similar to Umbraco but in PHP?

Is there a PHP CMS that works the same way as the .NET CMS Umbraco? Ie. All data output comes as XML and is transformed with xslt. And you as a developer have more or less total freedom to create any ...
2
votes
2answers
170 views

Page redirect without changing the URL-Umbraco | C#

I have two templates in Umbraco. One for desktop and another for mobile. I have a small script which detects the user agent of the request and redirects the user accordingly. If the request is made ...
2
votes
1answer
240 views

persian-date-picker in Umbraco(cms of asp.net)

i need to add a persian (shamsi) date time picker in my website and I have already asked my problem in this link. And -codegecko wrote a true answer for me. -codegecko answer's: You can create new ...
2
votes
3answers
1k views

Custom form in Umbraco limitations?

I am busy learning about Umbraco but I don't see anything on the internet that tells me if Umbraco will allow me to create a custom ASP.NET form using C# code connecting to a SQL Server Database. ...
2
votes
1answer
1k views

Does Orchard CMS support mobile rendering?

I am looking to make a decision between Umbraco and Orchard CMS. One feature I like in Umbraco is the ability to render to a mobile device such as an iPhone or Android device. Does Orchard CMS have ...
2
votes
1answer
274 views

MVC DLL version 2.0.0.0: where can I get it from?

this is driving me to insanity no thanks to Recaptcha! Does anyone know where I can get a copy of the MVC dll version 2.0.0.0 to get this crappy Recaptcha working? I have tried all the previous ...
2
votes
1answer
965 views

Umbraco Nested Masterpages

I'm trying to create nested master pages in Umbraco 4.7.1 and I'm having issues. I've got a masterpage doctype and an index doctype which is a child of masterpage. Then I have a separate doctype ...
2
votes
3answers
1k views

Umbraco v5 dates?

we are starting a new project and I would like to know if V5 will be release soon, cause you know that MVC is way better than webform so I would prefer wait a little bit more and work with MVC than ...
2
votes
1answer
3k views

selecting top X items from Xml using XSLT in Umbraco

I have an Umbraco based blog and I want to display the top 10 posts in each category on the front page of my blog. Category is just another property on my Document Type. Umbraco basically stores ...
2
votes
3answers
1k views

urlrewritING.net query character in virtual url causing redirect loop

I've got a project where we're re-building a site for a client, the new site is using umbraco on the .net platform. the old site was cold fusion. Umbraco utilises the urlrewriting.net library so I ...

1 2 3 4 5 28