Questions tagged [kentico-13]

17 questions
1
vote
2 answers

Kentico not creating anonymous contact records

I have enabled Kentico Activity Tracking for contacts. However, Kentico does not create any anonymous contact records of the public site visitors. It only create a contact record if the user submits a form. How do I enable activity tracking of any…
chamara
  • 12,649
  • 32
  • 134
  • 210
1
vote
1 answer

Kentico - Missing 'Form Controls' tab

I'm using Kentico 13 .NET Core and trying to build a custom form control. However, as mentioned in following article, I cannot see the 'Form Controls' tab to register my custom control. What am I…
chamara
  • 12,649
  • 32
  • 134
  • 210
0
votes
1 answer

'AuthenticationHelper' does not contain a definition for 'AuthenticateUser'

We are currently in an upgrade to Kentico 13 from Kentico 12 and running into a smallish problem. We have an enrollment page that sends its data to a .net core api (using .net 7.0) I have gotten the Kentico Libaries from NUGIT and they are the same…
Dan Main
  • 37
  • 6
0
votes
2 answers

Kentico Macros inside macro

I'm trying to set the style tag inside an email widget in macros. Following works fine style="background-color: {% CMSContext.Current.GlobalObjects.CustomTables["Keyton.EmailTemplateUIElements"].Items.Where("StyleKey =…
chamara
  • 12,649
  • 32
  • 134
  • 210
0
votes
1 answer

Kentico 13 Smart Search not working with Local Indexes

We are implementing Smart Search in Kentico 13. In our initial we had enabled the search feature, followed by adding local indexes (I added a local index with name "DefaultSearchIndex"). For the indexes we have set the path to a page with sub pages…
0
votes
0 answers

Kentico Get Current Recipient contact info

I'm trying to get current email recipent data inside a custom macro field. My code below. using CMS; using CMS.DataEngine; using CMS.MacroEngine; using CMS.Membership; //using CMSApp.CustomMethods; using System; using…
chamara
  • 12,649
  • 32
  • 134
  • 210
0
votes
0 answers

Kentico custom macro method to return custom properties

I have the following custom macro method which returns custom object 'EmailContact' public class EmailContactMacroMethods : MacroMethodContainer { [MacroMethod(typeof(EmailContact), "Get Contact Info", 1)] [MacroMethodParam(0, "Email",…
chamara
  • 12,649
  • 32
  • 134
  • 210
0
votes
0 answers

Error on page preview mode in Kentico 13 after Okta integration

I'm trying to run Kentico 13 CMS in preview mode but i'm getting the following error. An unhandled exception has occurred while executing the request. Message: Try reloading the administration interface. The user was not found in the JWT token, nor…
0
votes
1 answer

Web farm names in Kentico

In my Kentico Xperience 13 website developed using .Net 6, I can see that the web farm for my live site is not named as it is supposed to be: https://docs.xperience.io/configuring-xperience/setting-up-web-farms/configuring-web-farm-servers. It…
Sylvain C.
  • 1,043
  • 1
  • 11
  • 27
0
votes
1 answer

External Authentication for Kentico 13 not working for OpenId

We are using our own identity server for authentication, so wanted to use the same for Kentico CMS site (Kentico 13, .net core Portal). All I can see is this link to integrate external authentication…
0
votes
2 answers

IPageRetriever not working with Ajax calls

I have the following API call to retrieve page data List newsList = pageRetriever.RetrieveAsync( query => query …
chamara
  • 12,649
  • 32
  • 134
  • 210
0
votes
1 answer

Kentico 13 .NET Core MVC Routing Patters

I have the following code in my Startup.cs endpoints.MapControllerRoute( name: "Default", pattern: "{controller}/{action}/{id?}" ); Routing doesn't work for the following method in the…
chamara
  • 12,649
  • 32
  • 134
  • 210
0
votes
1 answer

Kentico 13 - How to add BCC to the marketing email?

I want to add BCC to the marketing email. Is there any way to do that? I tried using the below code. But it did not work. public override void Init() { EmailInfo.TYPEINFO.Events.Insert.Before += Email_Insert_Before; } private void…
0
votes
1 answer

Kentico 13 - Any Docker image available for kentico CMS Admin

I am using Kentico 13 and planning to use two docker containers, one to host the admin site and the to host the user-facing site. I have used a linux container to host the user-facing site, do you guys provide any image for Kentico 13 Admin like you…
-1
votes
2 answers

How to connect Kentico to Azure SQL database using managed identity

I am using Kentico 13 and trying to connect to the Azure SQL database using managed identity in my localhost environment using the below connection string. "Server=tcp:.database.windows.net,1433;Initial Catalog=;Authentication=Active…
1
2