You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get a white page when the content is too big. After Debugging I found that the problem is:
$content .= preg_replace('/(<%|%>|<\?php|<\?|\?>|<script\s+language\s*=\s*[\"\']?\s*php\s*[\"\']?\s*>)/',"<?php echo '\$1'; ?>\n", $curr_split); in smarty_internal_runtime_updatecache.php.A quick fix for this would be to add {nocache} in the template. But for the other preg_replace in smarty_internal_runtime_codeframe.php couldn't find any quick fix. The $output should be split , preg_replaced and finally merged again
The text was updated successfully, but these errors were encountered:
I get a white page when the content is too big. After Debugging I found that the problem is:
$content .= preg_replace('/(<%|%>|<\?php|<\?|\?>|<script\s+language\s*=\s*[\"\']?\s*php\s*[\"\']?\s*>)/',"<?php echo '\$1'; ?>\n", $curr_split);
in smarty_internal_runtime_updatecache.php.A quick fix for this would be to add{nocache}
in the template. But for the other preg_replace in smarty_internal_runtime_codeframe.php couldn't find any quick fix. The $output should be split , preg_replaced and finally merged againThe text was updated successfully, but these errors were encountered: