Support Forums
 
  Forum  Support  Installation He...  Error: AJAX not yet Enabled!
Previous Previous
 
Next Next
New Post 12/18/2010 12:44 PM
  modulo
4 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
Ok, so i don't know what's happened in my case... I will continue to investigate. Thank you.
 
New Post 12/22/2010 9:29 AM
  modulo
4 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
I have two versions, the first works fine in DNN5.5, the other is failed with DNN5.6 from the same server. I added the line for IIS7 and my two web.config are similar.

From my failed version, i see a js error on my windows status bar :
Message: 'SWIRL' is undefined.
 Line: 78
 Character: 13
 Code: 0
 URI: http://[mydomain]/DesktopModules/SWIRLChat/js/ChatLog.js


If i try to disable AjaxPro, I get an other error :
Error: is currently unavailable.
DotNetNuke.Services.Exceptions.ModuleLoadException: The node to be removed is not a child of this node.
---> System.ArgumentException: The node to be removed is not a child of this node. at System.Xml.XmlNode.RemoveChild(XmlNode oldChild) at SWIRL.DNN.Modules.SWIRLChat.HostSettings.cmdDisable_Click(Object sender, EventArgs e)
--- End of inner exception stack trace ---

May be you can have got an idea about my problem with these erros.
Thank you.
 
New Post 12/22/2010 9:48 AM
  Will Gillen
64 posts
No Ranking




Re: Error: AJAX not yet Enabled! 
Can you open a ticket with our support desk so that we can communicate some config files back and forth.  I don't want to do this through the forums.  Send an email to:  support@swirlhost.com and include the problem you are experiencing.  This will allow our support team to review the problem and help you get the chat module working in your environment.

-- Will Gillen, Swirlhost Inc.
 
New Post 1/7/2011 2:19 PM
  Deep Freezed
1 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
I got the same error on DNN 5.6.

I was migrating an old DNN site from 4.8.4. SWIRL chat worked up to 5.5.1. Broke on 5.6.

There is something up with the UrlRewriteModule of 5.6. ashx handler request were not getting picked up the the handlers in SWIRL chat. I brute forced it with URL rewriter rules as below. Now it works on 5.6. Look at the event log to see the handler errors and figure out your path.

SiteUrls.config

<RewriterRule>
      <LookFor>.*prototype.ashx(.*)</LookFor>
      <SendTo>~/DesktopModules/SWIRLCHAT/prototype.ashx</SendTo>
    </RewriterRule>
        <RewriterRule>
      <LookFor>.*core.ashx(.*)</LookFor>
      <SendTo>~/DesktopModules/SWIRLCHAT/core.ashx</SendTo>
    </RewriterRule>
        <RewriterRule>
      <LookFor>.*converter.ashx(.*)</LookFor>
      <SendTo>~/DesktopModules/SWIRLCHAT/converter.ashx</SendTo>
    </RewriterRule>
        <RewriterRule>
      <LookFor>.*SWIRLChat.ashx(.*)</LookFor>
      <SendTo>~/DesktopModules/SWIRLCHAT/SWIRL.DNN.Modules.SWIRLChat.AJAX,SWIRLChat.ashx</SendTo>
    </RewriterRule>



 
New Post 1/9/2011 9:19 PM
  JB
7 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
THANK YOU!!!

We now have chat again with DNN 5.6.
 
New Post 1/10/2011 3:15 PM
  Apollo Software
1 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
i can confirm the solution of Deep Freezed works. The problem of course are the human friendly urls. Anyways, chat is working again :)
 
New Post 1/10/2011 3:43 PM
  modulo
4 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
From SQL Table named PortalAlias, you must verify than your record www.yourdomain.com is joined to another record www.yourdomain.com/portalid/[PortalID]. If you add this portalid record for each subportals, SwirlChat should work with DNN5.6


 
New Post 1/12/2011 2:28 AM
  Hansie
1 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
Just to confirm... if you log in as Host and go to Admin/Site Settings or to the settings page of another portal through Host/Portals, you need to add a new portal alias to the site (www.yourdomain.com/portalid/[PortalID]) for example www.swirlhost.com/portalid/1. That solved the problem for us. Thanks modulo for the info...
 
New Post 2/22/2011 3:13 PM
  CHARTOMATZIS THEONAS -
1 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
I have the same problem. I just bought the swirlchat and i get the same error. Could you please help me?
I have iis7 and dnn 5.6 with sqlserver 2008 express. 
I just walked through the documentation but i didn't find a way to solve it. 

Thank you in advance.
 
New Post 2/22/2011 3:28 PM
  Will Gillen
64 posts
No Ranking




Re: Error: AJAX not yet Enabled! 
The most commonly reported problems regarding Swirlchat in the latest version of DotNetNuke are summed up by the following workarounds:


IIS 7 / IIS 7.5


If you are running DotNetNuke on a server with IIS7 or IIS7.5, you will need to make a manual change to your Web.Config.
The setting is in the "system.webServer" element in the Web.Config file.  See the following for where the setting should be made.
The line which needs to be added is:
<add name="AJAX_SwirlChat" path="DesktopModules/SWIRLChat/*.ashx" verb="POST,GET" type="AjaxPro.AjaxHandlerFactory, AjaxPro.2" />


Here is an example of "where" this line needs to be added
<system.webServer>
   <!-- The system.webServer section is required for IIS7 compatability It
is ignored by IIS6-->
   <modules>
     <...>
   </modules>
   <handlers>
     <add name="AJAX_SwirlChat" path="DesktopModules/SWIRLChat/*.ashx" verb="POST,GET" type="AjaxPro.AjaxHandlerFactory, AjaxPro.2" />
     <...>
   </handlers>
</system.webServer>




DotNetNuke Version 5.6.x


If you are running DotNetNuke version 5.6 or higher, there were some changes in DNN which handle portal aliases differently.
In order for the Ajax Handler to work, you will need to add a custom Portal Alias to the portal where you have installed Swirlchat.


if you log in as Host and go to Admin/Site Settings or to the settings page of another portal through Host/Portals, 
you need to add a new portal alias to the site (www.yourdomain.com/portalid/[PortalID]) for example www.swirlhost.com/portalid/1.

-- Will Gillen, Swirlhost Inc.
 
New Post 3/22/2011 10:40 AM
  Mark Chamberlain
1 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
I just wanted to contribute to this; I received this error on my development installation but not my production installation.  The only difference between the two is my production installation has the DotNetNuke application pool pipeline mode set to Classic mode, which is dictated by the ActiveDirectory authentication provider & auto-logon settings we desire.  By default I believe the IIS7 app pool pipeline mode would be set to Integrated...switching this on my development installation fixed the problem without any changes to web.config.
 
New Post 7/17/2011 12:47 PM
  peter havlis
1 posts
No Ranking


Re: Error: AJAX not yet Enabled! 
Will I just downloaded SwirlChat 2.1.6 and installed it on a DNN v 5.06.02 instance. After enabling ajax pro in the module "host settings" and entering license keys, I still receive the "ajax not enabled" message and the module does not work. PLease help.
 
Previous Previous
 
Next Next
  Forum  Support  Installation He...  Error: AJAX not yet Enabled!
     

DotNetNuke Gold Benefactor

Copyright (c) 2012 Swirl AJAX ChatRoom Module
Privacy Statement | Terms Of Use