Questions tagged [umbraco6]

Umbraco 6 is the sixth stable release of Umbraco - an open source content management system (CMS) platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure. The open source backend is released under an MIT License while the UI is released under the Umbraco license.

Umbraco 6 is the sixth stable release of Umbraco - an open source content management system (CMS) platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure. The open source backend is released under an MIT License while the UI is released under the Umbraco license.

Version 6 of Umbraco includes integration of MVC, and also a rewrite of the core API.

More information about can be found on the main Umbraco website. Community provided support and documentation can be found on our.umbraco.org.

203 questions
7
votes
3 answers

How to turn off upgrade message in Umbraco backoffice

Is it possible to turn off the Umbraco upgrade message in the Umbraco backoffice. Don't necessarily want my users to see this.
wingyip
  • 3,465
  • 2
  • 34
  • 52
6
votes
2 answers

difference between Umbraco Surface controller and API controller

What is the difference between Surface and API controller for Umbraco? In standard MVC the general rule is: API is used for returning data, that can be consumed by multiple applications. Controller is used for returning views But I am bit unsure…
cpoDesign
  • 8,953
  • 13
  • 62
  • 106
5
votes
3 answers

No template exists to render the document at url '/'

In Umbraco, why does one get this error on a new deployment or machine that is pointing to an existing umbraco database and existing content? Page not found No template exists to render the document at url '/'. In addition, no template exists to…
David d C e Freitas
  • 7,481
  • 4
  • 58
  • 67
5
votes
1 answer

How to add a query string from surface controller in umbraco mvc in order to persist model values

How to add a query string from surface controller in umbraco mvc . This is my current code. Initially I wrote a code like public ActionResult Registration(RegisterModel model) { //Code to insert register details ViewBag.Success="Registered…
Jayaraj.K
  • 928
  • 9
  • 30
4
votes
1 answer

Umbraco 7 - Read Only property on Umbraco doc type

I want to have a property on a doc type that is read-only (Via the Umbraco UI), I want to populate its value after the umbraco event 'Saved' Its going to be a string, but I don't want a text box for the user to edit it. Any ideas
Ayo Adesina
  • 2,231
  • 3
  • 37
  • 71
4
votes
3 answers

ASP.NET MVC 4 Bundles giving 404 error

I want to add Bundles into an existing ASP.NET MVC 4 (.NET 4.5) website that uses: Umbraco 6.1.5 Microsoft ASP.NET Web Optimization Framework 1.1.3 (https://www.nuget.org/packages/microsoft.aspnet.web.optimization/) I attempted to follow these…
4
votes
2 answers

How to display an UI notification on some Umbraco event?

The code is self explanatory: public class TooLateValidator : IApplicationStartupHandler { public TooLateValidator() { ContentService.Saving += ContentService_Saving; } private void…
Juliano
  • 2,422
  • 21
  • 23
3
votes
1 answer

Getting value of UmbracoContext.Current as null

I am having the following code on my Home Controller / Viewmodel class public class HomeController : SurfaceController { .... [AllowAnonymous] public ActionResult LoginIn() { var user = new UserDetail() { FirstName = "FirstName",…
BJ Patel
  • 6,148
  • 11
  • 47
  • 81
3
votes
3 answers

how to give alternating class to alternating item of @foreach look in Razor + umbraco

I am using Umbraco 7.x I need some thing like following In list Item generated using for each. alternating item need to give respective class. So is their any was to determine even and odd row to give respective class name. As following is my code…
BJ Patel
  • 6,148
  • 11
  • 47
  • 81
3
votes
1 answer

TempData only displaying in child partial view, not parent partial view

I am creating an MVC mini app within an Umbraco web page. I've asked questions in the Umbraco user forums but so far have not gotten a solution. My Umbraco 6.1.6 site has a webForms MasterPage(s). On my content page is a rich text editor in which…
Connie DeCinko
  • 191
  • 1
  • 13
3
votes
0 answers

Cannot install UMBRACO CMS STARTER KITS - The installer can't connect to the repository

I am completely new to Umbraco & Webmatrix. I am using Windows 8 ,IIS version 8 & Webmatrix version 3. I tried installing Umbraco v6.1.6 but Step-5(Starter Kits) failed and gives me this error: Oops...the installer can't connect to the repository…
zeppelin
  • 451
  • 1
  • 4
  • 24
3
votes
1 answer

"The type IUnitOfWork does not have an accessible constructor" with Umbraco 6.1, UmbracoApiController (Web API) & Dependency Injection (Unity)

I am using Umbraco 6.1 with an UmbracoApiController which has a IUnitOfWork injected into it's constructor. To inject the dependencies, I am using Unity, like I have in the past with standard Web API projects. Normally, I set unity up in the…
JustinMoser
  • 545
  • 2
  • 6
  • 25
3
votes
2 answers

Opening the 'Insert image' modal in Umbraco 6.1.3 causes NullReferenceException

When I hit the 'Insert image' button in the rich text editor bar, the modal opens but then an error page appears: Details of exception: System.NullReferenceException: Object reference not set to an instance of an…
Daniël Tulp
  • 1,745
  • 2
  • 22
  • 51
2
votes
1 answer

Get Reference to the content node in Umbraco?

I have seen in umbraco code, where developers get reference to a content page, like this: var content = UmbracoContext.PublishedContentRequest.IsInternalRedirectPublishedContent ?…
user1032019
  • 53
  • 1
  • 7
2
votes
1 answer

Differences in Umbraco cache structure?

Ok, So I have just spent the last 6-8 weeks in the weeds of Umbraco and have made some fixes/Improvements to our site and environments. I have spent a lot of that time trying to correct lower level Umbraco caching related issues. Now reflecting on…
Devin Gleason Lambert
  • 1,516
  • 1
  • 13
  • 22
1
2 3
13 14