GWibisono

php ini gw

Oct 21st, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
INI file 74.89 KB | None | 0 0
  1. [PHP]
  2.  
  3.  
  4. engine = On
  5.  
  6.  
  7. short_open_tag = Off
  8. ; XAMPP for Linux is currently old fashioned
  9. short_open_tag = On
  10.  
  11. ; Allow ASP-style <% %> tags.
  12. ; http://php.net/asp-tags
  13. asp_tags = Off
  14.  
  15. ; The number of significant digits displayed in floating point numbers.
  16. ; http://php.net/precision
  17. precision = 14
  18.  
  19. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  20. ; http://php.net/y2k-compliance
  21. y2k_compliance = On
  22.  
  23.  
  24. output_buffering = 4096
  25.  
  26.  
  27. zlib.output_compression = Off
  28.  
  29. ; http://php.net/zlib.output-compression-level
  30. ;zlib.output_compression_level = -1
  31.  
  32. ; You cannot specify additional output handlers if zlib.output_compression
  33. ; is activated here. This setting does the same as output_handler but in
  34. ; a different order.
  35. ; http://php.net/zlib.output-handler
  36. ;zlib.output_handler =
  37.  
  38. ; Implicit flush tells PHP to tell the output layer to flush itself
  39. ; automatically after every output block.  This is equivalent to calling the
  40. ; PHP function flush() after each and every call to print() or echo() and each
  41. ; and every HTML block.  Turning this option on has serious performance
  42. ; implications and is generally recommended for debugging purposes only.
  43. ; http://php.net/implicit-flush
  44. ; Note: This directive is hardcoded to On for the CLI SAPI
  45. implicit_flush = Off
  46.  
  47. ; The unserialize callback function will be called (with the undefined class'
  48. ; name as parameter), if the unserializer finds an undefined class
  49. ; which should be instantiated. A warning appears if the specified function is
  50. ; not defined, or if the function doesn't include/implement the missing class.
  51. ; So only set this entry, if you really want to implement such a
  52. ; callback-function.
  53. unserialize_callback_func =
  54.  
  55. ; When floats & doubles are serialized store serialize_precision significant
  56. ; digits after the floating point. The default value ensures that when floats
  57. ; are decoded with unserialize, the data will remain the same.
  58. serialize_precision = 100
  59.  
  60. ; This directive allows you to enable and disable warnings which PHP will issue
  61. ; if you pass a value by reference at function call time. Passing values by
  62. ; reference at function call time is a deprecated feature which will be removed
  63. ; from PHP at some point in the near future. The acceptable method for passing a
  64. ; value by reference to a function is by declaring the reference in the functions
  65. ; definition, not at call time. This directive does not disable this feature, it
  66. ; only determines whether PHP will warn you about it or not. These warnings
  67. ; should enabled in development environments only.
  68. ; Default Value: On (Suppress warnings)
  69. ; Development Value: Off (Issue warnings)
  70. ; Production Value: Off (Issue warnings)
  71. ; http://php.net/allow-call-time-pass-reference
  72. allow_call_time_pass_reference = Off
  73.  
  74. ; Safe Mode
  75. ; http://php.net/safe-mode
  76. safe_mode = Off
  77.  
  78. ; By default, Safe Mode does a UID compare check when
  79. ; opening files. If you want to relax this to a GID compare,
  80. ; then turn on safe_mode_gid.
  81. ; http://php.net/safe-mode-gid
  82. safe_mode_gid = Off
  83.  
  84. ; When safe_mode is on, UID/GID checks are bypassed when
  85. ; including files from this directory and its subdirectories.
  86. ; (directory must also be in include_path or full path must
  87. ; be used when including)
  88. ; http://php.net/safe-mode-include-dir
  89. safe_mode_include_dir =
  90.  
  91. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  92. ; will be allowed to be executed via the exec family of functions.
  93. ; http://php.net/safe-mode-exec-dir
  94. safe_mode_exec_dir =
  95.  
  96. ; Setting certain environment variables may be a potential security breach.
  97. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  98. ; the user may only alter environment variables whose names begin with the
  99. ; prefixes supplied here.  By default, users will only be able to set
  100. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  101. ; Note:  If this directive is empty, PHP will let the user modify ANY
  102. ;   environment variable!
  103. ; http://php.net/safe-mode-allowed-env-vars
  104. safe_mode_allowed_env_vars = PHP_
  105.  
  106. ; This directive contains a comma-delimited list of environment variables that
  107. ; the end user won't be able to change using putenv().  These variables will be
  108. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  109. ; http://php.net/safe-mode-protected-env-vars
  110. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  111.  
  112. ; open_basedir, if set, limits all file operations to the defined directory
  113. ; and below.  This directive makes most sense if used in a per-directory
  114. ; or per-virtualhost web server configuration file. This directive is
  115. ; *NOT* affected by whether Safe Mode is turned On or Off.
  116. ; http://php.net/open-basedir
  117. ;open_basedir =
  118.  
  119. ; This directive allows you to disable certain functions for security reasons.
  120. ; It receives a comma-delimited list of function names. This directive is
  121. ; *NOT* affected by whether Safe Mode is turned On or Off.
  122. ; http://php.net/disable-functions
  123. disable_functions =
  124.  
  125. ; This directive allows you to disable certain classes for security reasons.
  126. ; It receives a comma-delimited list of class names. This directive is
  127. ; *NOT* affected by whether Safe Mode is turned On or Off.
  128. ; http://php.net/disable-classes
  129. disable_classes =
  130.  
  131. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  132. ; <span style="color: ???????"> would work.
  133. ; http://php.net/syntax-highlighting
  134. ;highlight.string  = #DD0000
  135. ;highlight.comment = #FF9900
  136. ;highlight.keyword = #007700
  137. ;highlight.bg      = #FFFFFF
  138. ;highlight.default = #0000BB
  139. ;highlight.html    = #000000
  140.  
  141. ; If enabled, the request will be allowed to complete even if the user aborts
  142. ; the request. Consider enabling it if executing long requests, which may end up
  143. ; being interrupted by the user or a browser timing out. PHP's default behavior
  144. ; is to disable this feature.
  145. ; http://php.net/ignore-user-abort
  146. ;ignore_user_abort = On
  147.  
  148. ; Determines the size of the realpath cache to be used by PHP. This value should
  149. ; be increased on systems where PHP opens many files to reflect the quantity of
  150. ; the file operations performed.
  151. ; http://php.net/realpath-cache-size
  152. ;realpath_cache_size = 16k
  153.  
  154. ; Duration of time, in seconds for which to cache realpath information for a given
  155. ; file or directory. For systems with rarely changing files, consider increasing this
  156. ; value.
  157. ; http://php.net/realpath-cache-ttl
  158. ;realpath_cache_ttl = 120
  159.  
  160. ;;;;;;;;;;;;;;;;;
  161. ; Miscellaneous ;
  162. ;;;;;;;;;;;;;;;;;
  163.  
  164. ; Decides whether PHP may expose the fact that it is installed on the server
  165. ; (e.g. by adding its signature to the Web server header).  It is no security
  166. ; threat in any way, but it makes it possible to determine whether you use PHP
  167. ; on your server or not.
  168. ; http://php.net/expose-php
  169. expose_php = On
  170.  
  171. ;;;;;;;;;;;;;;;;;;;
  172. ; Resource Limits ;
  173. ;;;;;;;;;;;;;;;;;;;
  174.  
  175. ; Maximum execution time of each script, in seconds
  176. ; http://php.net/max-execution-time
  177. ; Note: This directive is hardcoded to 0 for the CLI SAPI
  178. max_execution_time = 30    
  179.  
  180. ; Maximum amount of time each script may spend parsing request data. It's a good
  181. ; idea to limit this time on productions servers in order to eliminate unexpectedly
  182. ; long running scripts.
  183. ; Note: This directive is hardcoded to -1 for the CLI SAPI
  184. ; Default Value: -1 (Unlimited)
  185. ; Development Value: 60 (60 seconds)
  186. ; Production Value: 60 (60 seconds)
  187. ; http://php.net/max-input-time
  188. max_input_time = 60
  189.  
  190. ; Maximum input variable nesting level
  191. ; http://php.net/max-input-nesting-level
  192. ;max_input_nesting_level = 64
  193.  
  194. ; Maximum amount of memory a script may consume (128MB)
  195. ; http://php.net/memory-limit
  196. memory_limit = 128M
  197.  
  198. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  199. ; Error handling and logging ;
  200. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  201.  
  202. ; This directive informs PHP of which errors, warnings and notices you would like
  203. ; it to take action for. The recommended way of setting values for this
  204. ; directive is through the use of the error level constants and bitwise
  205. ; operators. The error level constants are below here for convenience as well as
  206. ; some common settings and their meanings.
  207. ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
  208. ; those related to E_NOTICE and E_STRICT, which together cover best practices and
  209. ; recommended coding standards in PHP. For performance reasons, this is the
  210. ; recommend error reporting setting. Your production server shouldn't be wasting
  211. ; resources complaining about best practices and coding standards. That's what
  212. ; development servers and development settings are for.
  213. ; Note: The php.ini-development file has this setting as E_ALL | E_STRICT. This
  214. ; means it pretty much reports everything which is exactly what you want during
  215. ; development and early testing.
  216. ;
  217. ; Error Level Constants:
  218. ; E_ALL             - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
  219. ; E_ERROR           - fatal run-time errors
  220. ; E_RECOVERABLE_ERROR  - almost fatal run-time errors
  221. ; E_WARNING         - run-time warnings (non-fatal errors)
  222. ; E_PARSE           - compile-time parse errors
  223. ; E_NOTICE          - run-time notices (these are warnings which often result
  224. ;                     from a bug in your code, but it's possible that it was
  225. ;                     intentional (e.g., using an uninitialized variable and
  226. ;                     relying on the fact it's automatically initialized to an
  227. ;                     empty string)
  228. ; E_STRICT          - run-time notices, enable to have PHP suggest changes
  229. ;                     to your code which will ensure the best interoperability
  230. ;                     and forward compatibility of your code
  231. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  232. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  233. ;                     initial startup
  234. ; E_COMPILE_ERROR   - fatal compile-time errors
  235. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  236. ; E_USER_ERROR      - user-generated error message
  237. ; E_USER_WARNING    - user-generated warning message
  238. ; E_USER_NOTICE     - user-generated notice message
  239. ; E_DEPRECATED      - warn about code that will not work in future versions
  240. ;                     of PHP
  241. ; E_USER_DEPRECATED - user-generated deprecation warnings
  242. ;
  243. ; Common Values:
  244. ;   E_ALL & ~E_NOTICE  (Show all errors, except for notices and coding standards warnings.)
  245. ;   E_ALL & ~E_NOTICE | E_STRICT  (Show all errors, except for notices)
  246. ;   E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR  (Show only errors)
  247. ;   E_ALL | E_STRICT  (Show all errors, warnings and notices including coding standards.)
  248. ; Default Value: E_ALL & ~E_NOTICE
  249. ; Development Value: E_ALL | E_STRICT
  250. ; Production Value: E_ALL & ~E_DEPRECATED
  251. ; http://php.net/error-reporting
  252. ini_set 'display_errors', '1' ;
  253. error_reporting = E_ALL & ~E_NOTICE
  254.  
  255. ; This directive controls whether or not and where PHP will output errors,
  256. ; notices and warnings too. Error output is very useful during development, but
  257. ; it could be very dangerous in production environments. Depending on the code
  258. ; which is triggering the error, sensitive information could potentially leak
  259. ; out of your application such as database usernames and passwords or worse.
  260. ; It's recommended that errors be logged on production servers rather than
  261. ; having the errors sent to STDOUT.
  262. ; Possible Values:
  263. ;   Off = Do not display any errors
  264. ;   stderr = Display errors to STDERR (affects only CGI/CLI binaries!)  
  265. ;   On or stdout = Display errors to STDOUT
  266. ; Default Value: On
  267. ; Development Value: On
  268. ; Production Value: Off
  269. ; http://php.net/display-errors
  270. display_errors = On
  271.  
  272. ; The display of errors which occur during PHP's startup sequence are handled
  273. ; separately from display_errors. PHP's default behavior is to suppress those
  274. ; errors from clients. Turning the display of startup errors on can be useful in
  275. ; debugging configuration problems. But, it's strongly recommended that you
  276. ; leave this setting off on production servers.
  277. ; Default Value: Off
  278. ; Development Value: On
  279. ; Production Value: Off
  280. ; http://php.net/display-startup-errors
  281. display_startup_errors = On
  282.  
  283. ; Besides displaying errors, PHP can also log errors to locations such as a
  284. ; server-specific log, STDERR, or a location specified by the error_log
  285. ; directive found below. While errors should not be displayed on productions
  286. ; servers they should still be monitored and logging is a great way to do that.
  287. ; Default Value: Off
  288. ; Development Value: On
  289. ; Production Value: On
  290. ; http://php.net/log-errors
  291. log_errors = On
  292.  
  293. ; Set maximum length of log_errors. In error_log information about the source is
  294. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  295. ; http://php.net/log-errors-max-len
  296. log_errors_max_len = 1024
  297.  
  298. ; Do not log repeated messages. Repeated errors must occur in same file on same
  299. ; line unless ignore_repeated_source is set true.
  300. ; http://php.net/ignore-repeated-errors
  301. ignore_repeated_errors = Off
  302.  
  303. ; Ignore source of message when ignoring repeated messages. When this setting
  304. ; is On you will not log errors with repeated messages from different files or
  305. ; source lines.
  306. ; http://php.net/ignore-repeated-source
  307. ignore_repeated_source = Off
  308.  
  309. ; If this parameter is set to Off, then memory leaks will not be shown (on
  310. ; stdout or in the log). This has only effect in a debug compile, and if
  311. ; error reporting includes E_WARNING in the allowed list
  312. ; http://php.net/report-memleaks
  313. report_memleaks = On
  314.  
  315. ; This setting is on by default.
  316. ;report_zend_debug = 0
  317.  
  318. ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
  319. ; to On can assist in debugging and is appropriate for development servers. It should
  320. ; however be disabled on production servers.
  321. ; Default Value: Off
  322. ; Development Value: On
  323. ; Production Value: Off
  324. ; http://php.net/track-errors
  325. track_errors = On
  326.  
  327. ; Turn off normal error reporting and emit XML-RPC error XML
  328. ; http://php.net/xmlrpc-errors
  329. ;xmlrpc_errors = 0
  330.  
  331. ; An XML-RPC faultCode
  332. ;xmlrpc_error_number = 0
  333.  
  334. ; When PHP displays or logs an error, it has the capability of inserting html
  335. ; links to documentation related to that error. This directive controls whether
  336. ; those HTML links appear in error messages or not. For performance and security
  337. ; reasons, it's recommended you disable this on production servers.
  338. ; Note: This directive is hardcoded to Off for the CLI SAPI
  339. ; Default Value: On
  340. ; Development Value: On
  341. ; Production value: Off
  342. ; http://php.net/html-errors
  343. html_errors = On
  344.  
  345. ; If html_errors is set On PHP produces clickable error messages that direct
  346. ; to a page describing the error or function causing the error in detail.
  347. ; You can download a copy of the PHP manual from http://php.net/docs
  348. ; and change docref_root to the base URL of your local copy including the
  349. ; leading '/'. You must also specify the file extension being used including
  350. ; the dot. PHP's default behavior is to leave these settings empty.
  351. ; Note: Never use this feature for production boxes.
  352. ; http://php.net/docref-root
  353. ; Examples
  354. ;docref_root = "/phpmanual/"
  355.  
  356. ; http://php.net/docref-ext
  357. ;docref_ext = .html
  358.  
  359. ; String to output before an error message. PHP's default behavior is to leave
  360. ; this setting blank.
  361. ; http://php.net/error-prepend-string
  362. ; Example:
  363. ;error_prepend_string = "<font color=#ff0000>"
  364.  
  365. ; String to output after an error message. PHP's default behavior is to leave
  366. ; this setting blank.
  367. ; http://php.net/error-append-string
  368. ; Example:
  369. ;error_append_string = "</font>"
  370.  
  371. ; Log errors to specified file. PHP's default behavior is to leave this value
  372. ; empty.
  373. ; http://php.net/error-log
  374. ; Example:
  375. ;error_log = php_errors.log
  376. error_log =  "php_error.txt"
  377. ; "/opt/lampp/logs/php_error_log"
  378. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  379. ;error_log = syslog
  380.  
  381. ;;;;;;;;;;;;;;;;;
  382. ; Data Handling ;
  383. ;;;;;;;;;;;;;;;;;
  384.  
  385. ; Note - track_vars is ALWAYS enabled
  386.  
  387. ; The separator used in PHP generated URLs to separate arguments.
  388. ; PHP's default setting is "&".
  389. ; http://php.net/arg-separator.output
  390. ; Example:
  391. ;arg_separator.output = "&amp;"
  392.  
  393. ; List of separator(s) used by PHP to parse input URLs into variables.
  394. ; PHP's default setting is "&".
  395. ; NOTE: Every character in this directive is considered as separator!
  396. ; http://php.net/arg-separator.input
  397. ; Example:
  398. ;arg_separator.input = ";&"
  399.  
  400. ; This directive determines which super global arrays are registered when PHP
  401. ; starts up. If the register_globals directive is enabled, it also determines
  402. ; what order variables are populated into the global space. G,P,C,E & S are
  403. ; abbreviations for the following respective super globals: GET, POST, COOKIE,
  404. ; ENV and SERVER. There is a performance penalty paid for the registration of
  405. ; these arrays and because ENV is not as commonly used as the others, ENV is
  406. ; is not recommended on productions servers. You can still get access to
  407. ; the environment variables through getenv() should you need to.
  408. ; Default Value: "EGPCS"
  409. ; Development Value: "GPCS"
  410. ; Production Value: "GPCS";
  411. ; http://php.net/variables-order
  412. variables_order = "GPCS"
  413.  
  414. ; This directive determines which super global data (G,P,C,E & S) should
  415. ; be registered into the super global array REQUEST. If so, it also determines
  416. ; the order in which that data is registered. The values for this directive are
  417. ; specified in the same manner as the variables_order directive, EXCEPT one.
  418. ; Leaving this value empty will cause PHP to use the value set in the
  419. ; variables_order directive. It does not mean it will leave the super globals
  420. ; array REQUEST empty.
  421. ; Default Value: None
  422. ; Development Value: "GP"
  423. ; Production Value: "GP"
  424. ; http://php.net/request-order
  425. request_order = "GP"
  426.  
  427. ; Whether or not to register the EGPCS variables as global variables.  You may
  428. ; want to turn this off if you don't want to clutter your scripts' global scope
  429. ; with user data.  This makes most sense when coupled with track_vars - in which
  430. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  431. ; variables.
  432. ; You should do your best to write your scripts so that they do not require
  433. ; register_globals to be on;  Using form variables as globals can easily lead
  434. ; to possible security problems, if the code is not very well thought of.
  435. ; http://php.net/register-globals
  436. register_globals = Off
  437.  
  438. ; Determines whether the deprecated long $HTTP_*_VARS type predefined variables
  439. ; are registered by PHP or not. As they are deprecated, we obviously don't
  440. ; recommend you use them. They are on by default for compatibility reasons but
  441. ; they are not recommended on production servers.
  442. ; Default Value: On
  443. ; Development Value: Off
  444. ; Production Value: Off
  445. ; http://php.net/register-long-arrays
  446. register_long_arrays = Off
  447.  
  448. ; This directive determines whether PHP registers $argv & $argc each time it
  449. ; runs. $argv contains an array of all the arguments passed to PHP when a script
  450. ; is invoked. $argc contains an integer representing the number of arguments
  451. ; that were passed when the script was invoked. These arrays are extremely
  452. ; useful when running scripts from the command line. When this directive is
  453. ; enabled, registering these variables consumes CPU cycles and memory each time
  454. ; a script is executed. For performance reasons, this feature should be disabled
  455. ; on production servers.
  456. ; Note: This directive is hardcoded to On for the CLI SAPI
  457. ; Default Value: On
  458. ; Development Value: Off
  459. ; Production Value: Off
  460. ; http://php.net/register-argc-argv
  461. register_argc_argv = Off
  462.  
  463. ; When enabled, the SERVER and ENV variables are created when they're first
  464. ; used (Just In Time) instead of when the script starts. If these variables
  465. ; are not used within a script, having this directive on will result in a
  466. ; performance gain. The PHP directives register_globals, register_long_arrays,
  467. ; and register_argc_argv must be disabled for this directive to have any affect.
  468. ; http://php.net/auto-globals-jit
  469. auto_globals_jit = On
  470.  
  471. ; Maximum size of POST data that PHP will accept.
  472. ; http://php.net/post-max-size
  473. post_max_size = 128M
  474.  
  475. ; Magic quotes are a preprocessing feature of PHP where PHP will attempt to
  476. ; escape any character sequences in GET, POST, COOKIE and ENV data which might
  477. ; otherwise corrupt data being placed in resources such as databases before
  478. ; making that data available to you. Because of character encoding issues and
  479. ; non-standard SQL implementations across many databases, it's not currently
  480. ; possible for this feature to be 100% accurate. PHP's default behavior is to
  481. ; enable the feature. We strongly recommend you use the escaping mechanisms
  482. ; designed specifically for the database your using instead of relying on this
  483. ; feature. Also note, this feature has been deprecated as of PHP 5.3.0 and is
  484. ; scheduled for removal in PHP 6.
  485. ; Default Value: On
  486. ; Development Value: Off
  487. ; Production Value: Off
  488. ; http://php.net/magic-quotes-gpc
  489. magic_quotes_gpc = Off
  490.  
  491. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  492. ; http://php.net/magic-quotes-runtime
  493. magic_quotes_runtime = Off
  494.  
  495. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  496. ; http://php.net/magic-quotes-sybase
  497. magic_quotes_sybase = Off
  498.  
  499. ; Automatically add files before PHP document.
  500. ; http://php.net/auto-prepend-file
  501. auto_prepend_file =
  502.  
  503. ; Automatically add files after PHP document.
  504. ; http://php.net/auto-append-file
  505. auto_append_file =
  506.  
  507. ; By default, PHP will output a character encoding using
  508. ; the Content-type: header.  To disable sending of the charset, simply
  509. ; set it to be empty.
  510. ;
  511. ; PHP's built-in default is text/html
  512. ; http://php.net/default-mimetype
  513. default_mimetype = "text/html"
  514.  
  515. ; PHP's default character set is set to empty.
  516. ; http://php.net/default-charset
  517. ;default_charset = "iso-8859-1"
  518.  
  519. ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
  520. ; to disable this feature.
  521. ; http://php.net/always-populate-raw-post-data
  522. ;always_populate_raw_post_data = On
  523.  
  524. ;;;;;;;;;;;;;;;;;;;;;;;;;
  525. ; Paths and Directories ;
  526. ;;;;;;;;;;;;;;;;;;;;;;;;;
  527.  
  528. ; UNIX: "/path1:/path2"
  529. ;include_path = ".:/php/includes"
  530. ;
  531. ; Windows: "\path1;\path2"
  532. include_path = ".;C:\xampp\php\PEAR"
  533. ;
  534. ; PHP's default setting for include_path is ".;/path/to/php/pear"
  535. ; http://php.net/include-path
  536.  
  537. ; The root of the PHP pages, used only if nonempty.
  538. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  539. ; if you are running php as a CGI under any web server (other than IIS)
  540. ; see documentation for security issues.  The alternate is to use the
  541. ; cgi.force_redirect configuration below
  542. ; http://php.net/doc-root
  543. doc_root =
  544.  
  545. ; The directory under which PHP opens the script using /~username used only
  546. ; if nonempty.
  547. ; http://php.net/user-dir
  548. user_dir =
  549.  
  550. ; Directory in which the loadable extensions (modules) reside.
  551. ; http://php.net/extension-dir
  552. ; extension_dir = "./"
  553. ; On windows:
  554. extension_dir = "C:\xampp\php\ext"
  555.  
  556. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  557. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  558. ; disabled on them.
  559. ; http://php.net/enable-dl
  560. enable_dl = On
  561.  
  562. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  563. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  564. ; turn it off here AT YOUR OWN RISK
  565. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  566. ; http://php.net/cgi.force-redirect
  567. ;cgi.force_redirect = 1
  568.  
  569. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  570. ; every request. PHP's default behavior is to disable this feature.
  571. ;cgi.nph = 1
  572.  
  573. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  574. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  575. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  576. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  577. ; http://php.net/cgi.redirect-status-env
  578. ;cgi.redirect_status_env = ;
  579.  
  580. ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
  581. ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
  582. ; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
  583. ; this to 1 will cause PHP CGI to fix its paths to conform to the spec.  A setting
  584. ; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
  585. ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
  586. ; http://php.net/cgi.fix-pathinfo
  587. ;cgi.fix_pathinfo=1
  588.  
  589. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  590. ; security tokens of the calling client.  This allows IIS to define the
  591. ; security context that the request runs under.  mod_fastcgi under Apache
  592. ; does not currently support this feature (03/17/2002)
  593. ; Set to 1 if running under IIS.  Default is zero.
  594. ; http://php.net/fastcgi.impersonate
  595. ;fastcgi.impersonate = 1;
  596.  
  597. ; Disable logging through FastCGI connection. PHP's default behavior is to enable
  598. ; this feature.
  599. ;fastcgi.logging = 0
  600.  
  601. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  602. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  603. ; is supported by Apache. When this option is set to 1 PHP will send
  604. ; RFC2616 compliant header.
  605. ; Default is zero.
  606. ; http://php.net/cgi.rfc2616-headers
  607. ;cgi.rfc2616_headers = 0
  608.  
  609. ;;;;;;;;;;;;;;;;
  610. ; File Uploads ;
  611. ;;;;;;;;;;;;;;;;
  612.  
  613. ; Whether to allow HTTP file uploads.
  614. ; http://php.net/file-uploads
  615. file_uploads = On
  616.  
  617. ; Temporary directory for HTTP uploaded files (will use system default if not
  618. ; specified).
  619. ; http://php.net/upload-tmp-dir
  620. upload_tmp_dir = "C:\xampp\tmp"
  621.  
  622. ; Maximum allowed size for uploaded files.
  623. ; http://php.net/upload-max-filesize
  624. upload_max_filesize = 128M
  625.  
  626. ;;;;;;;;;;;;;;;;;;
  627. ; Fopen wrappers ;
  628. ;;;;;;;;;;;;;;;;;;
  629.  
  630. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  631. ; http://php.net/allow-url-fopen
  632. allow_url_fopen = On
  633.  
  634. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  635. ; http://php.net/allow-url-include
  636. allow_url_include = Off
  637.  
  638. ; Define the anonymous ftp password (your email address). PHP's default setting
  639. ; for this is empty.
  640. ; http://php.net/from
  641. ;from="john@doe.com"
  642.  
  643. ; Define the User-Agent string. PHP's default setting for this is empty.
  644. ; http://php.net/user-agent
  645. ;user_agent="PHP"
  646.  
  647. ; Default timeout for socket based streams (seconds)
  648. ; http://php.net/default-socket-timeout
  649. default_socket_timeout = 60
  650.  
  651. ; If your scripts have to deal with files from Macintosh systems,
  652. ; or you are running on a Mac and need to deal with files from
  653. ; unix or win32 systems, setting this flag will cause PHP to
  654. ; automatically detect the EOL character in those files so that
  655. ; fgets() and file() will work regardless of the source of the file.
  656. ; http://php.net/auto-detect-line-endings
  657. ;auto_detect_line_endings = Off
  658.  
  659. ;;;;;;;;;;;;;;;;;;;;;;
  660. ; Dynamic Extensions ;
  661. ;;;;;;;;;;;;;;;;;;;;;;
  662.  
  663. ; If you wish to have an extension loaded automatically, use the following
  664. ; syntax:
  665. ;
  666. ;   extension=modulename.extension
  667. ;
  668. ; For example, on Windows:
  669. ;
  670. ;   extension=msql.dll
  671. ;
  672. ; ... or under UNIX:
  673. ;
  674. ;   extension=msql.so
  675. ;
  676. ; ... or with a path:
  677. ;
  678. ;   extension=/path/to/extension/msql.so
  679. ;
  680. ; If you only provide the name of the extension, PHP will look for it in its
  681. ; default extension directory.
  682. ;
  683. ; Windows Extensions
  684. ; Note that ODBC support is built in, so no dll is needed for it.
  685. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
  686. ; extension folders as well as the separate PECL DLL download (PHP 5).
  687. ; Be sure to appropriately set the extension_dir directive.
  688.  
  689. extension=php_bz2.dll
  690. ;extension=php_curl.dll
  691. ;extension=php_dba.dll
  692. extension=php_mbstring.dll
  693. extension=php_exif.dll
  694. ;extension=php_fileinfo.dll
  695. extension=php_gd2.dll
  696. extension=php_gettext.dll
  697. ;extension=php_gmp.dll
  698. extension=php_imap.dll
  699. ;extension=php_interbase.dll
  700. ;extension=php_ldap.dll
  701. ;extension=php_mssql.dll
  702. ;extension=php_mysql_mysqlnd.dll
  703. extension=php_mysql.dll
  704. ;extension=php_mysqli_mysqlnd.dll
  705. extension=php_mysqli.dll
  706. ;extension=php_oci8.dll
  707. extension=php_openssl.dll
  708. ;extension=php_pdo_firebird.dll
  709. ;extension=php_pdo_mssql.dll
  710. ;extension=php_pdo_mysql_mysqlnd.dll
  711. extension=php_pdo_mysql.dll
  712. extension=php_pdo_odbc.dll
  713. ;extension=php_pdo_pgsql.dll
  714. extension=php_pdo_sqlite.dll
  715. ;extension=php_pdo_sqlite_external.dll
  716. ;extension=php_pgsql.dll
  717. ;extension=php_pspell.dll
  718. ;extension=php_shmop.dll
  719. ;extension=php_snmp.dll
  720. ;extension=php_soap.dll
  721. extension=php_sockets.dll
  722. extension=php_sqlite.dll
  723. extension=php_sqlite3.dll
  724. ;extension=php_sybase_ct.dll
  725. ;extension=php_tidy.dll
  726. extension=php_xmlrpc.dll
  727.  
  728. [PECL]
  729. extension=php_ming.dll
  730. ;extension=php_pdo_oci.dll
  731. ;extension=php_pdo_oci8.dll
  732.  
  733. ;;;;;;;;;;;;;;;;;;;
  734. ; Module Settings ;
  735. ;;;;;;;;;;;;;;;;;;;
  736.  
  737. [Date]
  738. ; Defines the default timezone used by the date functions
  739. ; http://php.net/date.timezone
  740. date.timezone = Europe/Berlin
  741.  
  742. ; http://php.net/date.default-latitude
  743. ;date.default_latitude = 31.7667
  744.  
  745. ; http://php.net/date.default-longitude
  746. ;date.default_longitude = 35.2333
  747.  
  748. ; http://php.net/date.sunrise-zenith
  749. ;date.sunrise_zenith = 90.583333
  750.  
  751. ; http://php.net/date.sunset-zenith
  752. ;date.sunset_zenith = 90.583333
  753.  
  754. [filter]
  755. ; http://php.net/filter.default
  756. ;filter.default = unsafe_raw
  757.  
  758. ; http://php.net/filter.default-flags
  759. ;filter.default_flags =
  760.  
  761. [iconv]
  762. ;iconv.input_encoding = ISO-8859-1
  763. ;iconv.internal_encoding = ISO-8859-1
  764. ;iconv.output_encoding = ISO-8859-1
  765.  
  766. [intl]
  767. ;intl.default_locale =
  768.  
  769. [sqlite]
  770. ; http://php.net/sqlite.assoc-case
  771. ;sqlite.assoc_case = 0
  772.  
  773. [sqlite3]
  774. ;sqlite3.extension_dir =
  775.  
  776. [Pcre]
  777. ;PCRE library backtracking limit.
  778. ; http://php.net/pcre.backtrack-limit
  779. ;pcre.backtrack_limit=100000
  780.  
  781. ;PCRE library recursion limit.
  782. ;Please note that if you set this value to a high number you may consume all
  783. ;the available process stack and eventually crash PHP (due to reaching the
  784. ;stack size limit imposed by the Operating System).
  785. ; http://php.net/pcre.recursion-limit
  786. ;pcre.recursion_limit=100000
  787.  
  788. [Pdo]
  789. ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
  790. ; http://php.net/pdo-odbc.connection-pooling
  791. ;pdo_odbc.connection_pooling=strict
  792.  
  793. ;pdo_odbc.db2_instance_name
  794.  
  795. [Pdo_mysql]
  796. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  797. ; http://php.net/pdo_mysql.cache_size
  798. pdo_mysql.cache_size = 2000
  799.  
  800. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  801. ; MySQL defaults.
  802. ; http://php.net/pdo_mysql.default-socket
  803. pdo_mysql.default_socket = "MySQL"
  804.  
  805. [Phar]
  806. ; http://php.net/phar.readonly
  807. ;phar.readonly = On
  808.  
  809. ; http://php.net/phar.require-hash
  810. ;phar.require_hash = On
  811.  
  812. ;phar.cache_list =
  813.  
  814. [Syslog]
  815. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  816. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  817. ; runtime, you can define these variables by calling define_syslog_variables().
  818. ; http://php.net/define-syslog-variables
  819. define_syslog_variables  = Off
  820.  
  821. [mail function]
  822. ; For Win32 only.
  823. ; http://php.net/smtp
  824. SMTP = localhost
  825. ; http://php.net/smtp-port
  826. smtp_port = 25
  827.  
  828. ; For Win32 only.
  829. ; http://php.net/sendmail-from
  830. ;sendmail_from = postmaster@localhost
  831.  
  832. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  833. ; http://php.net/sendmail-path
  834. ;sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
  835.  
  836. ; Force the addition of the specified parameters to be passed as extra parameters
  837. ; to the sendmail binary. These parameters will always replace the value of
  838. ; the 5th parameter to mail(), even in safe mode.
  839. ;mail.force_extra_parameters =
  840.  
  841. ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
  842. mail.add_x_header = Off
  843.  
  844. ; Log all mail() calls including the full path of the script, line #, to address and headers
  845. ;mail.log = "C:\xampp\apache\logs\php_mail.log"
  846.  
  847. [SQL]
  848. ; http://php.net/sql.safe-mode
  849. sql.safe_mode = Off
  850.  
  851. [ODBC]
  852. ; http://php.net/odbc.default-db
  853. ;odbc.default_db    =  Not yet implemented
  854.  
  855. ; http://php.net/odbc.default-user
  856. ;odbc.default_user  =  Not yet implemented
  857.  
  858. ; http://php.net/odbc.default-pw
  859. ;odbc.default_pw    =  Not yet implemented
  860.  
  861. ; Controls the ODBC cursor model.
  862. ; Default: SQL_CURSOR_STATIC (default).
  863. ;odbc.default_cursortype
  864.  
  865. ; Allow or prevent persistent links.
  866. ; http://php.net/odbc.allow-persistent
  867. odbc.allow_persistent = On
  868.  
  869. ; Check that a connection is still valid before reuse.
  870. ; http://php.net/odbc.check-persistent
  871. odbc.check_persistent = On
  872.  
  873. ; Maximum number of persistent links.  -1 means no limit.
  874. ; http://php.net/odbc.max-persistent
  875. odbc.max_persistent = -1
  876.  
  877. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  878. ; http://php.net/odbc.max-links
  879. odbc.max_links = -1
  880.  
  881. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  882. ; passthru.
  883. ; http://php.net/odbc.defaultlrl
  884. odbc.defaultlrl = 4096
  885.  
  886. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  887. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  888. ; of odbc.defaultlrl and odbc.defaultbinmode
  889. ; http://php.net/odbc.defaultbinmode
  890. odbc.defaultbinmode = 1
  891.  
  892. ;birdstep.max_links = -1
  893.  
  894. [Interbase]
  895. ; Allow or prevent persistent links.
  896. ibase.allow_persistent = 1
  897.  
  898. ; Maximum number of persistent links.  -1 means no limit.
  899. ibase.max_persistent = -1
  900.  
  901. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  902. ibase.max_links = -1
  903.  
  904. ; Default database name for ibase_connect().
  905. ;ibase.default_db =
  906.  
  907. ; Default username for ibase_connect().
  908. ;ibase.default_user =
  909.  
  910. ; Default password for ibase_connect().
  911. ;ibase.default_password =
  912.  
  913. ; Default charset for ibase_connect().
  914. ;ibase.default_charset =
  915.  
  916. ; Default timestamp format.
  917. ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
  918.  
  919. ; Default date format.
  920. ibase.dateformat = "%Y-%m-%d"
  921.  
  922. ; Default time format.
  923. ibase.timeformat = "%H:%M:%S"
  924.  
  925. [MySQL]
  926. ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  927. ; http://php.net/mysql.allow_local_infile
  928. mysql.allow_local_infile = On
  929.  
  930. ; Allow or prevent persistent links.
  931. ; http://php.net/mysql.allow-persistent
  932. mysql.allow_persistent = On
  933.  
  934. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  935. ; http://php.net/mysql.cache_size
  936. mysql.cache_size = 2000
  937.  
  938. ; Maximum number of persistent links.  -1 means no limit.
  939. ; http://php.net/mysql.max-persistent
  940. mysql.max_persistent = -1
  941.  
  942. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  943. ; http://php.net/mysql.max-links
  944. mysql.max_links = -1
  945.  
  946. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  947. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  948. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  949. ; at MYSQL_PORT.
  950. ; http://php.net/mysql.default-port
  951. mysql.default_port = 3306
  952.  
  953. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  954. ; MySQL defaults.
  955. ; http://php.net/mysql.default-socket
  956. mysql.default_socket = "MySQL"
  957.  
  958. ; Default host for mysql_connect() (doesn't apply in safe mode).
  959. ; http://php.net/mysql.default-host
  960. mysql.default_host =
  961.  
  962. ; Default user for mysql_connect() (doesn't apply in safe mode).
  963. ; http://php.net/mysql.default-user
  964. mysql.default_user =
  965.  
  966. ; Default password for mysql_connect() (doesn't apply in safe mode).
  967. ; Note that this is generally a *bad* idea to store passwords in this file.
  968. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  969. ; and reveal this password!  And of course, any users with read access to this
  970. ; file will be able to reveal the password as well.
  971. ; http://php.net/mysql.default-password
  972. mysql.default_password =
  973.  
  974. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  975. ; http://php.net/mysql.connect-timeout
  976. mysql.connect_timeout = 3
  977.  
  978. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  979. ; SQL-Errors will be displayed.
  980. ; http://php.net/mysql.trace-mode
  981. mysql.trace_mode = Off
  982.  
  983. [MySQLi]
  984.  
  985. ; Maximum number of persistent links.  -1 means no limit.
  986. ; http://php.net/mysqli.max-persistent
  987. mysqli.max_persistent = -1
  988.  
  989. ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
  990. ; http://php.net/mysqli.allow_local_infile
  991. mysqli.allow_local_infile = On
  992.  
  993. ; Allow or prevent persistent links.
  994. ; http://php.net/mysqli.allow-persistent
  995. mysqli.allow_persistent = On
  996.  
  997. ; Maximum number of links.  -1 means no limit.
  998. ; http://php.net/mysqli.max-links
  999. mysqli.max_links = -1
  1000.  
  1001. ; If mysqlnd is used: Number of cache slots for the internal result set cache
  1002. ; http://php.net/mysqli.cache_size
  1003. mysqli.cache_size = 2000
  1004.  
  1005. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  1006. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  1007. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  1008. ; at MYSQL_PORT.
  1009. ; http://php.net/mysqli.default-port
  1010. mysqli.default_port = 3306
  1011.  
  1012. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  1013. ; MySQL defaults.
  1014. ; http://php.net/mysqli.default-socket
  1015. mysqli.default_socket = "MySQL"
  1016.  
  1017. ; Default host for mysql_connect() (doesn't apply in safe mode).
  1018. ; http://php.net/mysqli.default-host
  1019. mysqli.default_host =
  1020.  
  1021. ; Default user for mysql_connect() (doesn't apply in safe mode).
  1022. ; http://php.net/mysqli.default-user
  1023. mysqli.default_user =
  1024.  
  1025. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  1026. ; Note that this is generally a *bad* idea to store passwords in this file.
  1027. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  1028. ; and reveal this password!  And of course, any users with read access to this
  1029. ; file will be able to reveal the password as well.
  1030. ; http://php.net/mysqli.default-pw
  1031. mysqli.default_pw =
  1032.  
  1033. ; Allow or prevent reconnect
  1034. mysqli.reconnect = Off
  1035.  
  1036. [mysqlnd]
  1037. ; Enable / Disable collection of general statstics by mysqlnd which can be
  1038. ; used to tune and monitor MySQL operations.
  1039. ; http://php.net/mysqlnd.collect_statistics
  1040. mysqlnd.collect_statistics = On
  1041.  
  1042. ; Enable / Disable collection of memory usage statstics by mysqlnd which can be
  1043. ; used to tune and monitor MySQL operations.
  1044. ; http://php.net/mysqlnd.collect_memory_statistics
  1045. mysqlnd.collect_memory_statistics = Off
  1046.  
  1047. ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
  1048. ; http://php.net/mysqlnd.net_cmd_buffer_size
  1049. ;mysqlnd.net_cmd_buffer_size = 2048
  1050.  
  1051. ; Size of a pre-allocated buffer used for reading data sent by the server in
  1052. ; bytes.
  1053. ; http://php.net/mysqlnd.net_read_buffer_size
  1054. ;mysqlnd.net_read_buffer_size = 32768
  1055.  
  1056. [OCI8]
  1057.  
  1058. ; Connection: Enables privileged connections using external
  1059. ; credentials (OCI_SYSOPER, OCI_SYSDBA)
  1060. ; http://php.net/oci8.privileged-connect
  1061. ;oci8.privileged_connect = Off
  1062.  
  1063. ; Connection: The maximum number of persistent OCI8 connections per
  1064. ; process. Using -1 means no limit.
  1065. ; http://php.net/oci8.max-persistent
  1066. ;oci8.max_persistent = -1
  1067.  
  1068. ; Connection: The maximum number of seconds a process is allowed to
  1069. ; maintain an idle persistent connection. Using -1 means idle
  1070. ; persistent connections will be maintained forever.
  1071. ; http://php.net/oci8.persistent-timeout
  1072. ;oci8.persistent_timeout = -1
  1073.  
  1074. ; Connection: The number of seconds that must pass before issuing a
  1075. ; ping during oci_pconnect() to check the connection validity. When
  1076. ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
  1077. ; pings completely.
  1078. ; http://php.net/oci8.ping-interval
  1079. ;oci8.ping_interval = 60
  1080.  
  1081. ; Connection: Set this to a user chosen connection class to be used
  1082. ; for all pooled server requests with Oracle 11g Database Resident
  1083. ; Connection Pooling (DRCP).  To use DRCP, this value should be set to
  1084. ; the same string for all web servers running the same application,
  1085. ; the database pool must be configured, and the connection string must
  1086. ; specify to use a pooled server.
  1087. ;oci8.connection_class =
  1088.  
  1089. ; High Availability: Using On lets PHP receive Fast Application
  1090. ; Notification (FAN) events generated when a database node fails. The
  1091. ; database must also be configured to post FAN events.
  1092. ;oci8.events = Off
  1093.  
  1094. ; Tuning: This option enables statement caching, and specifies how
  1095. ; many statements to cache. Using 0 disables statement caching.
  1096. ; http://php.net/oci8.statement-cache-size
  1097. ;oci8.statement_cache_size = 20
  1098.  
  1099. ; Tuning: Enables statement prefetching and sets the default number of
  1100. ; rows that will be fetched automatically after statement execution.
  1101. ; http://php.net/oci8.default-prefetch
  1102. ;oci8.default_prefetch = 100
  1103.  
  1104. ; Compatibility. Using On means oci_close() will not close
  1105. ; oci_connect() and oci_new_connect() connections.
  1106. ; http://php.net/oci8.old-oci-close-semantics
  1107. ;oci8.old_oci_close_semantics = Off
  1108.  
  1109. [PostgresSQL]
  1110. ; Allow or prevent persistent links.
  1111. ; http://php.net/pgsql.allow-persistent
  1112. pgsql.allow_persistent = On
  1113.  
  1114. ; Detect broken persistent links always with pg_pconnect().
  1115. ; Auto reset feature requires a little overheads.
  1116. ; http://php.net/pgsql.auto-reset-persistent
  1117. pgsql.auto_reset_persistent = Off
  1118.  
  1119. ; Maximum number of persistent links.  -1 means no limit.
  1120. ; http://php.net/pgsql.max-persistent
  1121. pgsql.max_persistent = -1
  1122.  
  1123. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  1124. ; http://php.net/pgsql.max-links
  1125. pgsql.max_links = -1
  1126.  
  1127. ; Ignore PostgreSQL backends Notice message or not.
  1128. ; Notice message logging require a little overheads.
  1129. ; http://php.net/pgsql.ignore-notice
  1130. pgsql.ignore_notice = 0
  1131.  
  1132. ; Log PostgreSQL backends Noitce message or not.
  1133. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  1134. ; http://php.net/pgsql.log-notice
  1135. pgsql.log_notice = 0
  1136.  
  1137. [Sybase-CT]
  1138. ; Allow or prevent persistent links.
  1139. ; http://php.net/sybct.allow-persistent
  1140. sybct.allow_persistent = On
  1141.  
  1142. ; Maximum number of persistent links.  -1 means no limit.
  1143. ; http://php.net/sybct.max-persistent
  1144. sybct.max_persistent = -1
  1145.  
  1146. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  1147. ; http://php.net/sybct.max-links
  1148. sybct.max_links = -1
  1149.  
  1150. ; Minimum server message severity to display.
  1151. ; http://php.net/sybct.min-server-severity
  1152. sybct.min_server_severity = 10
  1153.  
  1154. ; Minimum client message severity to display.
  1155. ; http://php.net/sybct.min-client-severity
  1156. sybct.min_client_severity = 10
  1157.  
  1158. ; Set per-context timeout
  1159. ; http://php.net/sybct.timeout
  1160. ;sybct.timeout=
  1161.  
  1162. ;sybct.packet_size
  1163.  
  1164. ; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
  1165. ; Default: one minute
  1166. ;sybct.login_timeout=
  1167.  
  1168. ; The name of the host you claim to be connecting from, for display by sp_who.
  1169. ; Default: none
  1170. ;sybct.hostname=
  1171.  
  1172. ; Allows you to define how often deadlocks are to be retried. -1 means "forever".
  1173. ; Default: 0
  1174. ;sybct.deadlock_retry_count=
  1175.  
  1176. [bcmath]
  1177. ; Number of decimal digits for all bcmath functions.
  1178. ; http://php.net/bcmath.scale
  1179. bcmath.scale = 0
  1180.  
  1181. [browscap]
  1182. ; http://php.net/browscap
  1183. browscap = "C:\xampp\php\extras\browscap.ini"
  1184.  
  1185. [Session]
  1186. ; Handler used to store/retrieve data.
  1187. ; http://php.net/session.save-handler
  1188. session.save_handler = files
  1189.  
  1190. ; Argument passed to save_handler.  In the case of files, this is the path
  1191. ; where data files are stored. Note: Windows users have to change this
  1192. ; variable in order to use PHP's session functions.
  1193. ;
  1194. ; The path can be defined as:
  1195. ;
  1196. ;     session.save_path = "N;/path"
  1197. ;
  1198. ; where N is an integer.  Instead of storing all the session files in
  1199. ; /path, what this will do is use subdirectories N-levels deep, and
  1200. ; store the session data in those directories.  This is useful if you
  1201. ; or your OS have problems with lots of files in one directory, and is
  1202. ; a more efficient layout for servers that handle lots of sessions.
  1203. ;
  1204. ; NOTE 1: PHP will not create this directory structure automatically.
  1205. ;         You can use the script in the ext/session dir for that purpose.
  1206. ; NOTE 2: See the section on garbage collection below if you choose to
  1207. ;         use subdirectories for session storage
  1208. ;
  1209. ; The file storage module creates files using mode 600 by default.
  1210. ; You can change that by using
  1211. ;
  1212. ;     session.save_path = "N;MODE;/path"
  1213. ;
  1214. ; where MODE is the octal representation of the mode. Note that this
  1215. ; does not overwrite the process's umask.
  1216. ; http://php.net/session.save-path
  1217. session.save_path = "C:\xampp\tmp"
  1218.  
  1219. ; Whether to use cookies.
  1220. ; http://php.net/session.use-cookies
  1221. session.use_cookies = 1
  1222.  
  1223. ; http://php.net/session.cookie-secure
  1224. ;session.cookie_secure =
  1225.  
  1226. ; This option forces PHP to fetch and use a cookie for storing and maintaining
  1227. ; the session id. We encourage this operation as it's very helpful in combatting
  1228. ; session hijacking when not specifying and managing your own session id. It is
  1229. ; not the end all be all of session hijacking defense, but it's a good start.
  1230. ; http://php.net/session.use-only-cookies
  1231. session.use_only_cookies = 0
  1232.  
  1233. ; Name of the session (used as cookie name).
  1234. ; http://php.net/session.name
  1235. session.name = PHPSESSID
  1236.  
  1237. ; Initialize session on request startup.
  1238. ; http://php.net/session.auto-start
  1239. session.auto_start = 0
  1240.  
  1241. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  1242. ; http://php.net/session.cookie-lifetime
  1243. session.cookie_lifetime = 0
  1244.  
  1245. ; The path for which the cookie is valid.
  1246. ; http://php.net/session.cookie-path
  1247. session.cookie_path = /
  1248.  
  1249. ; The domain for which the cookie is valid.
  1250. ; http://php.net/session.cookie-domain
  1251. session.cookie_domain =
  1252.  
  1253. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  1254. ; http://php.net/session.cookie-httponly
  1255. session.cookie_httponly =
  1256.  
  1257. ; Handler used to serialize data.  php is the standard serializer of PHP.
  1258. ; http://php.net/session.serialize-handler
  1259. session.serialize_handler = php
  1260.  
  1261. ; Defines the probability that the 'garbage collection' process is started
  1262. ; on every session initialization. The probability is calculated by using
  1263. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
  1264. ; and gc_divisor is the denominator in the equation. Setting this value to 1
  1265. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1266. ; the gc will run on any give request.
  1267. ; Default Value: 1
  1268. ; Development Value: 1
  1269. ; Production Value: 1
  1270. ; http://php.net/session.gc-probability
  1271. session.gc_probability = 1
  1272.  
  1273. ; Defines the probability that the 'garbage collection' process is started on every
  1274. ; session initialization. The probability is calculated by using the following equation:
  1275. ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
  1276. ; session.gc_divisor is the denominator in the equation. Setting this value to 1
  1277. ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
  1278. ; the gc will run on any give request. Increasing this value to 1000 will give you
  1279. ; a 0.1% chance the gc will run on any give request. For high volume production servers,
  1280. ; this is a more efficient approach.
  1281. ; Default Value: 100
  1282. ; Development Value: 1000
  1283. ; Production Value: 1000
  1284. ; http://php.net/session.gc-divisor
  1285. session.gc_divisor = 100
  1286.  
  1287. ; After this number of seconds, stored data will be seen as 'garbage' and
  1288. ; cleaned up by the garbage collection process.
  1289. ; http://php.net/session.gc-maxlifetime
  1290. session.gc_maxlifetime = 1440
  1291.  
  1292. ; NOTE: If you are using the subdirectory option for storing session files
  1293. ;       (see session.save_path above), then garbage collection does *not*
  1294. ;       happen automatically.  You will need to do your own garbage
  1295. ;       collection through a shell script, cron entry, or some other method.
  1296. ;       For example, the following script would is the equivalent of
  1297. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  1298. ;          cd /path/to/sessions; find -cmin +24 | xargs rm
  1299.  
  1300. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  1301. ; to initialize a session variable in the global scope, even when register_globals
  1302. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  1303. ; You can disable the feature and the warning separately. At this time,
  1304. ; the warning is only displayed, if bug_compat_42 is enabled. This feature
  1305. ; introduces some serious security problems if not handled correctly. It's
  1306. ; recommended that you do not use this feature on production servers. But you
  1307. ; should enable this on development servers and enable the warning as well. If you
  1308. ; do not enable the feature on development servers, you won't be warned when it's
  1309. ; used and debugging errors caused by this can be difficult to track down.
  1310. ; Default Value: On
  1311. ; Development Value: On
  1312. ; Production Value: Off
  1313. ; http://php.net/session.bug-compat-42
  1314. session.bug_compat_42 = On
  1315.  
  1316. ; This setting controls whether or not you are warned by PHP when initializing a
  1317. ; session value into the global space. session.bug_compat_42 must be enabled before
  1318. ; these warnings can be issued by PHP. See the directive above for more information.
  1319. ; Default Value: On
  1320. ; Development Value: On
  1321. ; Production Value: Off
  1322. ; http://php.net/session.bug-compat-warn
  1323. session.bug_compat_warn = On
  1324.  
  1325. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  1326. ; HTTP_REFERER has to contain this substring for the session to be
  1327. ; considered as valid.
  1328. ; http://php.net/session.referer-check
  1329. session.referer_check =
  1330.  
  1331. ; How many bytes to read from the file.
  1332. ; http://php.net/session.entropy-length
  1333. session.entropy_length = 0
  1334.  
  1335. ; Specified here to create the session id.
  1336. ; http://php.net/session.entropy-file
  1337. ;session.entropy_file = /dev/urandom
  1338. session.entropy_file =
  1339.  
  1340. ; http://php.net/session.entropy-length
  1341. ;session.entropy_length = 16
  1342.  
  1343. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  1344. ; or leave this empty to avoid sending anti-caching headers.
  1345. ; http://php.net/session.cache-limiter
  1346. session.cache_limiter = nocache
  1347.  
  1348. ; Document expires after n minutes.
  1349. ; http://php.net/session.cache-expire
  1350. session.cache_expire = 180
  1351.  
  1352. ; trans sid support is disabled by default.
  1353. ; Use of trans sid may risk your users security.
  1354. ; Use this option with caution.
  1355. ; - User may send URL contains active session ID
  1356. ;   to other person via. email/irc/etc.
  1357. ; - URL that contains active session ID may be stored
  1358. ;   in publically accessible computer.
  1359. ; - User may access your site with the same session ID
  1360. ;   always using URL stored in browser's history or bookmarks.
  1361. ; http://php.net/session.use-trans-sid
  1362. session.use_trans_sid = 0
  1363.  
  1364. ; Select a hash function for use in generating session ids.
  1365. ; Possible Values
  1366. ;   0  (MD5 128 bits)
  1367. ;   1  (SHA-1 160 bits)
  1368. ; http://php.net/session.hash-function
  1369. session.hash_function = 0
  1370.  
  1371. ; Define how many bits are stored in each character when converting
  1372. ; the binary hash data to something readable.
  1373. ; Possible values:
  1374. ;   4  (4 bits: 0-9, a-f)
  1375. ;   5  (5 bits: 0-9, a-v)
  1376. ;   6  (6 bits: 0-9, a-z, A-Z, "-", ",")
  1377. ; Default Value: 4
  1378. ; Development Value: 5
  1379. ; Production Value: 5
  1380. ; http://php.net/session.hash-bits-per-character
  1381. session.hash_bits_per_character = 5
  1382.  
  1383. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  1384. ; form/fieldset are special; if you include them here, the rewriter will
  1385. ; add a hidden <input> field with the info which is otherwise appended
  1386. ; to URLs.  If you want XHTML conformity, remove the form entry.
  1387. ; Note that all valid entries require a "=", even if no value follows.
  1388. ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
  1389. ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1390. ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
  1391. ; http://php.net/url-rewriter.tags
  1392. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
  1393.  
  1394. [MSSQL]
  1395. ; Allow or prevent persistent links.
  1396. mssql.allow_persistent = On
  1397.  
  1398. ; Maximum number of persistent links.  -1 means no limit.
  1399. mssql.max_persistent = -1
  1400.  
  1401. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  1402. mssql.max_links = -1
  1403.  
  1404. ; Minimum error severity to display.
  1405. mssql.min_error_severity = 10
  1406.  
  1407. ; Minimum message severity to display.
  1408. mssql.min_message_severity = 10
  1409.  
  1410. ; Compatibility mode with old versions of PHP 3.0.
  1411. mssql.compatability_mode = Off
  1412.  
  1413. ; Connect timeout
  1414. ;mssql.connect_timeout = 5
  1415.  
  1416. ; Query timeout
  1417. ;mssql.timeout = 60
  1418.  
  1419. ; Valid range 0 - 2147483647.  Default = 4096.
  1420. ;mssql.textlimit = 4096
  1421.  
  1422. ; Valid range 0 - 2147483647.  Default = 4096.
  1423. ;mssql.textsize = 4096
  1424.  
  1425. ; Limits the number of records in each batch.  0 = all records in one batch.
  1426. ;mssql.batchsize = 0
  1427.  
  1428. ; Specify how datetime and datetim4 columns are returned
  1429. ; On => Returns data converted to SQL server settings
  1430. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1431. ;mssql.datetimeconvert = On
  1432.  
  1433. ; Use NT authentication when connecting to the server
  1434. mssql.secure_connection = Off
  1435.  
  1436. ; Specify max number of processes. -1 = library default
  1437. ; msdlib defaults to 25
  1438. ; FreeTDS defaults to 4096
  1439. ;mssql.max_procs = -1
  1440.  
  1441. ; Specify client character set.
  1442. ; If empty or not set the client charset from freetds.comf is used
  1443. ; This is only used when compiled with FreeTDS
  1444. ;mssql.charset = "ISO-8859-1"
  1445.  
  1446. [Assertion]
  1447. ; Assert(expr); active by default.
  1448. ; http://php.net/assert.active
  1449. ;assert.active = On
  1450.  
  1451. ; Issue a PHP warning for each failed assertion.
  1452. ; http://php.net/assert.warning
  1453. ;assert.warning = On
  1454.  
  1455. ; Don't bail out by default.
  1456. ; http://php.net/assert.bail
  1457. ;assert.bail = Off
  1458.  
  1459. ; User-function to be called if an assertion fails.
  1460. ; http://php.net/assert.callback
  1461. ;assert.callback = 0
  1462.  
  1463. ; Eval the expression with current error_reporting().  Set to true if you want
  1464. ; error_reporting(0) around the eval().
  1465. ; http://php.net/assert.quiet-eval
  1466. ;assert.quiet_eval = 0
  1467.  
  1468. [COM]
  1469. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1470. ; http://php.net/com.typelib-file
  1471. ;com.typelib_file =
  1472.  
  1473. ; allow Distributed-COM calls
  1474. ; http://php.net/com.allow-dcom
  1475. ;com.allow_dcom = true
  1476.  
  1477. ; autoregister constants of a components typlib on com_load()
  1478. ; http://php.net/com.autoregister-typelib
  1479. ;com.autoregister_typelib = true
  1480.  
  1481. ; register constants casesensitive
  1482. ; http://php.net/com.autoregister-casesensitive
  1483. ;com.autoregister_casesensitive = false
  1484.  
  1485. ; show warnings on duplicate constant registrations
  1486. ; http://php.net/com.autoregister-verbose
  1487. ;com.autoregister_verbose = true
  1488.  
  1489. ; The default character set code-page to use when passing strings to and from COM objects.
  1490. ; Default: system ANSI code page
  1491. ;com.code_page=
  1492.  
  1493. [mbstring]
  1494. ; language for internal character representation.
  1495. ; http://php.net/mbstring.language
  1496. ;mbstring.language = Japanese
  1497.  
  1498. ; internal/script encoding.
  1499. ; Some encoding cannot work as internal encoding.
  1500. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1501. ; http://php.net/mbstring.internal-encoding
  1502. ;mbstring.internal_encoding = EUC-JP
  1503.  
  1504. ; http input encoding.
  1505. ; http://php.net/mbstring.http-input
  1506. ;mbstring.http_input = auto
  1507.  
  1508. ; http output encoding. mb_output_handler must be
  1509. ; registered as output buffer to function
  1510. ; http://php.net/mbstring.http-output
  1511. ;mbstring.http_output = SJIS
  1512.  
  1513. ; enable automatic encoding translation according to
  1514. ; mbstring.internal_encoding setting. Input chars are
  1515. ; converted to internal encoding by setting this to On.
  1516. ; Note: Do _not_ use automatic encoding translation for
  1517. ;       portable libs/applications.
  1518. ; http://php.net/mbstring.encoding-translation
  1519. ;mbstring.encoding_translation = Off
  1520.  
  1521. ; automatic encoding detection order.
  1522. ; auto means
  1523. ; http://php.net/mbstring.detect-order
  1524. ;mbstring.detect_order = auto
  1525.  
  1526. ; substitute_character used when character cannot be converted
  1527. ; one from another
  1528. ; http://php.net/mbstring.substitute-character
  1529. ;mbstring.substitute_character = none;
  1530.  
  1531. ; overload(replace) single byte functions by mbstring functions.
  1532. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1533. ; etc. Possible values are 0,1,2,4 or combination of them.
  1534. ; For example, 7 for overload everything.
  1535. ; 0: No overload
  1536. ; 1: Overload mail() function
  1537. ; 2: Overload str*() functions
  1538. ; 4: Overload ereg*() functions
  1539. ; http://php.net/mbstring.func-overload
  1540. ;mbstring.func_overload = 0
  1541.  
  1542. ; enable strict encoding detection.
  1543. ;mbstring.strict_detection = Off
  1544.  
  1545. ; This directive specifies the regex pattern of content types for which mb_output_handler()
  1546. ; is activated.
  1547. ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
  1548. ;mbstring.http_output_conv_mimetype=
  1549.  
  1550. ; Allows to set script encoding. Only affects if PHP is compiled with --enable-zend-multibyte
  1551. ; Default: ""
  1552. ;mbstring.script_encoding=
  1553.  
  1554. [gd]
  1555. ; Tell the jpeg decode to ignore warnings and try to create
  1556. ; a gd image. The warning will then be displayed as notices
  1557. ; disabled by default
  1558. ; http://php.net/gd.jpeg-ignore-warning
  1559. ;gd.jpeg_ignore_warning = 0
  1560.  
  1561. [exif]
  1562. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1563. ; With mbstring support this will automatically be converted into the encoding
  1564. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1565. ; is used. For the decode settings you can distinguish between motorola and
  1566. ; intel byte order. A decode setting cannot be empty.
  1567. ; http://php.net/exif.encode-unicode
  1568. ;exif.encode_unicode = ISO-8859-15
  1569.  
  1570. ; http://php.net/exif.decode-unicode-motorola
  1571. ;exif.decode_unicode_motorola = UCS-2BE
  1572.  
  1573. ; http://php.net/exif.decode-unicode-intel
  1574. ;exif.decode_unicode_intel    = UCS-2LE
  1575.  
  1576. ; http://php.net/exif.encode-jis
  1577. ;exif.encode_jis =
  1578.  
  1579. ; http://php.net/exif.decode-jis-motorola
  1580. ;exif.decode_jis_motorola = JIS
  1581.  
  1582. ; http://php.net/exif.decode-jis-intel
  1583. ;exif.decode_jis_intel    = JIS
  1584.  
  1585. [Tidy]
  1586. ; The path to a default tidy configuration file to use when using tidy
  1587. ; http://php.net/tidy.default-config
  1588. ;tidy.default_config = "C:\xampp\php\extras\default.tcfg"
  1589.  
  1590. ; Should tidy clean and repair output automatically?
  1591. ; WARNING: Do not use this option if you are generating non-html content
  1592. ; such as dynamic images
  1593. ; http://php.net/tidy.clean-output
  1594. tidy.clean_output = Off
  1595.  
  1596. [soap]
  1597. ; Enables or disables WSDL caching feature.
  1598. ; http://php.net/soap.wsdl-cache-enabled
  1599. soap.wsdl_cache_enabled=1
  1600.  
  1601. ; Sets the directory name where SOAP extension will put cache files.
  1602. ; http://php.net/soap.wsdl-cache-dir
  1603. soap.wsdl_cache_dir="/tmp"
  1604.  
  1605. ; (time to live) Sets the number of second while cached file will be used
  1606. ; instead of original one.
  1607. ; http://php.net/soap.wsdl-cache-ttl
  1608. soap.wsdl_cache_ttl=86400
  1609.  
  1610. ; Sets the size of the cache limit. (Max. number of WSDL files to cache)
  1611. soap.wsdl_cache_limit = 5
  1612.  
  1613. [sysvshm]
  1614. ; A default size of the shared memory segment
  1615. ;sysvshm.init_mem = 10000
  1616.  
  1617. [ldap]
  1618. ; Sets the maximum number of open links or -1 for unlimited.
  1619. ldap.max_links = -1
  1620.  
  1621. [mcrypt]
  1622. ; For more information about mcrypt settings see http://php.net/mcrypt-module-open
  1623.  
  1624. ; Directory where to load mcrypt algorithms
  1625. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  1626. ;mcrypt.algorithms_dir=
  1627.  
  1628. ; Directory where to load mcrypt modes
  1629. ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
  1630. ;mcrypt.modes_dir=
  1631.  
  1632. [dba]
  1633. ;dba.default_handler=
  1634.  
  1635. [FrontBase]
  1636. ;fbsql.allow_persistent = On
  1637. ;fbsql.autocommit = On
  1638. ;fbsql.show_timestamp_decimals = Off
  1639. ;fbsql.default_database =
  1640. ;fbsql.default_database_password =
  1641. ;fbsql.default_host =
  1642. ;fbsql.default_password =
  1643. ;fbsql.default_user = "_SYSTEM"
  1644. ;fbsql.generate_warnings = Off
  1645. ;fbsql.max_connections = 128
  1646. ;fbsql.max_links = 128
  1647. ;fbsql.max_persistent = -1
  1648. ;fbsql.max_results = 128
  1649.  
  1650. [mime_magic]
  1651. mime_magic.magicfile = "C:\xampp\php\extras\magic.mime"
  1652. ;mime_magic.debug = On
  1653.  
  1654. [eAccelerator]
  1655. ;zend_extension = "C:\xampp\php\ext\php_eaccelerator.dll"
  1656.  
  1657. ; The amount of shared memory (in megabytes) that eAccelerator will use.
  1658. ; "0" means OS default. Default value is "0".
  1659. eaccelerator.shm_size = "0"
  1660.  
  1661. ; The directory that is used for disk cache. eAccelerator stores precompiled
  1662. ; code, session data, content and user entries  here. The same data can be
  1663. ; stored in shared memory also (for more quick access). Default value is
  1664. ; "/tmp/eaccelerator".
  1665. eaccelerator.cache_dir = "C:\xampp\tmp"
  1666.  
  1667. ; Enables or disables eAccelerator. Should be "1" for enabling or
  1668. ; "0" for disabling. Default value is "1".
  1669. eaccelerator.enable = "1"
  1670.  
  1671. ; Enables or disables debug logging. Setting this to 1 will print information
  1672. ; to the log file about the cach hits of a file.
  1673. eaccelerator.debug = 0
  1674.  
  1675. ; Set the log file for eaccelerator. When this option isn't set then the data
  1676. ; will be logged to stderr
  1677. ;eaccelerator.log_file = "C:\xampp\apache\logs\eaccelerator.log"
  1678.  
  1679. ; Enables or disables PHP file modification checking. Should be "1"
  1680. ; for enabling or "0" for disabling. You should set it to "1" if you want
  1681. ; to recompile PHP files after modification. Default value is "1".
  1682. eaccelerator.check_mtime = "1"
  1683.  
  1684. ; Determine which PHP files must be cached. You may specify the number of
  1685. ; patterns (for example "*.php *.phtml") which specifies to cache or
  1686. ; not to cache. If pattern starts with the character "!", it means to ignore
  1687. ; files which are matched by the following pattern. Default value is "" that
  1688. ; means - all PHP scripts will be cached.
  1689. eaccelerator.filter = ""
  1690.  
  1691. ; Disables putting large values into shared memory by "eaccelerator_put()"
  1692. ; function.
  1693. ; It indicates the largest allowed size in bytes (10240, 10K, 1M). The "0"
  1694. ; disables the limit. Default value is "0".
  1695. eaccelerator.shm_max = "0"
  1696.  
  1697. ; When eAccelerator fails to get shared memory for new script it removes
  1698. ; all scripts which were not accessed at last "shm_ttl" seconds from shared
  1699. ; memory. Default value is "0" that means - don't remove any files from
  1700. ; shared memory.
  1701. eaccelerator.shm_ttl = "0"
  1702.  
  1703. ; When eAccelerator fails to get shared memory for new script it tryes to
  1704. ; remove old script if the previous try was made more then "shm_prune_period"
  1705. ; seconds ago. Default value is "0" that means - don't try to remove any
  1706. ; files from shared memory.
  1707. eaccelerator.shm_prune_period = "0"
  1708.  
  1709. ; Enables or disables caching of compiled scripts on disk. It has no effect
  1710. ; on session data and content caching.
  1711. ; Default value is "0" that means - use disk and shared memory for caching.
  1712. eaccelerator.shm_only = "0"
  1713.  
  1714. [XDebug]
  1715. ;zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
  1716.  
  1717. ; xdebug.auto_trace
  1718. ; Type: boolean, Default value: 0
  1719. ; When this setting is set to on, the tracing of function calls will be enabled just before the
  1720. ; script is run. This makes it possible to trace code in the auto_prepend_file.
  1721. ;xdebug.auto_trace = 0
  1722.  
  1723. ; xdebug.collect_includes
  1724. ; Type: boolean, Default value: 1
  1725. ; This setting, defaulting to On, controls whether Xdebug should write the filename used in include
  1726. ; (), include_once(), require() or require_once() to the trace files.
  1727. ;xdebug.collect_includes = 1
  1728.  
  1729. ; xdebug.collect_params
  1730. ; Type: integer, Default value: 0
  1731. ;
  1732. ; This setting, defaulting to 0, controls whether Xdebug should collect the parameters passed to
  1733. ; functions when a function call is recorded in either the function trace or the stack trace.
  1734. ;xdebug.collect_params = 0
  1735.  
  1736. ; xdebug.collect_return
  1737. ; Type: boolean, Default value: 0
  1738. ; This setting, defaulting to Off, controls whether Xdebug should write the return value of function
  1739. ; calls to the trace files.
  1740. ;xdebug.collect_return = 0
  1741.  
  1742. ; xdebug.collect_vars
  1743. ; Type: boolean, Default value: Off
  1744. ; This setting tells Xdebug to gather information about which variables are used in a certain scope.
  1745. ; This analysis can be quite slow as Xdebug has to reverse engineer PHP's opcode arrays. This setting
  1746. ; will not record which values the different variables have, for that use xdebug.collect_params. This
  1747. ; setting needs to be enabled only if you wish to use xdebug_get_declared_vars().
  1748. ;xdebug.collect_vars = "Off"
  1749.  
  1750. ; xdebug.default_enable
  1751. ; Type: boolean, Default value: On
  1752. ; If this setting is On then stacktraces will be shown by default on an error event. You can disable
  1753. ; showing stacktraces from your code with xdebug_disable(). As this is one of the basic functions of
  1754. ; Xdebug, it is advisable to leave this setting set to 'On'.
  1755. ;xdebug.default_enable = "On"
  1756.  
  1757. ; xdebug.dump.*
  1758. ; Type: string, Default value: Empty
  1759. ; * = COOKIE, FILES, GET, POST, REQUEST, SERVER, SESSION. These seven settings control which data
  1760. ; from the superglobals is shown when an error situation occurs. Each php.ini setting can consist of
  1761. ; a comma seperated list of variables from this superglobal to dump, but make sure you do not add
  1762. ; spaces in this setting. In order to dump the REMOTE_ADDR and the REQUEST_METHOD when an error
  1763. ; occurs, add this setting:
  1764. ;
  1765. ; xdebug.dump.SERVER = REMOTE_ADDR,REQUEST_METHOD
  1766. ; xdebug.dump.SERVER = REMOTE_ADDR,REQUEST_METHOD
  1767. ;xdebug.dump.COOKIE = ""
  1768. ;xdebug.dump.FILES = ""
  1769. ;xdebug.dump.GET = ""
  1770. ;xdebug.dump.POST = ""
  1771. ;xdebug.dump.REQUEST = ""
  1772. ;xdebug.dump.SERVER = ""
  1773. ;xdebug.dump.SESSION = ""
  1774.  
  1775. ; xdebug.dump_globals
  1776. ; Type: boolean, Default value: 1
  1777. ; Controls whether the values of the superglobals as defined by the xdebug.dump.* settings whould be
  1778. ; shown or not.
  1779. ;xdebug.dump_globals = 1
  1780.  
  1781. ; xdebug.dump_once
  1782. ; Type: boolean, Default value: 1
  1783. ; Controls whether the values of the superglobals should be dumped on all error situations (set to
  1784. ; Off) or only on the first (set to On).
  1785. ;xdebug.dump_once = 1
  1786.  
  1787. ; xdebug.dump_undefined
  1788. ; Type: boolean, Default value: 0
  1789. ; If you want to dump undefined values from the superglobals you should set this setting to On,
  1790. ; otherwise leave it set to Off.
  1791. ;xdebug.dump_undefined = 0
  1792.  
  1793. ; xdebug.extended_info
  1794. ; Type: integer, Default value: 1
  1795. ; Controls whether Xdebug should enforce 'extended_info' mode for the PHP parser; this allows Xdebug
  1796. ; to do file/line breakpoints with the remote debugger. When tracing or profiling scripts you
  1797. ; generally want to turn off this option as PHP's generated oparrays will increase with about a third
  1798. ; of the size slowing down your scripts. This setting can not be set in your scripts with ini_set(),
  1799. ; but only in php.ini.
  1800. ;xdebug.extended_info = 1
  1801.  
  1802. ; xdebug.file_link_format
  1803. ; Type: string, Default value: *empty string* , Introduced in Xdebug 2.1
  1804. ;
  1805. ; This setting determines the format of the links that are made in the display of stack traces where
  1806. ; file names are used. This allows IDEs to set up a link-protocol that makes it possible to go
  1807. ; directly to a line and file by clicking on the filenames that Xdebug shows in stack traces.
  1808. ;xdebug.file_link_format = ""
  1809.  
  1810. ; xdebug.idekey
  1811. ; Type: string, Default value: *complex*
  1812. ; Controls which IDE Key Xdebug should pass on to the DBGp debugger handler. The default is based on
  1813. ; environment settings. First the environment setting DBGP_IDEKEY is consulted, then USER and as last
  1814. ; USERNAME. The default is set to the first environment variable that is found. If none could be
  1815. ; found the setting has as default ''.
  1816. ;xdebug.idekey = ""
  1817.  
  1818. ; xdebug.manual_url
  1819. ; Type: string, Default value: http://www.php.net
  1820. ; This is the base url for the links from the function traces and error message to the manual pages
  1821. ; of the function from the message. It is advisable to set this setting to use the closest mirror.
  1822. ;xdebug.manual_url = "http://www.php.net"
  1823.  
  1824. ; xdebug.max_nesting_level
  1825. ; Type: integer, Default value: 100
  1826. ; Controls the protection mechanism for infinite recursion protection. The value of this setting is
  1827. ; the maximum level of nested functions that are allowed before the script will be aborted.
  1828. ;xdebug.max_nesting_level = 100
  1829.  
  1830. ; xdebug.overload_var_dump
  1831. ; Type: boolean, Default value: 1 , Introduced in Xdebug 2.1
  1832. ; By default Xdebug overloads var_dump() with its own improved version for displaying variables when
  1833. ; the html_errors php.ini setting is set to 1. In case you do not want that, you can set this setting
  1834. ; to 0, but check first if it's not smarter to turn off html_errors.
  1835. ;xdebug.overload_var_dump = 1
  1836.  
  1837. ; xdebug.profiler_append
  1838. ; Type: integer, Default value: 0
  1839. ; When this setting is set to 1, profiler files will not be overwritten when a new request would map
  1840. ; to the same file (depnding on the xdebug.profiler_output_name setting. Instead the file will be
  1841. ; appended to with the new profile.
  1842. xdebug.profiler_append = 0
  1843.  
  1844. ; xdebug.profiler_enable
  1845. ; Type: integer, Default value: 0
  1846. ; Enables Xdebug's profiler which creates files in the profile output directory. Those files can be
  1847. ; read by KCacheGrind to visualize your data. This setting can not be set in your script with ini_set
  1848. ; ().
  1849. xdebug.profiler_enable = 0
  1850.  
  1851. ; xdebug.profiler_enable_trigger
  1852. ; Type: integer, Default value: 0
  1853. ; When this setting is set to 1, you can trigger the generation of profiler files by using the
  1854. ; XDEBUG_PROFILE GET/POST parameter. This will then write the profiler data to defined directory.
  1855. xdebug.profiler_enable_trigger = 0
  1856.  
  1857. ; xdebug.profiler_output_dir
  1858. ; Type: string, Default value: /tmp
  1859. ; The directory where the profiler output will be written to, make sure that the user who the PHP
  1860. ; will be running as has write permissions to that directory. This setting can not be set in your
  1861. ; script with ini_set().
  1862. xdebug.profiler_output_dir = "C:\xampp\tmp"
  1863.  
  1864. ; xdebug.profiler_output_name
  1865. ; Type: string, Default value: cachegrind.out.%p
  1866. ;
  1867. ; This setting determines the name of the file that is used to dump traces into. The setting
  1868. ; specifies the format with format specifiers, very similar to sprintf() and strftime(). There are
  1869. ; several format specifiers that can be used to format the file name.
  1870. ;
  1871. ; See the xdebug.trace_output_name documentation for the supported specifiers.
  1872. xdebug.profiler_output_name = "xdebug_profile.%R::%u"
  1873.  
  1874. ; xdebug.remote_autostart
  1875. ; Type: boolean, Default value: 0
  1876. ; Normally you need to use a specific HTTP GET/POST variable to start remote debugging (see Remote
  1877. ; Debugging). When this setting is set to 'On' Xdebug will always attempt to start a remote debugging
  1878. ; session and try to connect to a client, even if the GET/POST/COOKIE variable was not present.
  1879. ;xdebug.remote_autostart = 0
  1880.  
  1881. ; xdebug.remote_enable
  1882. ; Type: boolean, Default value: 0
  1883. ; This switch controls whether Xdebug should try to contact a debug client which is listening on the
  1884. ; host and port as set with the settings xdebug.remote_host and xdebug.remote_port. If a connection
  1885. ; can not be established the script will just continue as if this setting was Off.
  1886. ;xdebug.remote_enable = 0
  1887.  
  1888. ; xdebug.remote_handler
  1889. ; Type: string, Default value: dbgp
  1890. ; Can be either 'php3' which selects the old PHP 3 style debugger output, 'gdb' which enables the GDB
  1891. ; like debugger interface or 'dbgp' - the brand new debugger protocol. The DBGp protocol is more
  1892. ; widely supported by clients. See more information in the introduction for Remote Debugging.
  1893. ;xdebug.remote_handler = "dbgp"
  1894.  
  1895. ; xdebug.remote_host
  1896. ; Type: string, Default value: localhost
  1897. ; Selects the host where the debug client is running, you can either use a host name or an IP
  1898. ; address.
  1899. ;xdebug.remote_host = "localhost"
  1900.  
  1901. ; xdebug.remote_log
  1902. ; Type: string, Default value: none
  1903. ; If set to a value, it is used as filename to a file to which all remote debugger communications are
  1904. ; logged. The file is always opened in append-mode, and will therefore not be overwritten by default.
  1905. ; There is no concurrency protection available.
  1906. ;xdebug.remote_log = "none"
  1907.  
  1908. ; xdebug.remote_mode
  1909. ; Type: string, Default value: req
  1910. ;
  1911. ; Selects when a debug connection is initiated. This setting can have two different values:
  1912. ;
  1913. ; req
  1914. ;     Xdebug will try to connect to the debug client as soon as the script starts.
  1915. ; jit
  1916. ;     Xdebug will only try to connect to the debug client as soon as an error condition occurs.
  1917. ;xdebug.remote_mode = "req"
  1918.  
  1919. ; xdebug.remote_port
  1920. ; Type: integer, Default value: 9000
  1921. ; The port to which Xdebug tries to connect on the remote host. Port 9000 is the default for both the
  1922. ; client and the bundled debugclient. As many clients use this port number, it is best to leave this
  1923. ; setting unchanged.
  1924. ;xdebug.remote_port = 9000
  1925.  
  1926. ; xdebug.show_exception_trace
  1927. ; Type: integer, Default value: 0
  1928. ; When this setting is set to 1, Xdebug will show a stack trace whenever an exception is raised -
  1929. ; even if this exception is actually caught.
  1930. ;xdebug.show_exception_trace = 0
  1931.  
  1932. ; xdebug.show_local_vars
  1933. ; Type: integer, Default value: 0
  1934. ; When this setting is set to something != 0 Xdebug's generated stack dumps in error situations will
  1935. ; also show all variables in the top-most scope. Beware that this might generate a lot of
  1936. ; information, and is therefore turned off by default.
  1937. ;xdebug.show_local_vars = 0
  1938.  
  1939. ; xdebug.show_mem_delta
  1940. ; Type: integer, Default value: 0
  1941. ; When this setting is set to something != 0 Xdebug's human-readable generated trace files will show
  1942. ; the difference in memory usage between function calls. If Xdebug is configured to generate
  1943. ; computer-readable trace files then they will always show this information.
  1944. ;xdebug.show_mem_delta = 0
  1945.  
  1946. ; xdebug.trace_format
  1947. ; Type: integer, Default value: 0
  1948. ; The format of the trace file.
  1949. ;
  1950. ; See the introduction of Function Traces for a few examples.
  1951. ;xdebug.trace_format = 0
  1952.  
  1953. ; xdebug.trace_options
  1954. ; Type: integer, Default value: 0
  1955. ; When set to '1' the trace files will be appended to, instead of being overwritten in subsequent
  1956. ; requests.
  1957. ;xdebug.trace_options = 0
  1958.  
  1959. ; xdebug.trace_output_dir
  1960. ; Type: string, Default value: /tmp
  1961. ; The directory where the tracing files will be written to, make sure that the user who the PHP will
  1962. ; be running as has write permissions to that directory.
  1963. ; xdebug.trace_output_name
  1964. xdebug.trace_output_dir = "C:\xampp\tmp"
  1965.  
  1966. ; Type: string, Default value: trace.%c
  1967. ;
  1968. ; This setting determines the name of the file that is used to dump traces into. The setting
  1969. ; specifies the format with format specifiers, very similar to sprintf() and strftime(). There are
  1970. ; several format specifiers that can be used to format the file name. The '.xt' extension is always
  1971. ; added automatically.
  1972. ;xdebug.trace_output_name = "trace.%c"
  1973.  
  1974. ; xdebug.var_display_max_children
  1975. ; Type: integer, Default value: 128
  1976. ; Controls the amount of array children and object's properties are shown when variables are
  1977. ; displayed with either xdebug_var_dump(), xdebug.show_local_vars or through Function Traces. This
  1978. ; setting does not have any influence on the number of children that is send to the client through
  1979. ; the Remote Debugging feature.
  1980. ;xdebug.var_display_max_children = 128
  1981.  
  1982. ; xdebug.var_display_max_data
  1983. ; Type: integer, Default value: 512
  1984. ; Controls the maximum string length that is shown when variables are displayed with either
  1985. ; xdebug_var_dump(), xdebug.show_local_vars or through Function Traces. This setting does not have
  1986. ; any influence on the amount of data that is send to the client through the Remote Debugging
  1987. ; feature.
  1988. ;xdebug.var_display_max_data = 512
  1989.  
  1990. ; xdebug.var_display_max_depth
  1991. ; Type: integer, Default value: 3
  1992. ; Controls how many nested levels of array elements and object properties are when variables are
  1993. ; displayed with either xdebug_var_dump(), xdebug.show_local_vars or through Function Traces. This
  1994. ; setting does not have any influence on the depth of children that is send to the client through the
  1995. ; Remote Debugging feature.
  1996. ;xdebug.var_display_max_depth = 3
  1997.  
  1998. ; Local Variables:
  1999. ; tab-width: 4
  2000. ; End:
Add Comment
Please, Sign In to add comment