39506d885e
THe main features of PHP 5.6: * Constant scalar expressions. * Variadic functions and argument unpacking using the ... operator. * Exponentiation using the ** operator. * Function and constant importing with the use keyword. * phpdbg as an interactive integrated debugger SAPI. * php://input is now reusable, and $HTTP_RAW_POST_DATA is deprecated. * GMP objects now support operator overloading. * File uploads larger than 2 gigabytes in size are now accepted. Please refer for difference from oldre release:http://php.net/migration56.
33 lines
1 KiB
Text
33 lines
1 KiB
Text
$NetBSD: patch-php.ini-production,v 1.1 2014/11/24 15:37:08 taca Exp $
|
|
|
|
--- php.ini-production.orig 2014-11-12 13:52:21.000000000 +0000
|
|
+++ php.ini-production
|
|
@@ -709,7 +709,7 @@ default_charset = "UTF-8"
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; UNIX: "/path1:/path2"
|
|
-;include_path = ".:/php/includes"
|
|
+include_path = ".:@PREFIX@/lib/php"
|
|
;
|
|
; Windows: "\path1;\path2"
|
|
;include_path = ".;c:\php\includes"
|
|
@@ -730,8 +730,8 @@ doc_root =
|
|
; http://php.net/user-dir
|
|
user_dir =
|
|
|
|
-; Directory in which the loadable extensions (modules) reside.
|
|
-; http://php.net/extension-dir
|
|
+; Directory in which the loadable extensions (modules) reside. If not
|
|
+; defined, then use the extension directory specified at compile-time.
|
|
; extension_dir = "./"
|
|
; On windows:
|
|
; extension_dir = "ext"
|
|
@@ -804,7 +804,7 @@ file_uploads = On
|
|
; Temporary directory for HTTP uploaded files (will use system default if not
|
|
; specified).
|
|
; http://php.net/upload-tmp-dir
|
|
-;upload_tmp_dir =
|
|
+upload_tmp_dir = /tmp
|
|
|
|
; Maximum allowed size for uploaded files.
|
|
; http://php.net/upload-max-filesize
|