root@NagiosGuatemala:/etc/php5/apache2# cat php.ini | grep time
; 6. The directory from the --with-config-file-path compile time option, or the
; at runtime. Currently, [PATH=] and [HOST=] sections only work under
; allow_call_time_pass_reference
; max_input_time
; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
; this short cut has been a feature for such a long time, it's currently still
; if you pass a value by reference at function call time. Passing values by
; reference at function call time is a deprecated feature which will be removed
; definition, not at call time. This directive does not disable this feature, it
;
allow_call_time_pass_reference = Off
; Duration of time, in seconds for which to cache realpath information for a given
; Maximum execution time of each script, in seconds
;
max_execution_time = 30
; Maximum amount of time each script may spend parsing request data. It's a good
; idea to limit this time on productions servers in order to eliminate unexpectedly
;
http://php.net/max-input-time
max_input_time = 60
; E_ERROR - fatal run-time errors
; E_RECOVERABLE_ERROR - almost fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors
; E_NOTICE - run-time notices (these are warnings which often result
; E_STRICT - run-time notices, enable to have PHP suggest changes
; E_COMPILE_ERROR - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; This directive determines whether PHP registers $argv & $argc each time it
; enabled, registering these variables consumes CPU cycles and memory each time
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
;
http://php.net/magic-quotes-runtime
magic_quotes_runtime = Off
; Default timeout for socket based streams (seconds)
;
http://php.net/default-socket-timeout
default_socket_timeout = 60
; Defines the default timezone used by the date functions
;
http://php.net/date.timezone
date.timezone = "America/Panama"
; runtime, you can define these variables by calling define_syslog_variables().
; Default timestamp format.
ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
; Default time format.
ibase.timeformat = "%H:%M:%S"
; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
; Maximum time (in seconds) for connect timeout. -1 means no limit
;
http://php.net/mysql.connect-timeout
mysql.connect_timeout = 60
; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
;
http://php.net/oci8.persistent-timeout
;oci8.persistent_timeout = -1
; Set per-context timeout
;
http://php.net/sybct.timeout
;sybct.timeout=
; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
;sybct.login_timeout=
; Lifetime in seconds of cookie or, if 0, until browser is restarted.
;
http://php.net/session.cookie-lifetime
session.cookie_lifetime = 0
;
http://php.net/session.gc-maxlifetime
session.gc_maxlifetime = 1440
; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
; You can disable the feature and the warning separately. At this time,
; Connect timeout
;mssql.connect_timeout = 5
; Query timeout
;mssql.timeout = 60
; Specify how datetime and datetim4 columns are returned
;mssql.datetimeconvert = On
; (time to live) Sets the number of second while cached file will be used
root@NagiosGuatemala:/etc/php5/apache2# date
Mon Jan 6 13:41:01 EST 2014