
Tag: Sitecore
Sitecore Form Regex Validation to check if date is in mm/dd/yyyy format
^(0[1-9]|1[0-2])/(0[1-9]|1\d|2[0-8])/(19\d{2}|20\d{2})|(0[13-9]|1[0-2])/(29|30)/(19\d{2}|20\d{2})|(0[13578]|1[02])/31/(19\d{2}|20\d{2})|(0[1-9]|1[0-2])/29/((19(([2468][048])|([13579][26]))|([2468][048])|([13579][26]))|(20(([2468][048])|([13579][26]))|([2468][048])|([13579][26]))))$ This regex pattern checks for dates in the mm/dd/yyyy format and also takes leap years into account. Here’s a breakdown of the regex: (0[1-9]|1[0-2]): Matches months from 01 to…
azure – Sitecore 10 AKS Development Instance – SQL Persistence
I have followed Barts’ excellent tutorial to get a development instance of Sitecore 10.2 up and running on AKS. github.com/bplasmeijer/Sitecore-Symposium-2020-Containers-AKS There is one flaw though, when the windows AKS node…
Azure Application Insights Articles – Perficient Blogs
Azure Application Insights, a feature of Azure Monitor, is a platform as a service (PaaS) offering from Microsoft Azure. It’s a lightweight Application Performance Management (APM) service for web applications used to monitor the live application, automatically detect performance anomalies, and provide analytic tools…