diff --git a/dev/install/config-form.html b/dev/install/config-form.html index a767badd6..e03cd794c 100644 --- a/dev/install/config-form.html +++ b/dev/install/config-form.html @@ -34,6 +34,9 @@ You aren't currently able to install the software. Please see below for details.
If you are having problems meeting the requirements, see the server requirements wiki page.

+ +

Your php.ini file is located at

+
diff --git a/dev/install/install.php5 b/dev/install/install.php5 index 6b3f84e7e..ff1b926a0 100644 --- a/dev/install/install.php5 +++ b/dev/install/install.php5 @@ -160,6 +160,12 @@ if($req->isIIS()) { if($req->hasErrors()) { $hasErrorOtherThanDatabase = true; + if ( function_exists('php_ini_loaded_file')) { + // show the location of the php.ini if any issues exist + $phpIniLocation = php_ini_loaded_file(); + } else { + $phpIniLocation = null; + } } if($databaseConfig) {