Re: Installing cute chat

  •  04-18-2005, 10:42 PM

    Re: Installing cute chat

    here is my web.config same as what was provided except for the db info edited
     
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
     <appSettings>
      <add key="ConnectionString" value="server=(local);database=cute;uid=snitz;pwd=chat345" />
      <add key="OnlineTimeout" value="300" />
      <add key="CuteChat.SqlClient.ConnectionString" value="server=(local);database=Cute;uid=snitz;pwd=chat345;connection reset=false;;Application Name=ChatWeb" />
     </appSettings>
     
      <system.web>
       <customErrors mode="Off" />
        <authentication mode="Forms">
      <forms name=".UserManagementASPXAUTH" loginUrl="~/Login.aspx" />
        </authentication>
        <authorization>
      <!--<deny users="?" />-->
            <allow users="*" />
        </authorization>
      
     </system.web>
    </configuration>
View Complete Thread