Skip to content
Extraits de code Groupes Projets
Valider 36a9626f rédigé par mattab's avatar mattab
Parcourir les fichiers

Streamline config. fixes #4611

parent b104b4b4
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -20,6 +20,7 @@ tables_prefix =
port = 3306
adapter = PDO_MYSQL
type = InnoDB
schema = Mysql
; if charset is set to utf8, Piwik will ensure that it is storing its data using UTF8 charset.
; it will add a sql query SET at each page view.
......@@ -35,6 +36,7 @@ tables_prefix = piwiktests_
port = 3306
adapter = PDO_MYSQL
type = InnoDB
schema = Mysql
[log]
; possible values for log: screen, database, file
......
......@@ -49,11 +49,9 @@ class Schema extends Singleton
public static function getSchemas($adapterName)
{
static $allSchemaNames = array(
// MySQL storage engines
'MYSQL' => array(
'Mysql',
// 'Innodb',
// 'Infinidb',
// InfiniDB
),
// Microsoft SQL Server
......@@ -112,11 +110,7 @@ class Schema extends Singleton
{
$config = Config::getInstance();
$dbInfos = $config->database;
if (isset($dbInfos['schema'])) {
$schemaName = $dbInfos['schema'];
} else {
$schemaName = 'Mysql';
}
$schemaName = $dbInfos['schema'];
$className = self::getSchemaClassName($schemaName);
$this->schema = new $className();
}
......
......@@ -35,14 +35,12 @@ class Updates_0_6_3 extends Updates
if (!isset($dbInfos['schema'])) {
try {
if (is_writable(Config::getLocalConfigPath())) {
$dbInfos['schema'] = 'Myisam';
$config->database = $dbInfos;
$config->forceSave();
} else {
throw new \Exception('mandatory update failed');
}
} catch (\Exception $e) {
throw new \Piwik\UpdaterErrorException("Please edit your config/config.ini.php file and add below <code>[database]</code> the following line: <br /><code>schema = Myisam</code>");
}
}
......
......@@ -72,7 +72,7 @@ class Updates_1_8_4_b1 extends Updates
`before` int(10) unsigned NOT NULL,
`after` int(10) unsigned NOT NULL,
KEY `mainkey` (`before`)
) ENGINE=MyISAM;
) ENGINE=InnoDB;
" => false,
// grouping by name only would be case-insensitive, so we GROUP BY name,hash
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter