Blogs
This website uses cookies to ensure you get the best experience. Learn More.
Blogs
Liferay provides an option to configure password policy (refer), it provides an option to mention Password Expiry Time. Once the Password is expired then user will not be able to login to the system and when user tries to login, Liferay shows error message : Error: Your password has expired. Please contact an administrator to reset your password. Admin needs to reset the user...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA20: docker run -it -p 8080:8080 liferay/portal:7.4.3.20-ga20 For more information on using the official Liferay docker image...
Liferay IntelliJ 2.0.1 plugin has been made available. Head over to this page for downloading. This plugin supports IntelliJ 213 and greater. Release Highlights: upgrade sinceBuild to 213 bug fix for starting liferay tomcat bundle with java 8 support for more versions of servers jboss wildfly 18.0, 20.0, 23.0 jboss eap 7.1, 7.2,...
Important issue fixed: Update Spring to 5.2.20 Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA19: docker run -it -p 8080:8080 liferay/portal:7.4.3.19-ga19 For more...
Many UI teams prefer building Liferay DXP Theme using gulp instead of the Liferay Theme Builder. For example, cd themes/my-themenpm installgulp build However, Liferay has not documented ways to integrate the above to a Maven project pom.xml. Here is a sample solution: { "name": "my-theme", "version": "1.0.0", ...
The following versions of PortletMVC4Spring were released on April 1, 2022 AD: (NOT an April Fools joke, BTW -- the release actually occurred on that day) Version Description 5.3.2For use with Spring Framework 5.3.x (tested with 5.3.18)Release Notes For download coordinates and archetype usage, see the ...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA18: docker run -it -p 8080:8080 liferay/portal:7.4.3.18-ga18 For more information on using the official Liferay docker image...
The new release supports for more servers as well as some improvements for user development. Community Download https://liferay.dev/-/ide-installation-instructions Community Download https://liferay.dev/-/ide-installation-instructions Customers Download https://customer.liferay.com/downloads/-/download/liferay-workspace-with-developer-studio-3-9-6 ...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA17: docker run -it -p 8080:8080 liferay/portal:7.4.3.17-ga17 For more information on using the official Liferay docker image...
Introduction So my friend Thiago Moreira posted the following (slightly edited) message to our internal Slack: Hey, so I've built a module for 7.4 GA5, but when it is deployed to 7.4 GA16, I get a bunch of "unresolved requirement" exceptions and the module won't be available. Is there something I need to set so my module will work on both GA5 and...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA16: docker run -it -p 8080:8080 liferay/portal:7.4.3.16-ga16 For more information on using the official Liferay docker image...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA15: docker run -it -p 8080:8080 liferay/portal:7.4.3.15-ga15 For more information on using the official Liferay docker image...
Hi guys, quick tip: I've noticed that special characters present in Language.properties file appears as a question mark (?) in configuration interfaces generated by Object Class Definit (@Meta.OCD) when using Java 8, like shown below: My Language.properties file has only one line: address=Endereço And my configuration interface has this attribute definition: @Meta.AD( ...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA14: docker run -it -p 8080:8080 liferay/portal:7.4.3.14-ga14 For more information on using the official Liferay docker...
Another quick one this week... A community member reached out and asked for help with a problem on their DXP Cloud site. They were already working with DXP Cloud support, but they had been struggling with the issue for over a week and were trying to get help from all corners... When they accessed their site using the direct URL (an internal URL that all DXP Cloud admins have access to), the...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA13: docker run -it -p 8080:8080 liferay/portal:7.4.3.13-ga13 For more information on using the official Liferay docker...
Just a quick one today... In previous versions of Liferay, if you were browsing a site as a guest but wanted to access a private page or a private site, Liferay would automagically show you the login form so you could authenticate before accessing the page or site. This has been changed in 7.4. It was determined that just by showing the login form, Liferay was leaking the fact that the page...
Download options Liferay Portal and Liferay Commerce share the same Bundle and Docker image. To get started using either Liferay Portal or Liferay Commerce, choose the best download option suited for your environment below. Docker image To use Liferay Portal 7.4 GA12: docker run -it -p 8080:8080 liferay/portal:7.4.3.12-ga12 For more information on using the official Liferay docker...
In the sequel for Implement Predictive Search in Liferay Part 1: Autocomplete I’ll demonstrate how to create a predictive search in another flavor: search as you type. It works like this: the user starts entering keywords in the search bar and gets instant content suggestions. The suggestions are direct links to contents. In the previous demonstration I used a headless...
Introduction Recently I was asked how to implement MDC and/or NDC in Liferay 7.4, and since I thought it might be interesting to a wider audience, I'm going to blog about it here. Background In a multithreaded, multiuser environment such as in a web application like Liferay, different threads in the container will be handling different requests, but likely each request is doing something...