Skip to content

Commit

Permalink
Update conf/php.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
KeiichiHonma committed Nov 6, 2012
1 parent 68643e1 commit a1e371a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions conf/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ error_reporting = E_ALL & ~E_NOTICE
; Development Value: On
; Production Value: Off
; http://php.net/display-errors
display_errors = Off
display_errors = On

; The display of errors which occur during PHP's startup sequence are handled
; separately from display_errors. PHP's default behavior is to suppress those
Expand Down Expand Up @@ -781,7 +781,7 @@ default_mimetype = "text/html"
;;;;;;;;;;;;;;;;;;;;;;;;;

; UNIX: "/path1:/path2"
;include_path = ".:/php/includes"
include_path = ".:/app/www/include"
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"
Expand All @@ -804,7 +804,7 @@ user_dir =

; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
; extension_dir = "./"
extension_dir = "./"
; On windows:
; extension_dir = "ext"

Expand Down Expand Up @@ -946,6 +946,7 @@ default_socket_timeout = 60
;
extension=soap.so
extension=apc.so
extension=/app/www/include/ext/mbstring.so
;extension=php_bz2.dll
;extension=php_curl.dll
;extension=php_fileinfo.dll
Expand Down Expand Up @@ -995,7 +996,7 @@ extension=apc.so
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = UTC
date.timezone = "America/New_York"

; http://php.net/date.default-latitude
;date.default_latitude = 31.7667
Expand Down

0 comments on commit a1e371a

Please sign in to comment.