Questions tagged [kentico]

Kentico is a content management system (CMS) for building websites, online stores, intranets and Web 2.0 community sites. Kentico utilizes ASP.NET and Microsoft SQL Server. Use this tag for asking questions related to development issues with Kentico CMS.

Kentico is an enterprise-level web Content Management System (CMS) and enterprise marketing system (EMS) produced by a company of the same name.

Build on the .NET stack, Kentico supports both WebForms and ASP.NET MVC development model. Kentico uses SQL Server for the database backend. Developers may build entirely bespoke solutions, or use many of the out-of-the-box components and templates to build production ready sites in the browser itself.

Kentico CMS and EMS are can be customized and extended to measure up to a wide range of business functional requirements,

1753 questions
3
votes
1 answer

Kentico CMS Repeater UniPager shows everything on one page

I have the following code in front: //code
rory
  • 1,490
  • 3
  • 22
  • 50
3
votes
2 answers

Access Kentico 12 Alternative URL value

I'm looking for a way to retrieve the alternative URL value for a page in kentico. Having followed this example to enable Alternative Urls in Kentico 12 SP :…
Timtek
  • 65
  • 1
  • 7
3
votes
1 answer

How to force Kentico to generate lowercase urls by default?

Here is an example how to modify global.asax.cs to achieve this, however this works only for version 3.x as the global.asax.cs source code is different in ver 4.1: http://devnet.kentico.com/Forums.aspx?ForumID=19&Thread=00004982 So I need a solution…
Antonio
  • 31
  • 2
3
votes
2 answers

How to localize radio-button inside admin interface in Kentico

I have a custom Page Type with ArticleType field presented by Radio Buttons control with the following list of options: News Event My website has EN and DE cultures. What I want to do is if content editor edits the page on German he sees:…
Max
  • 53
  • 4
3
votes
1 answer

Set password with PBKDF2 encryption in kentico 10

I have to upload around 500 users in the table CMS.User (FirstName, LastName, UserName, Email,UserPassword and UserPasswordFormat) from an Excel sheet. How to encrypt the password and save it in the database? var newUser = new UserInfo { …
krishnan
  • 33
  • 6
3
votes
1 answer

Kentico 12 DancingGoat MVC SiteName is empty or null

I have installed DancingGoat MVC and i can access the IIS urls just fine http://localhost:8080/Kentico12_DancingGoatMvc http://localhost:8080/Kentico12_Admin/Admin/cmsadministration.aspx When I try to debug the MVC application to look into the…
learning...
  • 3,104
  • 10
  • 58
  • 96
3
votes
3 answers

Running Kentico continuous integration on Azure app services

We have a new project in which we are trying to make use of the built in continuous integration in Kentico for tracking changes to templates, page types, transformations etc. We have managed to get this working locally between two instances of a…
jezzipin
  • 4,110
  • 14
  • 50
  • 94
3
votes
2 answers

File system based reads vs. a simple database query?

A CMS we use called Kentico stores Media Library Files on the file system, and also stores a record in the database for file meta data (title, description, etc.). When you use a Media Library control to list those items, it will read the files from…
John B
  • 20,062
  • 35
  • 120
  • 170
3
votes
4 answers

Multiple CMSEditableRegion in ascx?

I have three CMSEditableRegion controls inside of an ascx which needs to be on an aspx page 3 or more times. The problem is that each of the region controls will always contain the content of the last set of them. After doing a little research, I've…
user4593252
  • 3,496
  • 6
  • 29
  • 55
3
votes
6 answers

Kentico - Get/Format Date Time

I have the following code in the page template but don't know how to format ReleaseDate to display full month and year e.g. October 2016. Please help!
3
votes
1 answer

How can I add support for SVG media files in Kentico when using Azure blob storage?

We have a Kentico instance which stores media files in Azure blob storage. When uploading images of type SVG it's storing them with the default content type "application/octet-stream". This means they're not displaying correctly in the browser. The…
Tom Troughton
  • 3,941
  • 2
  • 37
  • 77
3
votes
1 answer

Creating Multiculture product using Kentico API 9

I am developing a tool for migrating data from Sitecore to Kentico. I'm looking for a way to create a product with two different cultures using Kentico API 9. I want to extract data from Sitecore and store it to Kentico using API. I've checked out…
Dii
  • 147
  • 13
3
votes
2 answers

Progmatically creating documents Kentico 9

I've to create a new document in the back end but can not find any useful information on how to do this in Kentico 9. So far I've got UserInfo user = UserInfoProvider.GetUserInfo("administrator"); // Creates a tree provider instance using…
Spitfire2k6
  • 308
  • 4
  • 17
3
votes
2 answers

How can I get Kentico 8.0 to properly update document attachments when Publishing a document that has been edited via the API?

The Scenario: We've got an Angular front end bolted on top of a Kentico 8.0 instance. Users are able to view, add, and edit documents through the this front end. When a user adds/edits a document, the relevant details are posted to a custom handler…
Mir
  • 2,429
  • 1
  • 29
  • 34
3
votes
3 answers

Kentico 8 - page access: deny for all users except a role

What I'm trying to do now is to let only users of a specific role to access a page (and its child pages). this is what I got at the moment: USERS User A -> Member of RoleA, RoleB User B -> Member of RoleB. CONTENT TREE MainNode PAGE TO…