It has as to install webmessenger in a site that already is ready, without having that to create a new domain for the same?
I have my site www.meusite.com, I created link Messenger:
<href= " BLOCKED SCRIPT ; “ onclick= " Chat_OpenMessenger () “>Messenger< /a>
I made import:
<script src= " WebMessenger/CuteSoft_Client/CuteChat/IntegrationUtility.js.aspx " type= " text/Javascript ">< /script>
When clico in link of the following errors:
http://www.meusite.com/WebMessenger/CuteSoft_Cliente/CuteChat/Messenger.Aspx,3423
“__cc_version” not this defining
window_error
The system works perfectly running on http://localhost/meusite
I do not understand how to use the right of my users of my database, then after a user register ja I add it in the table of the system webmessenge and use the following codes pra select them.
public override string FindUserLoginName(string nickName)
{
return RecuperaCampo("DisplayName", "CuteChat4_User", "DisplayName = '" + nickName + "'");
}
public override bool GetUserInfo(string loginName, ref string nickName)
{
if(RecuperaCampo("DisplayName", "CuteChat4_User", "DisplayName = '"+ loginName +"'") == "")
return false;
//UserData userdata = new UserData();
//if (!userdata.IsUsernameExists(loginName))
// return false;
nickName = loginName;
return true;
}