Problem in using cutechatstandalone messanger

Last post 05-31-2010, 3:22 AM by cutechat. 3 replies.
Sort Posts: Previous Next
  •  05-27-2010, 9:04 AM 61385

    Problem in using cutechatstandalone messanger

    i have used cutechatstandalone messanger trial version .  on some PC it's working fine and some where it's giving problem
    1-after login as a admin when we click on messanger link it opens chat window after that i include user for private messaging(one to one) then i click to open window for private messaging it doesn't open ,giving error
     
    Inside Scripts Documents
     
    error message in LoadScripts.aspx (dynamic)

    if(args&&args.length)

    {

    for(var i=0;i<list.length;i++)

    {

    list[i].apply(window,args); //here giving error that javascript object is required

    }

    }

    else

    2- even when i open browser dialog box appear with warning message
    ERROR MESSAGE-" Microsoft Internet Explorer's Enhanced security configuration is currently enabled on your server. This enhanced level of security reduces the risk of  attack from Web-based  content that is not seceure ,but it may also prevent website from diplaying correctly and restrict access to network resources "
    3-i am using intrnet explorer 6 as web browser, window Xp as OS ,SQL server 2008 as database, MS visual studio 2008
     
     
     
     
  •  05-27-2010, 11:50 PM 61408 in reply to 61385

    Re: Problem in using cutechatstandalone messanger

    HI bhanukushwah ,
     
    Is your site online? If so, pleaes send the test url to [email protected], I need to do some tests.
     
    And please send me the error message which IE browser get in the left bottom.
     
    Regards,
     
    ken
  •  05-28-2010, 12:28 AM 61409 in reply to 61408

    Re: Problem in using cutechatstandalone messanger

    it's giving error on pop up
    your security setting doesn't allow to web site to use Active X controll installed on your computer this page may not display correcrtly

    when i click on messanger link on home page for prive chat it's giving error that
    "javascript object is required" this ERROR occurs in LoadScripts.aspx file(which is dynamically created) 

    Inside Scripts Documents

    error message in LoadScripts.aspx (dynamic)
     
    if(args&&args.length)

    {

    for(var i=0;i<list.length;i++)

    {

    list[i].apply(window,args); //here giving error javascript object is required

    }

    }

  •  05-31-2010, 3:22 AM 61446 in reply to 61409

    Re: Problem in using cutechatstandalone messanger

    Hi,
     
    We can't reproducet this error.
     
    Can you change the code , and do some test ?
     
    You can open the CuteSoft_Client/CuteChat/Script/chatclient.js ,  line 222 ,  function _InvokeChatEvent(name,args)
     
    modify the function to :
     
    function _InvokeChatEvent(name,args)
    {
     var list=_chatEventMap[name];
     if(list==null)return;
     
     //so that if new handler attached , the handler should not handle this event.
     list=list.concat();
     
     if(args&&args.length)
     {
      for(var i=0;i<list.length;i++)
      {
       try
       {
        list[i].apply(window,args);
       }
       catch(x)
       {
        alert("Error on event : "+name+", "+x.message+" at "+_InvokeChatEvent.caller);
        alert("Event Handler : "+list[i]);
       }
      }
     }
     else
     {
      for(var i=0;i<list.length;i++)
      {
       list[i]();
      }
     }
    }
     
    When you get the error message box , please post the content (by CTRL+C on the box)
     
    Once we get the details, we can fix it quickly.
     
    Regards,
    Terry
View as RSS news feed in XML