i've been trying to do the same method like other user who have the same problem with the :
Error 0002 : Error has occured, contact your webmaster
Incorrect data in 'blastchatc' table
i hve replace the code with my domain name..
but then the problem still havent resolve...
anyone know why.. pLease help... I've been trying so many time
currently the code at my defaults.blastchatc.php is as follow (the bc_getLiveSite() function and below):
What should i replace it with?
function bc_getLiveSite($ls) {
//if $mosConfig_live_site variable is not available, then create it from request data
//$mosConfig_live_site - holds full URL of your website (no trailing slash at the end), examples:
http://www.xxx.com or
http://www.xxx.com/something
//if you are getting this error, replace code "echo ...." with $mosConfig_live_site = "http://www.businessialogy.com";
if (!$ls) {
$ls = substr_replace(JURI::root(), '', -1, 1);
}
if (!$ls) {
echo "\$mosConfig_live_site variable not defined by system, adjust dynamic.blastchatc.php bc_getLiveSite() function.";
exit;
}
return $ls;
}