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
2
votes
1 answer

Umbraco Surface Controller Not Routing Correctly

I have a bit of trouble getting a surface controller to fire correctly. public class SocialShareSurfaceController : Umbraco.Web.Mvc.SurfaceController { public ActionResult Index() { return Content("hello world"); } } I'm trying…
2
votes
1 answer

Umbraco rich text editor doesn't save html tag (converts it to

(version 6)

When saving content marked as "< code >", inserted either via html or in the text editor, umbraco refuses to save the content as it is. Umbraco instead converts all < code > tags to < p > tags. This happens in the Rich text editor. What do I have to…
Andreas
  • 2,336
  • 2
  • 28
  • 45
2
votes
0 answers

Use a text box value as a variable in a Razor MVC 8 view

How do I retrieve the text box value as a variable? For example: @{ var offset = Request.Form["offset"] }
Jeff Straw
  • 21
  • 2
2
votes
1 answer

Umbraco AJAX call not working

I have a MVC application where I have installed umbraco 6.1.6 nuget package.Now I am trying to call a controller from a view using Jquery AJAX function. The controller is placed in MVC controller folder and it is inherited with…
Jayaraj.K
  • 928
  • 9
  • 30
2
votes
0 answers

Umbraco RoleProvider error

I'm facing a web.config error on my Umbraco 6.2.1 website on production server. I have no issue running this site on my dev computer. An error occurred during the processing of a configuration file required to service this request. Please review…
SSiddiqui
  • 75
  • 10
2
votes
0 answers

Umbraco ExternalIndexer not indexing nodes

Has anyone seen this error before? This is preventing the ExternalIndexer from indexing any nodes. 2014-05-23 17:27:02,213 [7] ERROR UmbracoExamine.DataServices.UmbracoLogService - [Thread 11] Provider=ExternalIndexer, NodeId=-1 System.Exception:…
Biagio Arobba
  • 1,075
  • 11
  • 27
2
votes
0 answers

Use different reference versions

I have two projects in my solution that are using Lucene.Net. Project A have reference to Umbraco and Lucene.Net version 2.9.4.1 and project B have Lucene version 3.0.3.0. I want to use 3.0.3.0 but I can’t upgrade project A to 3.0.3.0 because…
Zaint
  • 59
  • 6
2
votes
1 answer

Umbraco Relation Types

In the Developer Section of Umbraco 6.1.6 there is a Relation Types node. Can anybody explain what Relation Types are and if they have a practical application. I have seen some documentation but am still unsure as to why I might need to use them. …
wingyip
  • 3,465
  • 2
  • 34
  • 52
2
votes
1 answer

Umbraco Request Lifecycle Diagram

I'm currently investigating performance issues with an Umbraco 6.1.6 website. The website is running a lot of custom code and I am certain this is the cause, however to better aid my understanding of the application, can someone provide a graphical…
Stokedout
  • 11,003
  • 5
  • 24
  • 30
2
votes
1 answer

Umbraco 6 - what is "correct" way to read central configuration settings?

I'm trying to build a site using Umbraco 6, for which I need to be able to restrict access to some Media content. The approach I have come around to ( after a lot of trial and error ) is to create a custom MediaFileSystem replacement in which I will…
glenatron
  • 11,018
  • 13
  • 64
  • 112
2
votes
2 answers

Html.Action() results in "No route in the route table matches the supplied values"

This issue has been discussed many times, but I haven't found a resolution for my particular case. In one of my Umbraco (6) views I am calling a controller method by using @Html.Action("Index", "CountryListing"); This results in the "no route in…
Julius
  • 2,784
  • 6
  • 32
  • 54
2
votes
1 answer

TinyMCE error after upgrading to Umbraco 6

I just upgraded from Umbraco 4.7.1 to 6.1.6 I have a TinyMCE control in my custom section. It stopped working after the upgrade.Here is part of my code for the page in the custom section: public partial class MyCustomPage : UmbracoEnsuredPage { …
Aximili
  • 28,626
  • 56
  • 157
  • 216
2
votes
2 answers

How do I modify an existing database table (add/remove columns) with PetaPOCO (Umbraco 6, MVC)

I have an Umbraco CMS application with some custom functionality for which I use PetaPOCO to store data in my database. I created my POCO and an Umbraco event that fires on application startup to create the table if it does not exist: public class…
Daniël Tulp
  • 1,745
  • 2
  • 22
  • 51
2
votes
0 answers

How to add a tree inside a custom section in umbraco 6.1.x

I tried to add tree nodes to the tree.config. but it seems not to work, is there anything which I am missing?
2
votes
1 answer

Umbraco V6.1.3 Lucene Index Corruption

Just upgraded an Umbraco V6.1.1 site to V6.1.3. All went well on my workstation. Copied the files up to the web server after deleting all that was there, did the same with the database. Set all the directory permissions and ran the site. Site…
Craig
  • 1,704
  • 1
  • 18
  • 36
1
2
3
13 14