Yes, shotbox can kill especially shared server quite easy.
I still do not understand db import.
Steps:
1. You installed module on production site directly, did not work?
2. You installed module on your test site it worked?
3. You imported test db to production db, stopped to work?
(whole db or which tables did you import?)
Let's try this:
in blastchatc.php file replace this:
QUOTE:
function user_update($c_time, $serverid = null, $logged=1) {
global $database, $myss;
$idle_time = mosGetParam($_REQUEST, 'idle_time', '');
$rid = mosGetParam($_REQUEST, 'rid', 0);
$rsid = mosGetParam($_REQUEST, 'rsid', 0);
$rname = mosGetParam($_REQUEST, 'rname', '');
with this:
QUOTE:
function user_update($c_time, $serverid = null, $logged=1) {
global $database, $myss;
$idle_time = '';
$idle_time = $_GET['idle_time'];
$rid = 0;
$rid = $_GET['rid'];
$rsid = 0;
$rsid = $_GET['rsid'];
$rname = '';
$rname = $_GET['rname'];
You should definatelly try to get a rid of error that javascript console in FireFox prints when you move mouse over username in module (check attached image)
