Questions tagged [umbraco]

Umbraco is an open-source content management system platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure. Since version 4.5, the whole system has been available under an MIT License.

More information about Umbraco can be found on the main Umbraco website.

Community provided support and documentation can be found on our.umbraco.org.

Umbraco was first created in 2000 by Niels Hartvig and went open source in 2004. The current version is available for download on the Microsoft Web Platform Installer or directly from GitHub.

Development of Version 5, based on ASP.net MVC, was retired at the Umbraco developer conference 2012. Since then, efforts have gone into building on the more mature Version 4 and version 6, including integration of MVC, and also a rewrite of the core API. Version 7 comes with a new user interface.

It is in use on over 110,000 sites worldwide and has a strong developer community, including a number of certified partners across the globe.

The Umbraco HQ released Umbraco as a Service (Uaas) on a paid subscription plan in September, 2015.

4461 questions
1
vote
1 answer

Can I exclude a package from being automatically updated by NUGET?

In a project we have Umbraco 7.3.4 and it has a dependency for JSON.NET <= 6.0.8. When I'm trying to install other 3rd party packages which require JSON.NET >= 8.0.0, this forces Umbraco to automatically update to version 7.4, which I don't…
lekso
  • 1,731
  • 3
  • 24
  • 46
1
vote
1 answer

AngularJS SPA within Umbraco

I have an Umbraco 6.4 website, under which I am now trying to put an AngularJS 2 SPA. Umbraco: / Angular: /appname My problem is with the routing that is done by Umbraco. Since Umbraco handles all of the routing up to the root level, when the…
Shahzad
  • 473
  • 1
  • 5
  • 12
1
vote
3 answers

Multilingual website with distinct font types

I'm developing my website with Umbraco, and I need it to be multilingual with both english and chinese. To make my website multilingual with Umbraco I basically have the website cloned and then changing the contents, but keeping all the html and css…
1
vote
1 answer

Which types should I register with my IOC container for Umbraco ContentService to be instantiated?

One of the classes in my Umbraco project depends on IContentService. I'm trying to provide an IContentService to this class with an IOC container. Here is how I'm registering IContentService with my IOC…
glcheetham
  • 973
  • 8
  • 23
1
vote
2 answers

Sync database of umbraco in other environments

I have 3 environments for develop Umbraco (Dev - Staging - Production). How can i Sync 3 database of environments with what i develop, example: Document Type, some structure not data like Content.
Jun89
  • 61
  • 6
1
vote
1 answer

Learn Umbraco without any .net knowledge

I am starting to develop website using Umbraco CMS.Currently I only concentrated on programming HTML JavaScript and CSS for websites. After do researching and read few Umbraco sites, can I develop a Umbraco site without any .net knowledge? Is there…
ula
  • 43
  • 5
1
vote
1 answer

Url Decoding not working on Azure Web app

I seem to be having an issue with Url's being decoded on the stage site incorrectly. I have been looking around online but I can't seem to find anything on how to switch what decoding method is used by default. I can tell that the stage site is…
JBW
  • 43
  • 5
1
vote
2 answers

Umbraco MVC - how can I override globa Authorize filter in controller?

I would like to secure whole website so that every page except login page would require a user to be authenticated. In order to achieve this, I register Authorize filter at application startup: public static void…
lekso
  • 1,731
  • 3
  • 24
  • 46
1
vote
1 answer

Pass array of string from ajax to controller

I need to send an array of string from ajax to a controller and I need to return a file to download. I already look and everywhere says that the same solution, but I can not make it work. I have put a break on the controller, but never entered. The…
avechuche
  • 1,470
  • 6
  • 28
  • 45
1
vote
2 answers

Umbraco Database Connection Credentials

Where can I find the database credentials of my umbraco database? In web.config there is just the following line:
user2963570
  • 381
  • 6
  • 21
1
vote
2 answers

Umbraco not updating models and controllers

New to Umbraco and having a problem updating the code of an existing site (Umbraco version 7.2.8). Editing views works fine but when editing a model and/or controller the site does not change. The files I'm editing are located…
Brendon
  • 11
  • 2
1
vote
1 answer

How to show a wait message or loading image when loading data in Umbraco's Admin custom grid editor?

I created a custom grid plugin for the Umbraco Back Office (or Admin) but before I save the selected item I want to get the content by ID and save off a property. This get call takes a little longer than expected and since it is using a promise, I…
Paul
  • 155
  • 14
1
vote
1 answer

Get Umbraco tabs with C#

I tried to get available tabs in Umbraco (7.4.2) using the following code: DocumentType dt = new DocumentType(1051); //id of documenttype foreach (ContentType.Tab x in dt.getVirtualTabs) { ... } but ... DocumentType is obsolete and when I…
Snake Eyes
  • 16,287
  • 34
  • 113
  • 221
1
vote
2 answers

how to get Umbraco landing page to select a child page as default

I'm working on an umbraco site using the Fanoe starterkit, where I do not want the vistor to land on the landing page, but be redirected to the first grandchild page underneath that. So that in the example if the visitor clicks Parent or Child1,…
James Fleming
  • 2,589
  • 2
  • 25
  • 41
1
vote
1 answer

Umbraco - set document publicly accessible via web services

The question regarding the Umbraco CMS: I have to setup public access for particular document (a blog, for example) programmatically - using web services exposed by Umbraco (Document service, Member service, etc.). I suppose that services are…
borovikpe
  • 71
  • 1
  • 7