01130: Pagelist evaluation crash on large lists
Description: My Site.LocalTemplates has:
[[#fotonews]] (:div:) >>lrindent round frame<< (:include {=$FullName} self=0 lines=4:) [[<<]][[<<]] >><< %right% [[{=$FullName} | {=$Titlespaced}: click here to read more...]] (:divend:) ---- [[<<]] [[#fotonewsend]] |
{=$Titlespaced}: click here to read more...?
|
The lrindent, round and frame come from wikistyleplus.
The pagelist in the Category.GroupFooter for the categories is:
---- [--'''{*$:Summary}'''--] (:pagelist link={*$FullName} fmt=#fotonews:) |
Pagelist evaluation crash on large lists |
and it works properly for about 45 to 50 articles, after that I get:
Lightroom.Shortcut-keys-for-metadata-keywords self=0 lines=4 ---------------------------------------------------------------------------- Lightroom: Shortcut Keys For Metadata & Keywords: click here to read more... ---------------------------------------------------------------------------- |
Lightroom.Shortcut-keys-for-metadata-keywords self=0 lines=4 Lightroom: Shortcut Keys For Metadata & Keywords: click here to read more... |
and so on until the end of the list, but the links "page name + click here to read more..." are correct. At first I though that it was related to the skin skittlish, but the same happens with the PmWiki skin.
The same thing also happens with PmWiki's own teasers. I have counted, it occurs on page #49 with Teasers.
Thanks
syv@911networks.com
HansB August 04, 2009, at 03:39 PM: By default Pmwiki allows only maximum 50 page includes. Your template uses the (:include .... :)
markup, so you should set the maximum higher in config.php, for instance
$MaxIncludes = 200;
Reference: LayoutVariables#MaxIncludes