mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
BUGFIX Install now supports sending database version if available from the helper
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@105711 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
1e0e4758f4
commit
8869240b5a
11
install.php
11
install.php
@ -916,12 +916,13 @@ class Installer extends InstallRequirements {
|
|||||||
|
|
||||||
$phpVersion = urlencode(phpversion());
|
$phpVersion = urlencode(phpversion());
|
||||||
$encWebserver = urlencode($webserver);
|
$encWebserver = urlencode($webserver);
|
||||||
|
$dbType = $config['db']['type'];
|
||||||
|
|
||||||
if($config['db']['type'] == 'MySQLDatabase') {
|
// Try to determine the database version from the helper
|
||||||
$conn = @mysql_connect($dbConfig['server'], null, null);
|
$databaseVersion = '';
|
||||||
$databaseVersion = urlencode('MySQLDatabase: ' . mysql_get_server_info());
|
$helper = $this->getDatabaseConfigurationHelper($dbType);
|
||||||
} else {
|
if($helper && method_exists($helper, 'getDatabaseVersion')) {
|
||||||
$databaseVersion = $config['db']['type'];
|
$databaseVersion = urlencode($dbType . ': ' . $helper->getDatabaseVersion($config['db'][$dbType]));
|
||||||
}
|
}
|
||||||
|
|
||||||
$url = "http://ss2stat.silverstripe.com/Installation/add?SilverStripe=$silverstripe_version&PHP=$phpVersion&Database=$databaseVersion&WebServer=$encWebserver";
|
$url = "http://ss2stat.silverstripe.com/Installation/add?SilverStripe=$silverstripe_version&PHP=$phpVersion&Database=$databaseVersion&WebServer=$encWebserver";
|
||||||
|
Loading…
Reference in New Issue
Block a user