www.sumania.de
unten müsste der eigentlich dass anzeigen:
"Wer ist im Chat "
aber macht er nicht !
ich habe alle Dateien verändert !
Außer die index.php!
Denn wenn ich die verändere dann kommt immer ein Fehler !
Dass ist mal die install.txt:
Code: Alles auswählen
## EasyMod compliant
##############################################################
## MOD Title: phpBBChatSpot
## MOD Author: icedawg < chatspot@dreamviews.com > (N/A) http://www.dreamviews.com/chatspot
## MOD Description: This will add a live chat window to your forum so that
## registered users can talk to each other. Multiple rooms and
## private messages are supported. Integrated with phpBB and
## uses phpBB's users table, sessions, smilies, and more.
## Tested with multiple browsers.
## MOD Version: 1.0.0
##
## Installation Level: easy
## Installation Time: 25 Minutes
## Files To Edit: 6
.........
.........
.........
............
......
...............
............
...
#
#-----[ OPEN ]---------------------------------------------
#
index.php
#
#-----[ FIND ]---------------------------------------------
#
$template->assign_vars(array(
'TOTAL_POSTS' => sprintf($l_total_post_s, $total_posts),
#
#-----[ BEFORE, ADD ]--------------------------------------
#
// ******************** BEGIN phpBBChatSpot MOD ********************
require_once( $phpbb_root_path . 'chatspot_front.' . $phpEx );
// ******************** END phpBBChatSpot MOD ********************
#
#-----[ FIND ]---------------------------------------------
#
'L_MARK_FORUMS_READ' => $lang['Mark_all_forums'],
#
#-----[ AFTER, ADD ]--------------------------------------
#
// ******************** BEGIN phpBBChatSpot MOD ********************
'CHATSPOT_IDENTIFICATION' => $lang[ 'ChatSpot_id' ],
'TOTAL_CHATTERS_ONLINE' => sprintf( $lang[ 'How_Many_Chatters' ], $num_users_in_chat ),
'CHATTERS_LIST' => '<b>' . $users_in_chat . '</b>',
'L_CLICK_TO_JOIN_CHAT' => $lang[ 'Click_to_join_chat' ],
//'S_JOIN_CHAT' => append_sid( "chatspot/chatspot.$phpEx" . "?initialize=1" ),
//'CHATSPOT_NAME' => 'Lobby',
'L_LOGIN_TO_JOIN_CHAT' => $lang[ 'Login_to_join_chat' ],
// ******************** END phpBBChatSpot MOD ********************
http://www.sumania.de/index.txt
was habe ich falsch gemacht ?
oder liegt es an der index_body.tpl ?
http://www.sumania.de/templates/BMan1Bl ... x_body.txt
Code: Alles auswählen
#
#-----[ OPEN ]--------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ FIND ]--------------------------------------------
#
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/
#
#-----[ IN-LINE FIND ]------------------------------------
#
rowspan="2"
#
#-----[ IN-LINE REPLACE WITH ]----------------------------
#
rowspan="3"
#
#-----[ FIND ]---------------------------------------------
#
{LOGGED_IN_USER_LIST}</span></td>
</tr>
#
#-----[ AFTER, ADD ]--------------------------------------
#
<!-- ChatSpot MOD -->
<tr>
<td class="row1" align="left"><span class="gensmall">{CHATSPOT_IDENTIFICATION}<br />{TOTAL_CHATTERS_ONLINE}
<!-- BEGIN switch_user_logged_out -->
[ {L_LOGIN_TO_JOIN_CHAT} ]
<!-- END switch_user_logged_out -->
<!-- BEGIN switch_user_logged_in -->
[ <a href="javascript:void(0);" onClick="window.open('{S_JOIN_CHAT}','{CHATSPOT_NAME}','scrollbars=no,resizable=yes,width=640,height=550')">{L_CLICK_TO_JOIN_CHAT}</a> ]
<!-- END switch_user_logged_in -->
<br />{CHATTERS_LIST}
</span>
</td>
</tr>
<!-- End of ChatSpot MOD -->