Advertisement
oxx93

Untitled

Aug 11th, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.46 KB | None | 0 0
  1. Default Value: 100
  2. ; Development Value: 1000
  3. ; Production Value: 1000
  4. ; http://php.net/session.gc-divisor
  5. session.gc_divisor = 1000
  6.  
  7. ; After this number of seconds, stored data will be seen as 'garbage' and
  8. ; cleaned up by the garbage collection process.
  9. ; http://php.net/session.gc-maxlifetime
  10. session.gc_maxlifetime = 1440
  11.  
  12. ; NOTE: If you are using the subdirectory option for storing session files
  13. ; (see session.save_path above), then garbage collection does *not*
  14. ; happen automatically. You will need to do your own garbage
  15. ; collection through a shell script, cron entry, or some other method.
  16. ; For example, the following script would is the equivalent of
  17. ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  18. ; find /path/to/sessions -cmin +24 -type f | xargs rm
  19.  
  20. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  21. ; to initialize a session variable in the global scope.
  22. ; PHP 4.3 and later will warn you, if this feature is used.
  23. ; You can disable the feature and the warning separately. At this time,
  24. ; the warning is only displayed, if bug_compat_42 is enabled. This feature
  25. ; introduces some serious security problems if not handled correctly. It's
  26. ; recommended that you do not use this feature on production servers. But you
  27. ; should enable this on development servers and enable the warning as well. If you
  28. ; do not enable the feature on development servers, you won't be warned when it's
  29. ; used and debugging errors caused by this can be difficult to track down.
  30. ; Default Value: On
  31. ; Development Value: On
  32. ; Production Value: Off
  33. ; http://php.net/session.bug-compat-42
  34. session.bug_compat_42 = Off
  35.  
  36. ; This setting controls whether or not you are warned by PHP when initializing a
  37. ; session value into the global space. session.bug_compat_42 must be enabled before
  38. ; these warnings can be issued by PHP. See the directive above for more information.
  39. ; Default Value: On
  40. ; Development Value: On
  41. ; Production Value: Off
  42. ; http://php.net/session.bug-compat-warn
  43. session.bug_compat_warn = Off
  44.  
  45. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  46. ; HTTP_REFERER has to contain this substring for the session to be
  47. ; considered as valid.
  48. ; http://php.net/session.referer-check
  49. session.referer_check =
  50.  
  51. ; How many bytes to read from the file.
  52. ; http://php.net/session.entropy-length
  53. ;session.entropy_length = 32
  54.  
  55. ; Specified here to create the session id.
  56. ; http://php.net/session.entropy-file
  57. ; Defaults to /dev/urandom
  58. ; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
  59. ; If neither are found at compile time, the default is no entropy file.
  60. ; On windows, setting the entropy_length setting will activate the
  61. ; Windows random source (using the CryptoAPI)
  62. ;session.entropy_file = /dev/urandom
  63.  
  64. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  65. ; or leave this empty to avoid sending anti-caching headers.
  66. ; http://php.net/session.cache-limiter
  67. session.cache_limiter = nocache
  68.  
  69. ; Document expires after n minutes.
  70. ; http://php.net/session.cache-expire
  71. session.cache_expire = 180
  72.  
  73. ; trans sid support is disabled by default.
  74. ; Use of trans sid may risk your users security.
  75. ; Use this option with caution.
  76. ; - User may send URL contains active session ID
  77. ; to other person via. email/irc/etc.
  78. ; - URL that contains active session ID may be stored
  79. ; in publicly accessible computer.
  80. ; - User may access your site with the same session ID
  81. ; always using URL stored in browser's history or bookmarks.
  82. ; http://php.net/session.use-trans-sid
  83. session.use_trans_sid = 0
  84.  
  85. ; Select a hash function for use in generating session ids.
  86. ; Possible Values
  87. ; 0 (MD5 128 bits)
  88. ; 1 (SHA-1 160 bits)
  89. ; This option may also be set to the name of any hash function supported by
  90. ; the hash extension. A list of available hashes is returned by the hash_algos()
  91. ; function.
  92. ; http://php.net/session.hash-function
  93. session.hash_function = 0
  94.  
  95. ; Define how many bits are stored in each character when converting
  96. ; the binary hash data to something readable.
  97. ; Possible values:
  98. ; 4 (4 bits: 0-9, a-f)
  99. ; 5 (5 bits: 0-9, a-v)
  100. ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
  101. ; Default Value: 4
  102. ; Development Value: 5
  103. ; Production Value: 5
  104. ; http://php.net/session.hash-bits-per-character
  105. session.hash_bits_per_character = 5
  106.  
  107. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  108. ; form/fieldset are special; if you include them here, the rewriter will
  109. ; add a hidden <input> field with the info which is otherwise appended
  110. ; to URLs. If you want XHTML conformity, remove the form entry.
  111. ; Note that all valid entries require a "=", even if no value follows.
  112. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  113. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  114. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  115. ; http://php.net/url-rewriter.tags
  116. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  117.  
  118. ; Enable upload progress tracking in $_SESSION
  119. ; Default Value: On
  120. ; Development Value: On
  121. ; Production Value: On
  122. ; http://php.net/session.upload-progress.enabled
  123. ;session.upload_progress.enabled = On
  124.  
  125. ; Cleanup the progress information as soon as all POST data has been read
  126. ; (i.e. upload completed).
  127. ; Default Value: On
  128. ; Development Value: On
  129. ; Production Value: On
  130. ; http://php.net/session.upload-progress.cleanup
  131. ;session.upload_progress.cleanup = On
  132.  
  133. ; A prefix used for the upload progress key in $_SESSION
  134. ; Default Value: "upload_progress_"
  135. ; Development Value: "upload_progress_"
  136. ; Production Value: "upload_progress_"
  137. ; http://php.net/session.upload-progress.prefix
  138. ;session.upload_progress.prefix = "upload_progress_"
  139.  
  140. ; The index name (concatenated with the prefix) in $_SESSION
  141. ; containing the upload progress information
  142. ; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
  143. ; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
  144. ; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
  145. ; http://php.net/session.upload-progress.name
  146. ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
  147.  
  148. ; How frequently the upload progress should be updated.
  149. ; Given either in percentages (per-file), or in bytes
  150. ; Default Value: "1%"
  151. ; Development Value: "1%"
  152. ; Production Value: "1%"
  153. ; http://php.net/session.upload-progress.freq
  154. ;session.upload_progress.freq = "1%"
  155.  
  156. ; The minimum delay between updates, in seconds
  157. ; Default Value: 1
  158. ; Development Value: 1
  159. ; Production Value: 1
  160. ; http://php.net/session.upload-progress.min-freq
  161. ;session.upload_progress.min_freq = "1"
  162.  
  163. [MSSQL]
  164. ; Allow or prevent persistent links.
  165. mssql.allow_persistent = On
  166.  
  167. ; Maximum number of persistent links. -1 means no limit.
  168. mssql.max_persistent = -1
  169.  
  170. ; Maximum number of links (persistent+non persistent). -1 means no limit.
  171. mssql.max_links = -1
  172.  
  173. ; Minimum error severity to display.
  174. mssql.min_error_severity = 10
  175.  
  176. ; Minimum message severity to display.
  177. mssql.min_message_severity = 10
  178.  
  179. ; Compatibility mode with old versions of PHP 3.0.
  180. mssql.compatibility_mode = Off
  181.  
  182. ; Connect timeout
  183. ;mssql.connect_timeout = 5
  184.  
  185. ; Query timeout
  186. ;mssql.timeout = 60
  187.  
  188. ; Valid range 0 - 2147483647. Default = 4096.
  189. ;mssql.textlimit = 4096
  190.  
  191. ; Valid range 0 - 2147483647. Default = 4096.
  192. ;mssql.textsize = 4096
  193.  
  194. ; Limits the number of records in each batch. 0 = all records in one batch.
  195. ;mssql.batchsize = 0
  196.  
  197. ; Specify how datetime and datetim4 columns are returned
  198. ; On => Returns data converted to SQL server settings
  199. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  200. ;mssql.datetimeconvert = On
  201.  
  202. ; Use NT authentication when connecting to the server
  203. mssql.secure_connection = Off
  204.  
  205. ; Specify max number of processes. -1 = library default
  206. ; msdlib defaults to 25
  207. ; FreeTDS defaults to 4096
  208. ;mssql.max_procs = -1
  209.  
  210. ; Specify client character set.
  211. ; If empty or not set the client charset from freetds.conf is used
  212. ; This is only used when compiled with FreeTDS
  213. ;mssql.charset = "ISO-8859-1"
  214.  
  215. [Assertion]
  216. ; Assert(expr); active by default.
  217. ; http://php.net/assert.active
  218. ;assert.active = On
  219.  
  220. ; Issue a PHP warning for each failed assertion.
  221. ; http://php.net/assert.warning
  222. ;assert.warning = On
  223.  
  224. ; Don't bail out by default.
  225. ; http://php.net/assert.bail
  226. ;assert.bail = Off
  227.  
  228. ; User-function to be called if an assertion fails.
  229. ; http://php.net/assert.callback
  230. ;assert.callback = 0
  231.  
  232. ; Eval the expression with current error_reporting(). Set to true if you want
  233. ; error_reporting(0) around the eval().
  234. ; http://php.net/assert.quiet-eval
  235. ;assert.quiet_eval = 0
  236.  
  237. [COM]
  238. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  239. ; http://php.net/com.typelib-file
  240. ;com.typelib_file =
  241.  
  242. ; allow Distributed-COM calls
  243. ; http://php.net/com.allow-dcom
  244. ;com.allow_dcom = true
  245.  
  246. ; autoregister constants of a components typlib on com_load()
  247. ; http://php.net/com.autoregister-typelib
  248. ;com.autoregister_typelib = true
  249.  
  250. ; register constants casesensitive
  251. ; http://php.net/com.autoregister-casesensitive
  252. ;com.autoregister_casesensitive = false
  253.  
  254. ; show warnings on duplicate constant registrations
  255. ; http://php.net/com.autoregister-verbose
  256. ;com.autoregister_verbose = true
  257.  
  258. ; The default character set code-page to use when passing strings to and from COM objects.
  259. ; Default: system ANSI code page
  260. ;com.code_page=
  261.  
  262. [mbstring]
  263. ; language for internal character representation.
  264. ; http://php.net/mbstring.language
  265. ;mbstring.language = Japanese
  266.  
  267. ; internal/script encoding.
  268. ; Some encoding cannot work as internal encoding.
  269. ; (e.g. SJIS, BIG5, ISO-2022-*)
  270. ; http://php.net/mbstring.internal-encoding
  271. ;mbstring.internal_encoding = UTF-8
  272.  
  273. ; http input encoding.
  274. ; http://php.net/mbstring.http-input
  275. ;mbstring.http_input = UTF-8
  276.  
  277. ; http output encoding. mb_output_handler must be
  278. ; registered as output buffer to function
  279. ; http://php.net/mbstring.http-output
  280. ;mbstring.http_output = pass
  281.  
  282. ; enable automatic encoding translation according to
  283. ; mbstring.internal_encoding setting. Input chars are
  284. ; converted to internal encoding by setting this to On.
  285. ; Note: Do _not_ use automatic encoding translation for
  286. ; portable libs/applications.
  287. ; http://php.net/mbstring.encoding-translation
  288. ;mbstring.encoding_translation = Off
  289.  
  290. ; automatic encoding detection order.
  291. ; auto means
  292. ; http://php.net/mbstring.detect-order
  293. ;mbstring.detect_order = auto
  294.  
  295. ; substitute_character used when character cannot be converted
  296. ; one from another
  297. ; http://php.net/mbstring.substitute-character
  298. ;mbstring.substitute_character = none
  299.  
  300. ; overload(replace) single byte functions by mbstring functions.
  301. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  302. ; etc. Possible values are 0,1,2,4 or combination of them.
  303. ; For example, 7 for overload everything.
  304. ; 0: No overload
  305. ; 1: Overload mail() function
  306. ; 2: Overload str*() functions
  307. ; 4: Overload ereg*() functions
  308. ; http://php.net/mbstring.func-overload
  309. ;mbstring.func_overload = 0
  310.  
  311. ; enable strict encoding detection.
  312. ;mbstring.strict_detection = On
  313.  
  314. ; This directive specifies the regex pattern of content types for which mb_output_handler()
  315. ; is activated.
  316. ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
  317. ;mbstring.http_output_conv_mimetype=
  318.  
  319. [gd]
  320. ; Tell the jpeg decode to ignore warnings and try to create
  321. ; a gd image. The warning will then be displayed as notices
  322. ; disabled by default
  323. ; http://php.net/gd.jpeg-ignore-warning
  324. ;gd.jpeg_ignore_warning = 0
  325.  
  326. [exif]
  327. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  328. ; With mbstring support this will automatically be converted into the encoding
  329. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  330. ; is used. For the decode settings you can distinguish between motorola and
  331. ; intel byte order. A decode setting cannot be empty.
  332. ; http://php.net/exif.encode-unicode
  333. ;exif.encode_unicode = ISO-8859-15
  334.  
  335. ; http://php.net/exif.decode-unicode-motorola
  336. ;exif.decode_unicode_motorola = UCS-2BE
  337.  
  338. ; http://php.net/exif.decode-unicode-intel
  339. ;exif.decode_unicode_intel = UCS-2LE
  340.  
  341. ; http://php.net/exif.encode-jis
  342. ;exif.encode_jis =
  343.  
  344. ; http://php.net/exif.decode-jis-motorola
  345. ;exif.decode_jis_motorola = JIS
  346.  
  347. ; http://php.net/exif.decode-jis-intel
  348. ;exif.decode_jis_intel = JIS
  349.  
  350. [Tidy]
  351. ; The path to a default tidy configuration file to use when using tidy
  352. ; http://php.net/tidy.default-config
  353. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  354.  
  355. ; Should tidy clean and repair output automatically?
  356. ; WARNING: Do not use this option if you are generating non-html content
  357. ; such as dynamic images
  358. ; http://php.net/tidy.clean-output
  359. tidy.clean_output = Off
  360.  
  361. [soap]
  362. ; Enables or disables WSDL caching feature.
  363. ; http://php.net/soap.wsdl-cache-enabled
  364. soap.wsdl_cache_enabled=1
  365.  
  366. ; Sets the directory name where SOAP extension will put cache files.
  367. ; http://php.net/soap.wsdl-cache-dir
  368. soap.wsdl_cache_dir="/tmp"
  369.  
  370. ; (time to live) Sets the number of second while cached file will be used
  371. ; instead of original one.
  372. ; http://php.net/soap.wsdl-cache-ttl
  373. soap.wsdl_cache_ttl=86400
  374.  
  375. ; Sets the size of the cache limit. (Max. number of WSDL files to cache)
  376. soap.wsdl_cache_limit = 5
  377.  
  378. [sysvshm]
  379. ; A default size of the shared memory segment
  380. ;sysvshm.init_mem = 10000
  381.  
  382. [ldap]
  383. ; Sets the maximum number of open links or -1 for unlimited.
  384. ldap.max_links = -1
  385.  
  386. [mcrypt]
  387. ; For more information about mcrypt settings see http://php.net/mcrypt-module-open
  388.  
  389. ; Directory where to load mcrypt algorithms
  390. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  391. ;mcrypt.algorithms_dir=
  392.  
  393. ; Directory where to load mcrypt modes
  394. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  395. ;mcrypt.modes_dir=
  396.  
  397. [dba]
  398. ;dba.default_handler=
  399.  
  400. [opcache]
  401. ; Determines if Zend OPCache is enabled
  402. ;opcache.enable=0
  403.  
  404. ; Determines if Zend OPCache is enabled for the CLI version of PHP
  405. ;opcache.enable_cli=0
  406.  
  407. ; The OPcache shared memory storage size.
  408. ;opcache.memory_consumption=64
  409.  
  410. ; The amount of memory for interned strings in Mbytes.
  411. ;opcache.interned_strings_buffer=4
  412.  
  413. ; The maximum number of keys (scripts) in the OPcache hash table.
  414. ; Only numbers between 200 and 100000 are allowed.
  415. ;opcache.max_accelerated_files=2000
  416.  
  417. ; The maximum percentage of "wasted" memory until a restart is scheduled.
  418. ;opcache.max_wasted_percentage=5
  419.  
  420. ; When this directive is enabled, the OPcache appends the current working
  421. ; directory to the script key, thus eliminating possible collisions between
  422. ; files with the same name (basename). Disabling the directive improves
  423. ; performance, but may break existing applications.
  424. ;opcache.use_cwd=1
  425.  
  426. ; When disabled, you must reset the OPcache manually or restart the
  427. ; webserver for changes to the filesystem to take effect.
  428. ;opcache.validate_timestamps=1
  429.  
  430. ; How often (in seconds) to check file timestamps for changes to the shared
  431. ; memory storage allocation. ("1" means validate once per second, but only
  432. ; once per request. "0" means always validate)
  433. ;opcache.revalidate_freq=2
  434.  
  435. ; Enables or disables file search in include_path optimization
  436. ;opcache.revalidate_path=0
  437.  
  438. ; If disabled, all PHPDoc comments are dropped from the code to reduce the
  439. ; size of the optimized code.
  440. ;opcache.save_comments=1
  441.  
  442. ; If disabled, PHPDoc comments are not loaded from SHM, so "Doc Comments"
  443. ; may be always stored (save_comments=1), but not loaded by applications
  444. ; that don't need them anyway.
  445. ;opcache.load_comments=1
  446.  
  447. ; If enabled, a fast shutdown sequence is used for the accelerated code
  448. ;opcache.fast_shutdown=0
  449.  
  450. ; Allow file existence override (file_exists, etc.) performance feature.
  451. ;opcache.enable_file_override=0
  452.  
  453. ; A bitmask, where each bit enables or disables the appropriate OPcache
  454. ; passes
  455. ;opcache.optimization_level=0xffffffff
  456.  
  457. ;opcache.inherited_hack=1
  458. ;opcache.dups_fix=0
  459.  
  460. ; The location of the OPcache blacklist file (wildcards allowed).
  461. ; Each OPcache blacklist file is a text file that holds the names of files
  462. ; that should not be accelerated. The file format is to add each filename
  463. ; to a new line. The filename may be a full path or just a file prefix
  464. ; (i.e., /var/www/x blacklists all the files and directories in /var/www
  465. ; that start with 'x'). Line starting with a ; are ignored (comments).
  466. ;opcache.blacklist_filename=
  467.  
  468. ; Allows exclusion of large files from being cached. By default all files
  469. ; are cached.
  470. ;opcache.max_file_size=0
  471.  
  472. ; Check the cache checksum each N requests.
  473. ; The default value of "0" means that the checks are disabled.
  474. ;opcache.consistency_checks=0
  475.  
  476. ; How long to wait (in seconds) for a scheduled restart to begin if the cache
  477. ; is not being accessed.
  478. ;opcache.force_restart_timeout=180
  479.  
  480. ; OPcache error_log file name. Empty string assumes "stderr".
  481. ;opcache.error_log=
  482.  
  483. ; All OPcache errors go to the Web server log.
  484. ; By default, only fatal errors (level 0) or errors (level 1) are logged.
  485. ; You can also enable warnings (level 2), info messages (level 3) or
  486. ; debug messages (level 4).
  487. ;opcache.log_verbosity_level=1
  488.  
  489. ; Preferred Shared Memory back-end. Leave empty and let the system decide.
  490. ;opcache.preferred_memory_model=
  491.  
  492. ; Protect the shared memory from unexpected writing during script execution.
  493. ; Useful for internal debugging only.
  494. ;opcache.protect_memory=0
  495.  
  496. [curl]
  497. ; A default value for the CURLOPT_CAINFO option. This is required to be an
  498. ; absolute path.
  499. ;curl.cainfo =
  500.  
  501. ; Local Variables:
  502. ; tab-width: 4
  503. ; End:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement