Topic: ChatBox (ajax) on index.php
there is ChatBox_ajax.zip by CodeXP (download and install)
set up height and width from Administration / plugins.
open index.php, find (line ~ 39):
require PUN_ROOT.'header.php';
add after:
include PUN_ROOT.'chatbox.php';
open chatbox.php, remove lines wich include header.php and footer.php
open /include/js/ajax_chat.js, find:
http.open('POST', 'chatbox.php', true);
replace with:
http.open('POST', 'index.php', true);
find again:
http.open('POST', 'chatbox.php', true);
replace with:
http.open('POST', 'index.php', true);
find:
http.open('POST', 'chatbox.php?get_host='+hostId, true);
replace with:
http.open('POST', 'index.php?get_host='+hostId, true);
find:
http.open('POST', 'chatbox.php?del='+delThis+'&usr='+usrPostCount, true);
and replace with:
http.open('POST', 'index.php?del='+delThis+'&usr='+usrPostCount, true);
save/upload & check your index.php
if you have error post here... maybe i miss something