1. Applied FULL 7.5 sql file to empty database without error and in order, files u told me to apply to database :
2009-01-03_configuration.sql return 2 errors ( / 3 queries) :
[Err] 1136 - Column count doesn't match value count at row 1
[Err] INSERT INTO `configuration` VALUES
('MangosLogs', NULL);
[Err] 1136 - Column count doesn't match value count at row 1
[Err] INSERT INTO `configuration` VALUES
('MangosCrashLogs', NULL);
[Msg] Finished - Unsuccessfully
--------------------------------------------------
2009-02-24_configuration.sql return same errors ( / 3 queries) :
[Err] 1136 - Column count doesn't match value count at row 1
[Err] INSERT INTO `configuration` VALUES
('DownloadIcons','FALSE');
[Err] 1136 - Column count doesn't match value count at row 1
[Err] INSERT INTO `configuration` VALUES
('IconPath',NULL);
[Msg] Finished - Unsuccessfully
--------------------------------------------------
2009-03-05_configuration.sql return 1 error ( / 2 queries) :
[Err] 1054 - Unknown column 'Item' in 'field list'
[Err] INSERT INTO `configuration` (`Item`,`Value`) VALUES
('CreateGMLevel',0);
[Msg] Finished - Unsuccessfully
--------------------------------------------------
================================================================
About the first problem to access Web.config file, i replaced that code :
Dim rootWebConfig As Configuration
rootWebConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~/")
Dim micromanagerConnString As New ConnectionStringSettings
micromanagerConnString = rootWebConfig.ConnectionStrings.ConnectionStrings("micromanager")
Dim micromanagerCS As New MySqlConnection(micromanagerConnString.ToString())
by this one :
Dim micromanagerConnString As New ConnectionStringSettings
micromanagerConnString = System.Configuration.ConfigurationManager.ConnectionStrings("micromanager")
Dim micromanagerCS As New MySqlConnection(micromanagerConnString.ToString())
ConfigurationManager itself locate Web.config.
i did the same for realmd, mangos, etc....
But... When i launch the solution and login, i got no errors but screen freeze on loading. I tried follow process step by step (F11) and it connect correctly with mySQL.
I'll check the database for that freeze problem.
Thanks.