mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 15:05:33 +00:00
BUGFIX Send the database in use (not just the MySQL version) to ss2stats in installer (from r98782)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112097 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
7363fe54a5
commit
3c8aba8ed4
10
install.php
10
install.php
@ -908,8 +908,14 @@ class Installer extends InstallRequirements {
|
||||
}
|
||||
|
||||
$phpVersion = urlencode(phpversion());
|
||||
$conn = @mysql_connect($config['db']['server'], null, null);
|
||||
$databaseVersion = urlencode('MySQL ' . mysql_get_server_info());
|
||||
|
||||
if($config['db']['type'] == 'MySQLDatabase') {
|
||||
$conn = mysql_connect($config['db']['server'], null, null);
|
||||
$databaseVersion = urlencode('MySQLDatabase: ' . mysql_get_server_info());
|
||||
} else {
|
||||
$databaseVersion = $config['db']['type'];
|
||||
}
|
||||
|
||||
$webserver = urlencode($_SERVER['SERVER_SOFTWARE']);
|
||||
|
||||
$url = "http://ss2stat.silverstripe.com/Installation/add?SilverStripe=$silverstripe_version&PHP=$phpVersion&Database=$databaseVersion&WebServer=$webserver";
|
||||
|
Loading…
x
Reference in New Issue
Block a user