Re: Live Support and MySQL

  •  02-09-2011, 7:08 AM

    Re: Live Support and MySQL

    Dear ediguy,
     
    The following are the installation steps:
     
    1. Download Cute Live Support installation package, http://cutesoft.net/downloads/folders/current_releases/entry21855.aspx 
    2. Unzip this package, create one virtual directory and let it point to "Web" folder.
    3. Download Cute Chat and Web Messenger MySQL Database
     
    It can be downloaded at
    http://CuteSoft.net/download/MySQL_CuteChat.zip.   

    It contains the following files:

    • MySqlDataProvider.cs
    • MySqlDataProvider.sql
    4. Execute MySqlDataProvider.sql against your MySQL Database.  You need open this database script in text edit tool, and then replace all "'" with "`", we will update this script file.
    5. MySqlDataProvider.cs should be deployed to your project. You can create folder "App_Code" and copy it to this folder
    6. Open global.asax,add the following method to this file:
    public override IAppDataProvider CreateDataProvider(AppPortal portal)
    {
    return new MySqlDataProvider(portal
    ,"Server=localhost;Database=CuteChat4;User ID=root;Password=root;charset=utf8;", "CuteChat4_");
    }
     
    7. global.asax, it is based on SQL Server, you need update that script to MySQL
    8. Please make sure you are using the latest MySQL dll for ASP.NET. It can be downloaded from http://www.mysql.com/downloads/connector/net/
     
    Thank you for asking

View Complete Thread