Fatal Error nach hierarchie
Verfasst: 20.05.2003 18:31
Habe gerade den Hierarchie Mod installiert!
Habe alle add und replace Dateien gemacht!
Wenn ich jetzt auf meine Domain will kommt:
Fatal error: Call to undefined function: phpbb_realpath() in /var/www/web76/html/phpBB2/includes/template.php on line 233
Hier ein Auschnitt aus meiner template.php um die Zeile 233 herum!
* Generates a full path+filename for the given filename, which can either
* be an absolute name, or a name relative to the rootdir for this Template
* object.
*/
function make_filename($filename)
{
// Check if it's an absolute or relative path.
if (substr($filename, 0, 1) != '/')
{
$filename = phpbb_realpath($this->root . '/' . $filename);
}
if (!file_exists($filename))
{
die("Template->make_filename(): Error - file $filename does not exist");
}
return $filename;
}
Habe alle add und replace Dateien gemacht!
Wenn ich jetzt auf meine Domain will kommt:
Fatal error: Call to undefined function: phpbb_realpath() in /var/www/web76/html/phpBB2/includes/template.php on line 233
Hier ein Auschnitt aus meiner template.php um die Zeile 233 herum!
* Generates a full path+filename for the given filename, which can either
* be an absolute name, or a name relative to the rootdir for this Template
* object.
*/
function make_filename($filename)
{
// Check if it's an absolute or relative path.
if (substr($filename, 0, 1) != '/')
{
$filename = phpbb_realpath($this->root . '/' . $filename);
}
if (!file_exists($filename))
{
die("Template->make_filename(): Error - file $filename does not exist");
}
return $filename;
}