Re: Integration in DNN

  •  07-26-2004, 11:07 AM

    Re: Integration in DNN

    vmasanas,

     
    - Should the connectionsTring be blank?
     
    You should put your own connectionsTring into it.
     
    For example, if you install the CuteChat table to a server 192.168.0.100, database name DotNetNuke, user name is test, password is test.  Your connectionsTring  will be as followings:
     

    server=192.168.0.100;database=DotNetNuke;uid=test;pwd=test;

     
    -  If I'm not wrong this (CuteChat.DNNLib.DNNSqlDataProvider,CuteChat.DNNLib) specifies a type and an assembly. Are you sure this are the names? DNNLib is not on my installation.
     
    You are right.  DNNLib is not the right name.
     
    We should use the CuteChat.DotNetNukeLib.dll instead.
     
    Please use the following web.config template:
     

    <configSections>

        <section name="cuteChat" type="CuteChat.ChatConfigurationHandler,CuteChat" />

    </configSections>

    <cuteChat

        WebFilePath="~/CuteChat/"

        IPAddressPolicy="*"

        BadWords=","

        AllowAnonymous="Allow"

        LoginUrl="~/Login.Aspx"

        HelpUrl="http://www.cutesoft.net/"

        LogoUrl="~/CuteChat/images/logo.gif"

        ExitUrl="~/"

        Culture="en-US"

        ConnectionString="server=(local);database=CuteChatSample;trusted_connection=true;App=CuteChat"

    >

        <providers defaultProvider="DotNetNuke">

            <provider name="DotNetNuke"     sqlDataProviderType="CuteChat.DotNetNukeLib.DotNetNukeSqlDataProvider,CuteChat.DotNetNukeLib"

    userIdentityAdapterType="CuteChat.DotNetNukeLib.SqlServerUserIdentityAdapter,CuteChat.DotNetNukeLib" />

           </providers>

    </cuteChat>

     
     
    Keep me poted.

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread