Questions tagged [umbraco9]
16 questions
2
votes
1 answer
Asp.Net Core Model binding doesn't bind integer properties
I'm hoping this is going to be a simple issue but I've tried lots of things and still get the same results. I'm porting a small Umbraco web site from .Net Framework 4.8 to .Net 6.0. The model binding works with Framework MVC because it's a bit more…

John J Smith
- 11,435
- 9
- 53
- 72
1
vote
1 answer
Umbraco v9 Convert IEnumerable search result (examine) to strongly typed models
I have created a ViewComponent, where it gets the search string parameter to search through Umbraco content. I have implemented the search and the possible results are of IEnumerable. This part is tested and it works.
The problem that I have is how…

rokdbest
- 39
- 9
1
vote
1 answer
Presence of Session State Cookie causes app to crash
I have an Umbraco 9.4.3 site (.NET5.0) which is using Session state, as configured by Umbraco. The app starts normally then writes a value to Session state in a controller method, which causes a Session cookie to be created.
public override…

Paul Taylor
- 5,651
- 5
- 44
- 68
0
votes
1 answer
Contact Form via Controller in Umbraco 9
I'm trying to create a contact form via smtp in Umbraco 9 CMS. I tried several solutions, which all didn't work out. My last attempt was to make a view-file (Kontaktformular.cshtml), a controller (FormController.cs) and an integration in Startup.cs.…

apload
- 9
- 5
0
votes
1 answer
Is there a way to override built in property editors on Umbraco 9/10?
Hey I'm using umbraco 10 and I'm trying to override the addTag function of the built in "Umbraco.Tags" property editor.. can some body help with that? Can't manage to do it.. the problem with using the built in one is that the tags dosnt have case…

Melkweg
- 29
- 4
0
votes
0 answers
How to handle concurrent edit of contents in Umbraco?
I'm trying to mitigate the problem of concurrent edits of contents, in Umbraco 11.
In Umbraco, if two users Alice and Bob work together on a content, both save the content and Bob saves after Alice, Alice's modifications are overwritten and Bob has…

Michele Benolli
- 55
- 1
- 11
0
votes
0 answers
Umbraco creates media-item, but no file is uploaded
I have a weird problem, and I can't figure out what's going on.
We have a Umbraco 9.5.0 site.
If our customer logs in and uploads a new image to the Media-section, umbraco creates a media-node, but there isn't a file uploaded.
When I look at the…

Cryothic
- 771
- 7
- 18
0
votes
1 answer
Flushing the templatecache programatically
we have some sites running Umbraco9, where we have a few templates that are updated by outside developers. We are hooking up to an FTP and downloading their templates (.cshtml), and in backend their editors can choose from these templates to be…

Steen
- 2,749
- 2
- 20
- 36
0
votes
1 answer
Umbraco 11 - Render images
In my Umbraco 7.15.7 I'm displaying images in the Partial Views Macro Files as follow:
figure>
@if (newsItem.HasValue("articleImg"))
{

Menahem Gil
- 787
- 2
- 15
- 39
0
votes
0 answers
Create Custom Block For Umbraco 11 Grid Layout
I'm converting Umbraco 8 package to Umbraco 11, but our Umbraco 8 version we used a custom grid layout editor.
According to my knowledge, I can't use it with Umbraco 11 as it has Block content.…

Eranga Wijethunga
- 185
- 8
0
votes
0 answers
Migrating Umbraco 7 website to 11: filter items in a node
I try to migrate my website from Umbraco 7 to 11
I have the following code on 7:
var Section_node = Umbraco.Content(1234);
var Section_pages = @Section_node.Children.Where("Visible");
Section_pages =…

Menahem Gil
- 787
- 2
- 15
- 39
0
votes
0 answers
The Umbraco.Cms.Web.BackOffice.Controllers.EntityController does not currently support data for the type Language
We are using Umbraco 9.5 and every thing was running fine for a long time, but starting from today (2022-10-2) we are suffering from a strange error in Backoffice (in local PC only, however it's working fine on the IIS hosting) with the Backoffice…

Ahmed Mostafa
- 419
- 6
- 16
0
votes
1 answer
Images are not displaying In Umbraco Backoffice after Publish with Azure app service
Images are not displaying In Umbraco Backoffice in a media tab after i uploaded new image with Azure app service.
In local, all the images are also displaying in the Umbraco Back-office, but problem is that when I have published umbraco code to…

Maulik Dhaduk
- 1
- 2
0
votes
1 answer
Umbraco 10 403 and other errors
I are trying to deploy my first umbraco 10 website to plesk hosting service.
Have published the site using visual studio 17 and the site is up and running fine however when I go to the back office the page is blank. at best I get the menus across…

Daniel Rogers
- 3
- 1
- 3
0
votes
1 answer
Umbraco v9 Call Specific Controller Method and pass parameter
I would like to call specific action method with a parameter and retrieve data from the controller in Umbraco v9.
public class SearchResultController : RenderController
{
private readonly UmbracoHelper UmbracoHelper;
private readonly…

rokdbest
- 39
- 9