Dear ediguy,
The following are the installation steps:
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 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
Thank you for asking