One thought on “How to resolve Base Site Template (BST) propagation in Liferay

  1. Satya says:

    It seems last propagation got failed and so it’s not triggering it again. Run below query to find if it was failed last time:

    select * from LAYOUTSET where settings_ like '%merge-fail-count%';

    It should returns more than 1 rows. It tells how many times propagation got failed for any site.
    Use below query to resolve it:

    Update LAYOUTSET Set SETTINGS_='showSiteName=true' where LAYOUTSETID IN 
      (select LAYOUTSETID  from LAYOUTSET where settings_ like '%merge-fail-count%'); 

Leave a Reply

Your email address will not be published. Required fields are marked *