leider hab ich hier im forum nichts zu meinem Problem gefunden was mir geholfen hat...
ich habe das Problem, dass ich die Ajax ShoutBox wie in der Anleitung angegeben ist, installiert habe. Nun habe ich das Problem das mir diese jedoch nicht angezeigt wird!
1. SQL
Den SQL-Eintrag habe ich vorgenommen..
2. Copy
Code: Alles auswählen
1. Copy: root/ajax.php
To: ajax.php
2. Copy: root/bbcode.js
To: bbcode.js
3.Copy: root/js.php
To: js.php
4.Copy: root/static.js
To: static.js
5.
Copy: root/includes/functions_shoutbox.php
To: includes/functions_shoutbox.php
6.Copy: root/language/en/mods/shout.php
To: language/en/mods/shout.php
3. index.php
Code: Alles auswählen
Find:
$user->setup('viewforum');
Add after:
$user->add_lang('mods/shout');
Sieht nun so aus:
Code: Alles auswählen
.....
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');
$user->add_lang('mods/shout');
display_forums('', $config['load_moderators']);
....
Code: Alles auswählen
Find:
?>
Add before:
define('SHOUTBOX_TABLE', $table_prefix . 'shoutbox');
Sieht nun so aus:
Code: Alles auswählen
....
define('SHOUTBOX_TABLE', $table_prefix . 'shoutbox');
?>
Code: Alles auswählen
Find:
// The following assigns all _common_ variables that may be used at any point in a template.
$template->assign_vars(array(
Add after:
'U_SHOUT' => append_sid("{$phpbb_root_path}js.$phpEx"),
'U_SHOUT_BBCODE' => append_sid("{$phpbb_root_path}bbcode.js"),
'U_SHOUT_STATIC' => append_sid("{$phpbb_root_path}static.js"),
jetzt sieht es so aus:
Code: Alles auswählen
....
// The following assigns all _common_ variables that may be used at any point in a template.
$template->assign_vars(array(
'U_SHOUT' => append_sid("{$phpbb_root_path}js.$phpEx"),
'U_SHOUT_BBCODE' => append_sid("{$phpbb_root_path}bbcode.js"),
'U_SHOUT_STATIC' => append_sid("{$phpbb_root_path}static.js"),
'SITENAME' => $config['sitename'],
....
Mehr als in der Anleitung steht hab ich nicht gemacht.
Kann es vielleicht am Style liegen?
Kann mir da jemand helfen und sagen woran das vielleicht liegt?
Vielen Dank im vorraus für die Hilfe