ich bekomme folgenden Fehler wenn ich einen post öffnen möchte.
Code: Alles auswählen
Fatal error: Allowed memory size of 8388608 bytes exhausted at (null):0 (tried to allocate 737280 bytes) in /usr/local/apache/www/web34/html/phpBB2/includes/template.php(127) : eval()'d code on line 321
Code: Alles auswählen
// Second: prepend echo ', append ' . "\n"; to each line.
$line_count = sizeof($code_lines);
for ($i = 0; $i < $line_count; $i++)
{
$code_lines[$i] = chop($code_lines[$i]);
if (preg_match('#<!-- BEGIN (.*?) -->#', $code_lines[$i], $m))
{
$n[0] = $m[0];
$n[1] = $m[1];
// Added: dougk_ff7-Keeps templates from bombing if begin is on the same line as end.. I think. :)
if ( preg_match('#<!-- END (.*?) -->#', $code_lines[$i], $n) )
Gruß Jörg