The database you're trying to use does not support case insensitive queries.
We currently do not support these types of databases.
You can fix this by changing the following setting in your my.ini file in your MySQL installation directory:
" + "lower_case_table_names=1
Note: Make sure to check with your hosting provider if they support case insensitive queries as well.
" + "For more technical information on case sensitivity in MySQL, have a look at " + "the documentation on the subject
"; return new Result { Message = message, Success = false, Percentage = "15" }; } */ message = GetResultMessageForMySql(); var schemaResult = ValidateDatabaseSchema(); var installedSchemaVersion = schemaResult.DetermineInstalledVersion(); //If Configuration Status is empty and the determined version is "empty" its a new install - otherwise upgrade the existing if (string.IsNullOrEmpty(GlobalSettings.ConfigurationStatus) && installedSchemaVersion.Equals(new Version(0, 0, 0))) { var helper = new DatabaseSchemaHelper(database, _logger, SqlSyntax); helper.CreateDatabaseSchema(true, applicationContext); message = message + "Installation completed!
"; //now that everything is done, we need to determine the version of SQL server that is executing _logger.InfoUpgrading database, this may take some time...
"; return new Result { RequiresUpgrade = true, Message = message, Success = true, Percentage = "30" }; } catch (Exception ex) { return HandleInstallException(ex); } } ///Upgrade completed!
"; //now that everything is done, we need to determine the version of SQL server that is executing _logger.Info
Congratulations, the database step ran successfully!
" + "Note: You're using MySQL and the database instance you're connecting to seems to support case insensitive queries.
" + "However, your hosting provider may not support this option. Umbraco does not currently support MySQL installs that do not support case insensitive queries
" + "Make sure to check with your hosting provider if they support case insensitive queries as well.
" + "They can check this by looking for the following setting in the my.ini file in their MySQL installation directory:
" + "lower_case_table_names=1
For more technical information on case sensitivity in MySQL, have a look at " + "the documentation on the subject
"; } return string.Empty; } /* private string GetResultMessageForMySql(bool? supportsCaseInsensitiveQueries) { if (supportsCaseInsensitiveQueries == null) { return "
Warning! Could not check if your database type supports case insensitive queries.
We currently do not support these databases that do not support case insensitive queries.
You can check this by looking for the following setting in your my.ini file in your MySQL installation directory:
" + "lower_case_table_names=1
Note: Make sure to check with your hosting provider if they support case insensitive queries as well.
" + "For more technical information on case sensitivity in MySQL, have a look at " + "the documentation on the subject
"; } if (SqlSyntax.GetType() == typeof(MySqlSyntaxProvider)) { return "
Congratulations, the database step ran successfully!
" + "Note: You're using MySQL and the database instance you're connecting to seems to support case insensitive queries.
" + "However, your hosting provider may not support this option. Umbraco does not currently support MySQL installs that do not support case insensitive queries
" + "Make sure to check with your hosting provider if they support case insensitive queries as well.
" + "They can check this by looking for the following setting in the my.ini file in their MySQL installation directory:
" + "lower_case_table_names=1
For more technical information on case sensitivity in MySQL, have a look at " + "the documentation on the subject
"; } return string.Empty; }*/ private Attempt