Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi all,
I'm attempting to test the 8.7 Release Candidate but I'm struggling with getting Segmentation enabled.
According to this PR:
https://github.com/umbraco/Umbraco-CMS/pull/7965
I should just need to add
<add key="showAllowSegmentationForDocumentTypes" value="true" />
To the web.config appSettings section and call an endpoint like this:
http://localhost:44327/Umbraco/surface/SegmentTest/EnableDocTypeSegments?alias=testBlockPage&propertyTypeAlias=text
(Where testBlockPage is the doctype and text is the name of the property).
However, the above just gives me "the connection was reset" errors after whirring away for a few minutes.
I have made sure that I have the Umbraco.TestData DLL in the /bin folder.
Has anybody successfully got this working? What is it that I'm doing wrong?
Thanks,
Chris.
And 2 seconds later I found the answer by looking at the source code - you also need:
<add key="Umbraco.TestData.Enabled" value ="true" />
In the web.config appsettings.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Enabling Segmentation in 8.7RC
Hi all,
I'm attempting to test the 8.7 Release Candidate but I'm struggling with getting Segmentation enabled.
According to this PR:
https://github.com/umbraco/Umbraco-CMS/pull/7965
I should just need to add
To the web.config appSettings section and call an endpoint like this:
http://localhost:44327/Umbraco/surface/SegmentTest/EnableDocTypeSegments?alias=testBlockPage&propertyTypeAlias=text
(Where testBlockPage is the doctype and text is the name of the property).
However, the above just gives me "the connection was reset" errors after whirring away for a few minutes.
I have made sure that I have the Umbraco.TestData DLL in the /bin folder.
Has anybody successfully got this working? What is it that I'm doing wrong?
Thanks,
Chris.
And 2 seconds later I found the answer by looking at the source code - you also need:
In the web.config appsettings.
is working on a reply...