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

Login member programmatically on Umbraco 7

I am battling with this. In Umbraco 6 you could easily do this using: Member.AddMemberToCache( Member.GetMemberFromEmail(email), true, new TimeSpan(0, 30, 0) ); I don't to find the same thing in the umbraco 7 member's service.
Francis Benyah
  • 567
  • 7
  • 11
4
votes
1 answer

In Umbraco 7, how can i search for all members with a custom property?

I am using Umbraco 7 (C#). Is there an easy way/method to search for all members with a custom property? I know that there is an easy way to search for all members by the username by using the method GetByUsername(string username) : returns…
Hans Preutz
  • 679
  • 2
  • 10
  • 28
4
votes
1 answer

Umbraco 7: Get all siblings from current page

@foreach (var item in Model.Content.Children.Where("Visible")) { @item.Name } This does not give the result I need. Q: How can I get all the all siblings pages from…
alex
  • 1,300
  • 1
  • 29
  • 64
4
votes
2 answers

Session timeout after some seconds in Umbraco

I have created an site on Umbraco 7.1.6 it was working perfect in Visual studio 2012; when I deployed it to my hosting space I found a problem that it redirects me to login screen again and again just after some seconds. I have set keep user login…
syed Ahsan Jaffri
  • 1,160
  • 2
  • 14
  • 34
4
votes
5 answers

Umbraco get PreValues in a data type

I am using Umbraco 7 and I have created a data type that uses the property type dropdown list publishing keys. How can I get the id of each prevalue? Thanks in advance.
sidy3d
  • 440
  • 2
  • 8
  • 22
4
votes
1 answer

Visual Studio 2012: MVC, Umbraco site extremely slow while debugging

Windows 8.1 Pro, Visual Studio 2012 Update 4, MVC4 Umbraco site using SQL Azure (have also tried with a local SQL 2008 R2 db). Running through IIS. Site runs perfectly while not debugging. However, when debugging the site is extremely slow. The…
StephenPAdams
  • 2,797
  • 2
  • 30
  • 49
4
votes
2 answers

render umbraco field in partial view

I use umbraco 7 mvc I simply want to render umbraco field in a partial view. Have no clue how to do it. @CurrentPage or @Umbraco.Field or RenderMacro etc. do not work I have the following partial view @model MvcImport.Models.ImportModel @{ var…
4
votes
2 answers

Umbraco 7 mvc how to get current page id

I have a custom controller to send message. So I need to get the value of property field name and alias = "email", this will be used to send the email to. this code below works var id = umbraco.uQuery.GetNodeByUrl("/contact-us"); IPublishedContent…
KleberBH
  • 452
  • 1
  • 9
  • 28
4
votes
2 answers

How can I add a class to a table in TinyMCE for Umbraco 7 without using the source button?

In Umbraco 7, we want the ability to add a class to a table that has been inserted using TinyMCE, without having to use the source button in the editor. This is because it will be used by the client who is not tech-savvy. Anybody know if this is…
Karl Tynan
  • 125
  • 2
  • 12
3
votes
1 answer

Umbraco CMS in Azure unable to send email to new user

I create a Umbraco CMS Web App in Azure. I login to the back-office of the Umbraco CMS and try to create new users on there. However, there is no email send to new users ether try create user or invite user. It may related to SMTP settings in…
Linda Liu
  • 31
  • 1
3
votes
2 answers

Inject default with table in tinymce

I'm using Umbraco as the CMS, 7.6 - Umbraco.TinyMCEv3 So using insert Table will create HTML something like following How can I configure to add…
BJ Patel
  • 6,148
  • 11
  • 47
  • 81
3
votes
1 answer

How to execute content updates in transaction using Umbraco 7?

I would like to move a content node and change some properties. But it should be done in a transaction. The operations are done with PetaPoco Framework and it support transactions. Looking for the proper way to achieve transactional content…
Marton Rusko
  • 370
  • 2
  • 8
3
votes
1 answer

Oauth auth for Umbraco frontend

I need to implement OAuth2 login on my Umbraco website for the frontend part. I have found a lot of information and tutorials of how to do this on the backoffice part, but none of them describes how to do it in the frontend. I am gonna use an…
Jesper Plantener
  • 229
  • 3
  • 16
3
votes
0 answers

Auto login in Umbraco Site with Active directory

I am trying to implement auto login in Umbracro site with Active Directory users. Can any one explain how would I do that? I have been trying to implement this feature for a while and ended up having a solution where I can authenticate user from…
3
votes
1 answer

Umbraco - Preventing users editing the page name

Does anyone have any suggested strategies for preventing users from editing page names? I'm developing a site on Umbraco where various partners have their own specific page they can edit exclusively. Access to this page is controlled through the…
Gavin
  • 5,629
  • 7
  • 44
  • 86