Seite 2 von 3

Verfasst: 28.12.2005 13:40
von hagily
poste mal deine Forumsadresse.

Verfasst: 28.12.2005 13:41
von Trenc

Verfasst: 28.12.2005 13:42
von Miroerr
Die Datei sollte eigentlich im Forumroot liegen.
Wenn dein Forum auf www.meinforum.de liegt dann muss die Datei hier liegen: www.meinforum.de/meineupdatedatei.php

Verfasst: 28.12.2005 13:43
von hagily
Hi!!
verline mal bitte deine db_update_portalbackgroundimage_addon.php
KB:datei

Verfasst: 28.12.2005 13:48
von Trenc

Verfasst: 28.12.2005 13:49
von hagily
hagily hat geschrieben:Hi!!
verline mal bitte deine db_update_portalbackgroundimage_addon.php
KB:datei
Der Link KB:datei war keine Verschönerung 8)

Verfasst: 28.12.2005 13:50
von bar_ney
Du musst die Dateiende von .php in .txt ändern.

Verfasst: 28.12.2005 13:53
von Trenc

Hinweis

Verfasst: 28.12.2005 13:56
von gloriosa
Hallo,
öffne die db_update_portalbackgroundimage_addon.php und suche am Anfang Folgendes

Code: Alles auswählen

include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'config.'.$phpEx);
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'includes/db.'.$phpEx);
und ersetze es mit diesem

Code: Alles auswählen

include_once($phpbb_root_path . 'extension.inc');
include_once($phpbb_root_path . 'config.'.$phpEx);
include_once($phpbb_root_path . 'common.'.$phpEx);
include_once($phpbb_root_path . 'includes/constants.'.$phpEx);
include_once($phpbb_root_path . 'includes/db.'.$phpEx);
Dann sollte es funktionieren ! :wink:

Verfasst: 28.12.2005 13:56
von hagily
suche in der db_update_portalbackgroundimage_addon.php

Code: Alles auswählen

include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'config.'.$phpEx);
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'includes/db.'.$phpEx);
ersetze mit.

Code: Alles auswählen

include_once($phpbb_root_path . 'extension.inc');
include_once($phpbb_root_path . 'config.'.$phpEx);
include_once($phpbb_root_path . 'common.'.$phpEx);
include_once($phpbb_root_path . 'includes/constants.'.$phpEx);
include_once($phpbb_root_path . 'includes/db.'.$phpEx);