Legacy Knowledge Base
Published Sep. 10, 2025

com.liferay.portal.servlet.filters.i18n.I18nFilter has been removed. What do I need to do?

Written By

Sorin Pop

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

Legacy Article

You are viewing an article from our legacy "FastTrack" publication program, made available for informational purposes. Articles in this program were published without a requirement for independent editing or verification and are provided"as is" without guarantee.

Before using any information from this article, independently verify its suitability for your situation and project.

Issue

  • During startup (or upgrade) we see this error in the logs
ERROR [main][VerifyProperties:163] Portal property "com.liferay.portal.servlet.filters.i18n.I18nFilter" is obsolete

Why was this removed, and what do we need to do now?

Environment

  • 2023.q4.0

Resolution

  • You probably see this because you have this filter disabled (property set to false) in your portal-ext file.
  • The I18nFilter filter was moved from the liferay core (portal-impl) to a separate module (new module portal-i18n-filter). This change was done for several filters before, and the same pattern was followed here.
  • Once a filter is moved to a separate module, there are no portal properties that you can set in order to disable it. (so you should remove that line from your portal-ext)
  • However, since the I18nFilter filter is an OSGI component now, called com.liferay.portal.i18n.filter.internal.I18nFilter, you should be able to blacklist it to avoid being executed if you so wish (see Blacklisting OSGi Components
Did this article resolve your issue ?

Legacy Knowledge Base