Hello to everybody in this forum 
I just installed a fresh copy of PureChatOperator with five operators trial license but I can't log in: the web sites reports me a message like "'Purechat' is undefined'
I compiled it successfully into my VS2008 and applied on production web site with no special problems but the one above.
There is no password for accessing: does anybody have a clue about this problem?
Page is right here: http://www.info2001.it/public/Forms/pureChat/operator/PureChatOperator.aspx
Thanks
<PureChat>
<settings>
<!-- how frequently the application polls the server -->
<add key="ChatPollInterval" value="1" />
<!-- how long to keep a user waiting in an unstarted chat -->
<add key="ChatPollWaitDelay" value="45" />
<!-- the smtp server to use for sending chat logs. leave this value blank to use the smtp settings in the <system.net /> configuration section. -->
<add key="SmtpServer" value="smtp.info2001.it" />
<add key="SmtpPort" value="25" />
<!-- the smtp user and password for sending chat logs. Leave blank if they are not required. -->
<add key="SmtpUser" value="**************" />
<add key="SmtpPassword" value="**************" />
<!-- the email address chat logs and other messages will be sent to -->
<add key="NotifyEmail" value="info@info2001.it" />
<!-- the email address mails will be sent from -->
<add key="NotifyEmailFrom" value="info@info2001.it" />
<!-- the password for the operator's page (make sure to change this!) -->
<add key="OperatorPassword" value="" />
<!-- url for an image to show when an operator is available for chat -->
<add key="ChatAvailableImageUrl" value="pureChat/Images/Status/requestChat.png" />
<!-- url for an image to show when an operator is not available for chat (leave blank to render nothing when no operator available) -->
<add key="ChatUnavailableImageUrl" value="pureChat/Images/Status/requestChat_d.png" />
<!-- relative url to an image to use for a header (certain styles may have to be updated if this is changed) -->
<add key="HeaderImageUrl" value="~/public/Forms/pureChat/images/header.png" />
<!-- whether to allow a user to email you directly (at the NotifyEmail address specified above)
when an operator doesn't join a chat after the ChatPollWaitDelay interval specified above. -->
<add key="AllowDelayedChatMail" value="true" />
<!-- Set this to true to allow users to rate their chat sessions from 1 to 5 after the chat is completed. -->
<add key="AllowUserRating" value="true" />
<!-- absolute url to a location to take the user to when they click on the unavailable chat image (leave blank for nowhere)-->
<add key="UnavailableUrl" value="" />
<!-- Set this to true to require the user to enter their name and a question before they enter a chat. Set it to false to take them directly to a chat session. -->
<add key="RequireUserInformation" value="true" />
<!-- How long, in days, chats will be stored in memory -->
<add key="ClearChatsAfter" value="7" />
<!-- How frequently, in seconds, the chat request control will poll to see if an operator is available. If this is set to 0, it will not poll. -->
<add key="ChatRequestPoll" value="1" />
<!-- the time of day to send the chat summary email -->
<add key="ChatSummaryTime" value="12:00 AM" />
<!-- comma separated list of domains allowed to use the client javascript. leave blank to not validate domains-->
<!-- example: <add key="AllowedDomains" value="www.example.com, store.example.com" -->
<add key="AllowedDomains" value="" />
</settings>
<!-- All hotkeys must be enclosed in [] to be used. If the hotkey for a shortcut is "g", type "
", and it will be replaced by the text of the shortcut. -->
<!-- If you wish to use the literal character '[' inside your text, you can escape it by typing '[['. -->
<!-- you can use {user} as a placeholder for the user name (if they enter one), and {operator} as a placeholder for the operator's name. -->
<!-- if your application is not running under full trust, you will need to restart your application for changes to the shortcuts or other settings to take effect. -->
<shortcuts>
<shortcut hotkey="g" text="Hello, this is {operator}. How can I help you?" />
<shortcut hotkey="b" text="Thanks for coming!" />
<shortcut hotkey="t" text="I'm going to place you back into the queue, and another operator will be able to assist you." />
</shortcuts>
</PureChat>