Błąd w includes/template.php(127) : eval()'d code on line 82
: 15 maja 2005, 22:41
Serwer Apoache 2, mysql 4.x
błąd:
co z tym zrobić 
błąd:
dotyczy tej funkcji:
Fatal error: Allowed memory size of 2097152 bytes exhausted (tried to allocate 184320 bytes) in /home/web/web-8/WWW/web-255/includes/template.php(127) : eval()'d code on line 82
Kod: Zaznacz cały
function pparse($handle)
{
if (!$this->loadfile($handle))
{
die("Template->pparse(): Couldn't load template file for handle $handle");
}
// actually compile the template now.
if (!isset($this->compiled_code[$handle]) || empty($this->compiled_code[$handle]))
{
// Actually compile the code now.
$this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]);
}
// Run the compiled code.
eval($this->compiled_code[$handle]);
return true;
}