Seite 1 von 1

was ist hier falsch ???

Verfasst: 22.10.2003 21:42
von phpbbaby
hallo,

kann mir jemand bitte kuirz auf die sprünge helfen?

bekomme folgende fehlermeldung beim aufrufen der datei in der navigation:

Template->make_filename(): Error - file does not exist
<?php
define('IN_PHPBB', true);

$phpbb_root_path = './'; // <-- !!
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);

$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);

include($phpbb_root_path . 'includes/page_header.'.$phpEx);

$template->set_filenames(array(
'body' => '../teilnehmer_body.tpl')
);

$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>

Verfasst: 22.10.2003 21:45
von PhilippK
Ich glaube das hier könnte die Ursache sein:

Code: Alles auswählen

'body' => '../teilnehmer_body.tpl')
- da sollte wohl besser hin:

Code: Alles auswählen

'body' => 'teilnehmer_body.tpl')
Gruß, Philipp

Verfasst: 22.10.2003 21:46
von Dennis63
$template->set_filenames(array(
'body' => '../teilnehmer_body.tpl')
);
Sicher, daß die tpl Datei in ../ liegt?

edit: Mist zu langsam ;)

Grüße
Dennis

Verfasst: 22.10.2003 21:52
von phpbbaby
oh mann, dass war es - sollte mal pause machen :D


danke für die schnelle hilfe!!! :)