|
Last updated: 02/22/2012
This error may be caused on large pages - over 50,000 characters or so.
The issue is with the php
backtrack_limit, which gets hit processing regular expressions.
My fix for this is to edit the global.php
and add this in the function template:
if(strlen($contents) < 50000) { for ($i=0; $i<count($hide); $i++) {
............more code here................ } }
This should fix large template files.
blog comments powered by
|