Questions tagged [episerver]

Episerver is a web content management system and e-commerce platform based on .NET.

Episerver is an ASP.NET-based CMS (Content Management System) and e-commerce platform.

Information about Episerver development is best found at: http://world.episerver.com

General company information about Episerver is found at: http://www.episerver.com

In 2021, Episerver acquired Optimizely, and started its rebranding to gather under the Optimizely name.

Since the release of the most current versions (CMS 12 and Commerce 14), the products run on .NET 5/6.

728 questions
2
votes
1 answer

How can I separate properties visually for an EPiServer ContentType?

I want to make the editor experience better and more visually pleasing when filling in content on a page (In all properties view). Could be a simple divider or a heading.. I am already using tabs, whenever it makes sense. Also, I have been…
Frostrar
  • 337
  • 6
  • 18
2
votes
1 answer

InvalidOperationException in EPiServer edit mode after deploy to Azure

We are in the process of moving our functioning EPiServer 10 site to Azure. After deploying our site to Azure, we get [InvalidOperationException: This request has probably been tampered with. Close the browser and try again.] …
2
votes
2 answers

Using Recaptcha with EPiServer XForms

Does any one have experiense of using Recaptcha with XForms in EPiServer? I don't know where to put the Recaptcha control and how to make it work. The sample code for ASP.NET is the code below. Where should i put it. My guess is in the…
Andy
  • 503
  • 3
  • 15
  • 29
2
votes
0 answers

How to properly handle http errors in episerver?

I want to handle 404 and 500 errors on my site that using episerver cms. It have to support custom pages created by site editors but also have fallback to static page and preserve url. I read many topics about this, for example, but i can't fully…
Shumek
  • 56
  • 4
2
votes
2 answers

How to restrict the number of a blocktype used in contentarea?

I have a block type which I am using on a specific content area on a specific page. is there any way that I can validate(on page level or contentarea level) that block is not used more than once?
SWAZ
  • 21
  • 2
2
votes
1 answer

Office Integration in EPiServer CMS R2

I am using EPiServer CMS 5 R2 and have a project that I have set up separately from EPiServer 'Site setup' wizard. I now have activated the Office Add-in and cannot connect from Word. When you click the 'Publish to EPiServer CMS' in Word it does not…
Edon
  • 21
  • 2
2
votes
1 answer

In EPiServer 8, how can I get ContentType from a content item?

I need to detect the Content Type for an EPiServer object in EPiServer 8.0. This is to prevent the following exception that our code encounters. EPiServer.Core.TypeMismatchException: Content with id '202' is of type …
Ken Palmer
  • 2,355
  • 5
  • 37
  • 57
2
votes
1 answer

EpiServer XhtmlString richtext is changing my html

my html is:
this is the result after pasting to the richtext: …
avi cohen
  • 61
  • 6
2
votes
1 answer

EPiServer 9 - Add block to new page programmatically

I have found some suggestions on how to add a block to a page, but can't get it to work the way I want, so perhaps someone can help out. What I want to do is to have a scheduled job that reads through a file, creating new pages with a certain…
kilarsen
  • 23
  • 3
2
votes
0 answers

Routing with Angular 2 and EpiServer

Is it possible for Angular 2 to ignore whatever comes before a route/path? I'm using Angular 2 on my EpiServer website. When I press a link using Angular, it removes whatever path that comes before it. For example: User navigates to…
Hazar Askari
  • 185
  • 1
  • 1
  • 6
2
votes
0 answers

Use specific CacheProvider for a Dynamic Data Store

We have some problems due to caching in EPiServer dynamic data stores, as different servers keep old data around. We need to ensure that when we fetch and save some items to/from the database, these items are not cached, but retrieved and saved…
oligofren
  • 20,744
  • 16
  • 93
  • 180
2
votes
3 answers

EPiServer Error during import: System.ArgumentException: Cannot be the same as destination

I am trying to import content from our UAT server to our Production server. The Production database was originally cloned from the UAT database, both code bases are the same. My procedure when exporting/importing is really straight forward, first:…
a4bike
  • 641
  • 1
  • 6
  • 12
2
votes
3 answers

How to add settings for a scheduled job in Episerver

I need to add a checkbox that can be used to change the behaviour of a scheduled job in Episerver: public class ImportAlarms : ScheduledJobBase { /*I want the editor to set this*/ public bool CheckBox { get; set; } …
Dujskan
  • 115
  • 1
  • 10
2
votes
1 answer

Episerver customise complex data type in grid in edit mode

Im currently working on episerver 9 cms. I have my pages/blocks as follows: public class MenuBlock : SiteBlockData { [Display( Name = "Menu title", Description = "* Required", GroupName =…
user1641519
  • 377
  • 1
  • 4
  • 17
2
votes
1 answer

How to render a page listing items(like news items) in a content area in EpiServer CMS

I want to display a list of items (I am using a page listing block to display the list of pages.) in a content area.When I drag and drop the page type in content area I get an error stating"Castle.Proxies.ListingBlockProxy". Below Is my…