Questions tagged [umbraco7]

Umbraco 7 is 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.

Umbraco 7 is the seventh 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.

Resources

https://umbraco.com/products/umbraco-cms/umbraco-7/

1479 questions
4
votes
1 answer

How to create an instance of a model that inherits RenderModel inside UmbracoApiController?

I'm using Umbraco CMS. I have the following model: public class LoyaltyPromo : RenderModel { public LoyaltyPromo(IPublishedContent content) : base(content) { } //properties removed for brevity …
Irshu
  • 8,248
  • 8
  • 53
  • 65
4
votes
2 answers

Enable Vorto text in Archetype - Umbraco 7

I have Archetype in umbraco 7.4.3 When I set vorto text box in the archetype I get: Its look like the vorto box is disabled. whenever I set the vorto (translated) text box in simple document type it work's perfect
Jarufi
  • 308
  • 1
  • 12
4
votes
0 answers

Saving data between steps in the form to complete form later [New Umbraco Forms]

Is it possible to access form data between steps? by triggering a workflow or something without submitting the form? Here is the link to the original post in Umbraco Forum: Original Post Any help will be more than welcome :) Thanks!
Noe
  • 125
  • 1
  • 9
4
votes
2 answers

Build Errors with umbraco 7.4 visual studio 2013,

I am new to Umbraco. I am trying to build the website using it. Due to some issues i deleted the Umbraco project that i have created. I had back up so i copy and pasted it in visual studio project folder and tried to run. Before execution it show…
4
votes
2 answers

Issue with custom surface controller Umbraco

first of all, I want to clarify that I'm just learning ASP MVC and Umbraco :). There may be very novice mistakes. I'm trying to make a system of interviews. Searching the Internet, I found an example I changed my taste. I created an empty project…
avechuche
  • 1,470
  • 6
  • 28
  • 45
4
votes
1 answer

Integrate Auth0 with Umbraco 7 for member authentication

I'd like to integrate Auth0 with Umbraco 7 for authentication of members (members are users of the public website rather than backend CMS users). What are the steps required to integrate the two?
Gavin
  • 5,629
  • 7
  • 44
  • 86
4
votes
2 answers

Umbraco Audit Trail Report

Does anyone know if there is a package available for Umbraco 7 which will produce a report listing content changes that have been made in a specified date range? I would like to be able to specify a date range and have a list of all content changes.…
Jimbo Jones
  • 563
  • 6
  • 28
4
votes
1 answer

Umbraco RelationService.GetByParentId(memberId) slow. Fires two queries per item

I'm currently trying to get all relation items for one parent by calling: var items = ApplicationContext.Current.Services.RelationService.GetByParentId(members.GetCurrentMemberId()).ToArray(); It all works fine. Except when I look at the…
Sam7
  • 3,382
  • 2
  • 34
  • 57
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
2 answers

umbraco public access error when authenticated

I have an issue with public access in Umbraco 7. I use a custom membership provider to authenticate the users by my CRM database. I set a rule to let access to authenticated (front-end) users only and I used a custom role provider to define…
Giu
  • 1,832
  • 2
  • 16
  • 31
4
votes
1 answer

How to Upload file In MVC + Umbraco 7

I am new to MVC and need help to upload File , I am using umbraco. 7.2.1 I am trying to send mail with mail with attachment Following is my code for the same. Partial View ==>name Contact using…
BJ Patel
  • 6,148
  • 11
  • 47
  • 81
4
votes
2 answers

How do I enable umbracoNaviHide in Umbraco 7

I am new to Umbraco and I am trying to hide a page from the nav bar. Based on what I have read I need to change the value of the property umbracoNaviHide. Nothing I have read gives any specific information on how to do this or where this property…
Adam
  • 1,483
  • 4
  • 21
  • 50
4
votes
1 answer

Meta description with special characters in Umbraco

I have a problem when using special characters in meta and alt text in Umbraco. I am testing with Meta description and Alt text like this: Test test æøå And it generates this output:
4
votes
1 answer

How to uninstall Umbraco 7

I installed Umbraco 7.2.2. from the latest nuget package. However, annoyingly I just clicked install from the initial install wizard, as shown below. Unknowingly it wouldnt ask me for the DB connections. So my question is. Is there a clean way to…
Christo
  • 2,330
  • 3
  • 24
  • 37
4
votes
3 answers

Create Database table from model with enum using Umbraco.Core.Persistence

Want to create this table on application start if it does not exist. Code: public class Database : ApplicationEventHandler { protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext…
Matt
  • 1,038
  • 7
  • 27