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/

1472 questions
6
votes
3 answers

Cannot warm up pages using applicationInitialization in webconfig

I have a simple Umbraco 7.7.2 application and I'm hosting it on Azure (app-service). When I restart the server it takes 20-40 seconds for first time requesting a page which is really annoying specially when the load is high and you are Scaling out…
Ashkan Sirous
  • 7,211
  • 5
  • 41
  • 64
6
votes
2 answers

Umbraco: "System.InvalidOperationException: The view found at '~/Views/Homepage.cshtml' was not created."

This is my first post in this stackoverflow. I hope to do it correctly. I spend hours look for a solution without results. I'm using Umbraco version 7.5.7 assembly: 1.0.6219.11990 I use Visual Studio Express 2015 For Web, if I run the project with…
6
votes
2 answers

How to apply Where condition on Umbraco Collection

I want to apply where condition on Umbraco Collection. Code: var workList = CurrentPage.work.ToString().Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries); var workCollection = Umbraco.Content(workList); @foreach (var item in…
Ubiquitous Developers
  • 3,161
  • 4
  • 25
  • 61
6
votes
3 answers

How to create a virtual node in Umbraco

Situation I have created a new section in Umbraco 7.3 where I can manage a catalogue (create, edit, and delete products). When I create a product, I store all its information in a table in the Umbraco database. Please note that I do not create a…
Felipe Cruz
  • 1,109
  • 10
  • 18
6
votes
2 answers

Umbraco 404 with different culture not working

My issue is actually close to this one: Umbraco V6 404 not handled properly according to culture I have 2 directories with different culture: Content EN page1 page2 404 FR page1 …
Giu
  • 1,652
  • 1
  • 15
  • 30
6
votes
1 answer

Umbraco7 new backoffice section, edit date field, AngularJS

I'm trying to create an edit screen for a new section in the back office. I've followed various tutorials on how to go about this and it is working fine for normal text fields. However, my model has 2 date fields as part of it and I would like to…
Pheonyx
  • 841
  • 6
  • 15
6
votes
2 answers

Umbraco 7 add new Item to Dashboard

I am trying to add new "Section" Item to Umbraco 7. Without Success. What I am trying to achieve is to Have additional Icon in left side menu after members icon. I saw , google analytics package adding icon there after installation. I've tried to…
StringBuilder
  • 1,599
  • 3
  • 29
  • 51
6
votes
1 answer

Working with non-Umbraco data in MVC and Umbraco project?

I am working on a project that has MVC 4 and the Umbraco CMS installed. I apologise - being newbie, my question may be weird. My question is: how do I work with types which I don't want to manage through Umbraco back office?Rather, it will be simple…
user576510
  • 5,379
  • 18
  • 74
  • 137
6
votes
5 answers

Umbraco pagination

First time Umbraco user. I'm looking to add pagination to the following basic loop: @foreach (var example in CurrentPage.Children.OrderBy("createDate descending").Take(8)){ //Do Stuff// } Any ideas? Thanks
Phil
  • 465
  • 1
  • 6
  • 15
6
votes
1 answer

Optimized bundles returning 404 when requesting from the website

I'm having this weird problem when I set: BundleTable.EnableOptimizations = true; When I try to open my website it just won't load, when I open Chrome's console I see the following message: GET…
6
votes
1 answer

Building a contact form in Umbraco 7

I´m new to MVC, and I have followed a tutorial for building a contact form page but get this error message: namespace name 'Models' does not exist Controller - ContactSurfaceController.cs namespace test.Controllers { public class…
user3446407
  • 83
  • 1
  • 8
6
votes
1 answer

Umbraco 7 Starter Kit?

I have worked with previous versions of Umbraco in the past but am currently evaluating Umbraco 7 for a new project. I am looking for a more conventional approach than the default "txt" starter project that is suggested by default. Are there any…
WillC
  • 1,483
  • 13
  • 27
5
votes
1 answer

Umbraco - Error when trying to run 'IIS Express: Start Website' in Visual Studio Code

I've just downloaded and installed Umbraco, IIS, and IIS Express (installed the following extension IIS Express in VS Code: https://marketplace.visualstudio.com/items?itemName=warren-buckley.iis-express). When I run 'IIS Express: Start Website' in…
psm_348
  • 63
  • 4
5
votes
4 answers

Umbraco - The Xml cache is corrupt. Use the Health Check data integrity dashboard to fix it

I am getting this error after deploying Umbraco website to the shared hosting site. Couldn't able to find any solution. Tried refreshing App Pool The Xml cache is corrupt. Use the Health Check data integrity dashboard to fix it. Please if anyone…
Khawaja Asim
  • 1,156
  • 15
  • 33
5
votes
1 answer

Umbraco 7.5.4 installation error: Invalid Objectname CmsContent

I've installed umbracoCms((version 7.5.4)) nuget package to my empty mvc project (.Net 4.6.2, vs2015). Then, I run the project and it opened installation page. Then I customized connection and used a connectionstring for an ms sql 2016 database. I…
serefbilge
  • 1,565
  • 4
  • 25
  • 53
1
2
3
98 99