Legacy Knowledge Base
Published Jul. 2, 2025

Content Pages are marked as Draft without any user interaction

Written By

Sivakumar Perumal

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

The content pages are marked as Draft without any user interaction

Steps to Reproduce:

  1. Add a new content page

  2. Add an asset publisher widget to the page

  3. Configure the Asset Publisher with the following

    Asset Selection > Source
    Asset Type > Web Content Article
    Web Content Article Structures > Basic Web Content
    Display Settings > Sent And Enable
    Subscribe

  4. Save Asset Publisher configuration and publish page. Verify page is published and not in "Draft" status. Publish a new Basic Web Content

  5. Either wait for the allotted time in the System Settings > Assets > System Scope > Asset Publisher > Check Interval property, or execute the following groovy script which changes the scheduler to fire every 1 minute:

    import com.liferay.portal.kernel.scheduler.SchedulerEngineHelperUtil;
    import com.liferay.portal.kernel.scheduler.SchedulerEngineHelperUtil;
    import com.liferay.portal.kernel.scheduler.StorageType;
    import com.liferay.portal.kernel.scheduler.TimeUnit;
    import com.liferay.portal.kernel.scheduler.Trigger;
    import com.liferay.portal.kernel.scheduler.TriggerFactoryUtil;

    String className = "com.liferay.asset.publisher.web.internal.messaging.CheckAssetEntryMessageListener";

    Trigger trigger = TriggerFactoryUtil.createTrigger(className, className, null, null, 1, TimeUnit.MINUTE);

    SchedulerEngineHelperUtil.update(trigger, StorageType.MEMORY);
  6. View the page in the Site Builder menu.

Actual result: Page now has a "Draft" icon next to it.
Expected result: Page stays in the published state.

Environment

  • Liferay DXP 7.2, 7.3

Resolution

  • The observed behavior is a known issue LPS-130746 and will be fixed in dxp-14-7210 for DXP 7.2 and dxp-2-7310 for DXP 7.3.

Additional Information

Did this article resolve your issue ?

Legacy Knowledge Base