[mapguide-commits] r9025 - in branches/3.1/Installer/Support/Web: x64/configs/Php x86/configs/Php

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Tue Aug 23 05:46:36 PDT 2016


Author: jng
Date: 2016-08-23 05:46:36 -0700 (Tue, 23 Aug 2016)
New Revision: 9025

Modified:
   branches/3.1/Installer/Support/Web/x64/configs/Php/php.ini
   branches/3.1/Installer/Support/Web/x86/configs/Php/php.ini
Log:
#2734: Default always_populate_raw_post_data to -1 in php.ini. This fixes a whole bunch of deprecation warnings that PHP 5.6 throws up.

Reference: https://www.bram.us/2014/10/26/php-5-6-automatically-populating-http_raw_post_data-is-deprecated-and-will-be-removed-in-a-future-version/

Modified: branches/3.1/Installer/Support/Web/x64/configs/Php/php.ini
===================================================================
--- branches/3.1/Installer/Support/Web/x64/configs/Php/php.ini	2016-08-23 12:42:46 UTC (rev 9024)
+++ branches/3.1/Installer/Support/Web/x64/configs/Php/php.ini	2016-08-23 12:46:36 UTC (rev 9025)
@@ -487,7 +487,7 @@
 ;default_charset = "iso-8859-1"
 
 ; Always populate the $HTTP_RAW_POST_DATA variable.
-;always_populate_raw_post_data = On
+always_populate_raw_post_data = -1
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;

Modified: branches/3.1/Installer/Support/Web/x86/configs/Php/php.ini
===================================================================
--- branches/3.1/Installer/Support/Web/x86/configs/Php/php.ini	2016-08-23 12:42:46 UTC (rev 9024)
+++ branches/3.1/Installer/Support/Web/x86/configs/Php/php.ini	2016-08-23 12:46:36 UTC (rev 9025)
@@ -487,7 +487,7 @@
 ;default_charset = "iso-8859-1"
 
 ; Always populate the $HTTP_RAW_POST_DATA variable.
-;always_populate_raw_post_data = On
+always_populate_raw_post_data = -1
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;



More information about the mapguide-commits mailing list