How to create a Carousel in Umbraco using Nested Content and Bootstrap
Hi,
I followed this tutorial (https://codeshare.co.uk/blog/how-to-create-a-carousel-in-umbraco-using-nested-content-and-bootstrap/ ) to make a slide on the home page of my site but I see this error
I'm not sure I will be able to provide you with the correct answer - But before anyone can provide some suggestions on what might be wrong you will need to set "customErrors" mode to "off" in the web.config file in the root of your Umbraco project. Then please share what the error message is.
Afterwards you can switch the "customErrors" element back to "remoteOnly". But when developing locally it's a good idea to have it set to "Off" and when deploying to a live site it should be set to "RemoteOnly" for security reasons since exposing potential errors can be a security risk.
Also, check the version of umbraco you are running. That "Related Link" property type, didnt get added until a recent version. So you may need to upgrade your site.
How to create a Carousel in Umbraco using Nested Content and Bootstrap
Hi, I followed this tutorial (https://codeshare.co.uk/blog/how-to-create-a-carousel-in-umbraco-using-nested-content-and-bootstrap/ ) to make a slide on the home page of my site but I see this error
Hi Eudes and welcome to our :-)
I'm not sure I will be able to provide you with the correct answer - But before anyone can provide some suggestions on what might be wrong you will need to set "customErrors" mode to "off" in the web.config file in the root of your Umbraco project. Then please share what the error message is.
Afterwards you can switch the "customErrors" element back to "remoteOnly". But when developing locally it's a good idea to have it set to "Off" and when deploying to a live site it should be set to "RemoteOnly" for security reasons since exposing potential errors can be a security risk.
I hope this makes sense? :-)
/Jan
Hi Jan Skovgaard, Thank you I'll modify the file and I refer the question
Hi, Here is the line of the error thank you for helping me manage
Have you got
At the top of your view.
Also, check the version of umbraco you are running. That "Related Link" property type, didnt get added until a recent version. So you may need to upgrade your site.
V7.6+ I think...
https://our.umbraco.com/documentation/getting-started/Setup/Upgrading/760-breaking-changes#property-value-converters-u4-7318
Hi, I have try to upgrade my site
Download the .zip file for the new version you are upgrading to from https://our.umbraco.com/download
Copy the following folders from inside the .zip file over the existing folders in your site:
/bin /Umbraco /Umbraco_Client
But here is the error that appears
You need to go through ALL the upgrade steps, which differ depending on what version you are upgrading from.
The Umbraco Documentation provides very good info, on what files you may need to move/add/delete, when upgrading.
Ensure you have done all the steps, or start from a "CLEAN" install, if this is just a hobby site, or a new site.
Hi, i'm using this code to manage my menu item :
@using Umbraco.Web.Models
@{ IPublishedContent homePage = Umbraco.AssignedContentItem.AncestorOrSelf("home"); IEnumerable
@helper RenderChildren(IEnumerable
@helper RenderPrettyLink(IPublishedContent item) { RelatedLinks relatedLinks = item.GetPropertyValue
}
@helper RenderPageLink(IPublishedContent item) { bool isActive = Umbraco.AssignedContentItem.Id == item.Id;
}
So i want to have a menu navigation like this :
is working on a reply...