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
1
vote
1 answer

How to create a package of nodes and media?

In Umbraco 6.1.6, I get an exception while trying to install a package that includes one of my root content nodes. This is probably due to not including the media in the package. However, I do not wish to copy my entire media folder. In my media…
dror
  • 3,759
  • 6
  • 31
  • 45
1
vote
1 answer

Error unpacking extension and Could not upload file in umbraco

This error occur while importing template in umbraco Could not upload file System.Exception: Error unpacking extension... ---> System.IO.PathTooLongException: The specified path, file name, or both are too long. The fully qualified file name must…
Sohail Ali
  • 468
  • 2
  • 12
1
vote
0 answers

Umbraco Member Tab - How to list the members

Requirement: I have a requirement such that, when a new user is registered in my application, his details should be stored in Umbraco Membership. I am Currently able to add the member to the umbraco site and i can see the added members under the…
Vinod Kumar
  • 771
  • 1
  • 11
  • 26
1
vote
1 answer

Umbraco multi-site: traffic is redirected to top-most content site

I've installed Umbraco v6.1.6 locally and finished developing multiple-skinned site. Each skin has its own IIS site and application pool and use the same umbraco instance. Everything is working as expected in this local setup. But when I tried going…
dror
  • 3,759
  • 6
  • 31
  • 45
1
vote
1 answer

How to know if a NodeFactory node is published

@inherits Umbraco.Web.Mvc.UmbracoTemplatePage @using umbraco.NodeFactory; @using umbraco.MacroEngines;
    @{ var rootNode = Model.Content.AncestorOrSelf(1); var items =…
Dams
  • 11
  • 4
1
vote
1 answer

How to use SQLServer SessionState database in Umbraco?

My custom sessionstate database (SQL Server) is not being populated when the sessionstate configuration is setup in the Umbraco site web.config. I think it is because Session_Start is not firing!? Can anyone tell me how to implement Session_Start in…
Lee Englestone
  • 4,545
  • 13
  • 51
  • 85
1
vote
2 answers

Document Type with no fixed location on a parent page

Is there a way to let the users decide where to put a child document type on a page? With a template this is possible on a fixed location on a page. But I want it for example between two paragraphes of a text. For example: I have a div with a red…
Sllix
  • 606
  • 9
  • 28
1
vote
1 answer

How do I override the Umbraco built-in media library methods to use s3?

I'm currently looking to move my Umbraco installation over to a load balanced setup. In order to do this, I need to move the Media library over to a CDN like Amazon's S3. I tested a few plugins that allow upload to s3, but they all list media…
Dexter
  • 1,128
  • 3
  • 25
  • 51
1
vote
1 answer

Multiple apps in umbraco with IApplicationEventHandler

I recently started refactoring my site resulting in the following situation. I have a separate project containing all the surface controllers, views etc for the frontend users. In this project there is also StartupEventHandler wich registers the…
Mounhim
  • 1,674
  • 1
  • 17
  • 32
1
vote
1 answer

Where are cshtml files and Controllers in Umbraco with Mvc?

I've just installed Umbraco 6.1.6 making sure to have this setting in the \Config\umbracoSettings.config file before starting the install process. Mvc The site has installed fine, and runs fine, but…
Lee Englestone
  • 4,545
  • 13
  • 51
  • 85
1
vote
1 answer

Displaying a content managed image in a Umbraco 6 MVC website

I'm working on my first Umbraco 6 MVC website, its just took me about an hour to work out how to display a content managed image in a razor view. It cant be that hard, I must be missing something... This is what I ended up with... @inherits…
Tom Riley
  • 1,701
  • 2
  • 21
  • 43
1
vote
1 answer

Cannot login to Umbraco 6.0.7 back office using Firefox and Chrome, I am redirected back to the login page but IE and Safari is fine

I seem to be coming across an issue with logging into the Umbraco cms backoffice. Each time after having entered the correct username and password, Umbraco redirects me back to the login page. This happens in my staging environment but works fine on…
Adrian Liew
  • 83
  • 1
  • 9
0
votes
0 answers

Rewrite rule to accept only digits

I've implemented a pagination in my news list page and I've written a rewrite rule in order to set a pagination such "/news/2" as page number. Here's the rule:
0
votes
1 answer

Where can I find documentation for Umbraco 6?

I have recently taken over maintenance of some legacy client projects built with Umbraco 6. I have extensive ASP.NET experience but very little with any version of Umbraco. Unfortunately it seems all relevant documentation has been deleted from…
Daniel Hume
  • 437
  • 4
  • 9
0
votes
1 answer

HTTPS SSL Connection not trusted, despite certificate being fine

I have got 2 sitest hosted on Windows 2012 R2 IIs 8.5. One is instance of umbraco while other is .Net core based api (Lets call it MyApi). I want to perform certain search action on umbraco so umbraco makes call to the api which calls back the…