After upgrading PbootCMS to the latest version (3.2.8), numerous tabs on list pages – including the most frequently used ones – have become non-functional.[list:visits]Access Count Tag
This issue arises because the latest official list query SQL has been modified from querying all columns to querying only specified columns.
The solution is as follows:
Original list – Call Tag
{pboot:list scode=0 num=50 }Change to
{pboot:list scode=0 num=50 lfield="*"}Increasedlfield="*"This solves the problem without the need to modify the program files.
PbootCMS official documentation for the lfield tag:
lfield="a,b" Restrict query fields for list data to improve big data performance, e.g.lfield="title,content"