1 [PHP]
2
3 ;;;;;;;;;;;;;;;;;;;;
4 ; php.ini Options ;
5 ;;;;;;;;;;;;;;;;;;;;
6 ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
7 ;user_ini.filename = ".user.ini"
8
9 ; To disable this feature set this option to empty value
10 ;user_ini.filename =
11
12 ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
13 ;user_ini.cache_ttl = 300
14
15 ;;;;;;;;;;;;;;;;;;;;
16 ; Language Options ;
17 ;;;;;;;;;;;;;;;;;;;;
18
19 ; Enable the PHP scripting language engine under Apache.
20 ; http://php.net/engine
21 engine = On
22
23 ; This directive determines whether or not PHP will recognize code between
24 ; <? ?> tags as PHP source which should be processed as such. It's been
25 ; recommended for several years that you not use the short tag "short cut" and
26 ; instead to use the full <?php ?> tag combination. With the wide spread use
27 ; of XML and use of these tags by other languages, the server can become easily
28 ; confused and end up parsing the wrong code in the wrong context. But because
29 ; this short cut has been a feature for such a long time, it's currently still
30 ; supported for backwards compatibility, but we recommend you don't use them.
31 ; Default Value: On
32 ; Development Value: Off
33 ; Production Value: Off
34 ; http://php.net/short-open-tag
35 short_open_tag =Off
36
37 ; Allow ASP-style <% %> tags.
38 ; http://php.net/asp-tags
39 asp_tags = Off
40
41 ; The number of significant digits displayed in floating point numbers.
42 ; http://php.net/precision
43 precision = 14
44
45 ; Output buffering is a mechanism for controlling how much output data
46 ; (excluding headers and cookies) PHP should keep internally before pushing that
47 ; data to the client. If your application's output exceeds this setting, PHP
48 ; will send that data in chunks of roughly the size you specify.
49 ; Turning on this setting and managing its maximum buffer size can yield some
50 ; interesting side-effects depending on your application and web server.
51 ; You may be able to send headers and cookies after you've already sent output
52 ; through print or echo. You also may see performance benefits if your server is
53 ; emitting less packets due to buffered output versus PHP streaming the output
54 ; as it gets it. On production servers, 4096 bytes is a good setting for performance
55 ; reasons.
56 ; Note: Output buffering can also be controlled via Output Buffering Control
57 ; functions.
58 ; Possible Values:
59 ; On = Enabled and buffer is unlimited. (Use with caution)
60 ; Off = Disabled
61 ; Integer = Enables the buffer and sets its maximum size in bytes.
62 ; Note: This directive is hardcoded to Off for the CLI SAPI
63 ; Default Value: Off
64 ; Development Value: 4096
65 ; Production Value: 4096
66 ; http://php.net/output-buffering
67 output_buffering = 4096
68
69 ; You can redirect all of the output of your scripts to a function. For
70 ; example, if you set output_handler to "mb_output_handler", character
71 ; encoding will be transparently converted to the specified encoding.
72 ; Setting any output handler automatically turns on output buffering.
73 ; Note: People who wrote portable scripts should not depend on this ini
74 ; directive. Instead, explicitly set the output handler using ob_start().
75 ; Using this ini directive may cause problems unless you know what script
76 ; is doing.
77 ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
78 ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
79 ; Note: output_handler must be empty if this is set 'On' !!!!
80 ; Instead you must use zlib.output_handler.
81 ; http://php.net/output-handler
82 ;output_handler =
83
84 ; Transparent output compression using the zlib library
85 ; Valid values for this option are 'off', 'on', or a specific buffer size
86 ; to be used for compression (default is 4KB)
87 ; Note: Resulting chunk size may vary due to nature of compression. PHP
88 ; outputs chunks that are few hundreds bytes each as a result of
89 ; compression. If you prefer a larger chunk size for better
90 ; performance, enable output_buffering in addition.
91 ; Note: You need to use zlib.output_handler instead of the standard
92 ; output_handler, or otherwise the output will be corrupted.
93 ; http://php.net/zlib.output-compression
94 zlib.output_compression = Off
95
96 ; http://php.net/zlib.output-compression-level
97 zlib.output_compression_level = 6
98
99 ; You cannot specify additional output handlers if zlib.output_compression
100 ; is activated here. This setting does the same as output_handler but in
101 ; a different order.
102 ; http://php.net/zlib.output-handler
103 ;zlib.output_handler =
104
105 ; Implicit flush tells PHP to tell the output layer to flush itself
106 ; automatically after every output block. This is equivalent to calling the
107 ; PHP function flush() after each and every call to print() or echo() and each
108 ; and every HTML block. Turning this option on has serious performance
109 ; implications and is generally recommended for debugging purposes only.
110 ; http://php.net/implicit-flush
111 ; Note: This directive is hardcoded to On for the CLI SAPI
112 implicit_flush = Off
113
114 ; The unserialize callback function will be called (with the undefined class'
115 ; name as parameter), if the unserializer finds an undefined class
116 ; which should be instantiated. A warning appears if the specified function is
117 ; not defined, or if the function doesn't include/implement the missing class.
118 ; So only set this entry, if you really want to implement such a
119 ; callback-function.
120 unserialize_callback_func =
121
122 ; When floats & doubles are serialized store serialize_precision significant
123 ; digits after the floating point. The default value ensures that when floats
124 ; are decoded with unserialize, the data will remain the same.
125 serialize_precision = 17
126
127 ; open_basedir, if set, limits all file operations to the defined directory
128 ; and below. This directive makes most sense if used in a per-directory
129 ; or per-virtualhost web server configuration file. This directive is
130 ; *NOT* affected by whether Safe Mode is turned On or Off.
131 ; http://php.net/open-basedir
132 ;open_basedir = "D:/xampps/";
133
134 ; This directive allows you to disable certain functions for security reasons.
135 ; It receives a comma-delimited list of function names. This directive is
136 ; *NOT* affected by whether Safe Mode is turned On or Off.
137 ; http://php.net/disable-functions
138 ;disable_functions =
139
140 ; This directive allows you to disable certain classes for security reasons.
141 ; It receives a comma-delimited list of class names. This directive is
142 ; *NOT* affected by whether Safe Mode is turned On or Off.
143 ; http://php.net/disable-classes
144 ;disable_classes =
145
146 ; Colors for Syntax Highlighting mode. Anything that's acceptable in
147 ; <span style="color: ???????"> would work.
148 ; http://php.net/syntax-highlighting
149 ;highlight.string = #DD0000
150 ;highlight.comment = #FF9900
151 ;highlight.keyword = #007700
152 ;highlight.default = #0000BB
153 ;highlight.html = #000000
154
155 ; If enabled, the request will be allowed to complete even if the user aborts
156 ; the request. Consider enabling it if executing long requests, which may end up
157 ; being interrupted by the user or a browser timing out. PHP's default behavior
158 ; is to disable this feature.
159 ; http://php.net/ignore-user-abort
160 ignore_user_abort = On
161
162 ; Determines the size of the realpath cache to be used by PHP. This value should
163 ; be increased on systems where PHP opens many files to reflect the quantity of
164 ; the file operations performed.
165 ; http://php.net/realpath-cache-size
166 ;realpath_cache_size = 16k
167
168 ; Duration of time, in seconds for which to cache realpath information for a given
169 ; file or directory. For systems with rarely changing files, consider increasing this
170 ; value.
171 ; http://php.net/realpath-cache-ttl
172 ;realpath_cache_ttl = 120
173
174 ; Enables or disables the circular reference collector.
175 ; http://php.net/zend.enable-gc
176 zend.enable_gc = On
177
178 ; If enabled, scripts may be written in encodings that are incompatible with
179 ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
180 ; encodings. To use this feature, mbstring extension must be enabled.
181 ; Default: Off
182 ;zend.multibyte = Off
183
184 ; Allows to set the default encoding for the scripts. This value will be used
185 ; unless "declare(encoding=...)" directive appears at the top of the script.
186 ; Only affects if zend.multibyte is set.
187 ; Default: ""
188 ;zend.script_encoding =
189
190 ;;;;;;;;;;;;;;;;;
191 ; Miscellaneous ;
192 ;;;;;;;;;;;;;;;;;
193
194 ; Decides whether PHP may expose the fact that it is installed on the server
195 ; (e.g. by adding its signature to the Web server header). It is no security
196 ; threat in any way, but it makes it possible to determine whether you use PHP
197 ; on your server or not.
198 ; http://php.net/expose-php
199 expose_php =On
200
201 ;;;;;;;;;;;;;;;;;;;
202 ; Resource Limits ;
203 ;;;;;;;;;;;;;;;;;;;
204
205 ; Maximum execution time of each script, in seconds
206 ; http://php.net/max-execution-time
207 ; Note: This directive is hardcoded to 0 for the CLI SAPI
208 max_execution_time =3000
209
210 ; Maximum amount of time each script may spend parsing request data. It's a good
211 ; idea to limit this time on productions servers in order to eliminate unexpectedly
212 ; long running scripts.
213 ; Note: This directive is hardcoded to -1 for the CLI SAPI
214 ; Default Value: -1 (Unlimited)
215 ; Development Value: 60 (60 seconds)
216 ; Production Value: 60 (60 seconds)
217 ; http://php.net/max-input-time
218 max_input_time = 60
219
220 ; Maximum input variable nesting level
221 ; http://php.net/max-input-nesting-level
222 ;max_input_nesting_level = 64
223
224 ; How many GET/POST/COOKIE input variables may be accepted
225 ; max_input_vars = 1000
226
227 ; Maximum amount of memory a script may consume (128MB)
228 ; http://php.net/memory-limit
229 memory_limit =256m
230
231 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
232 ; Error handling and logging ;
233 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
234
235 ; This directive informs PHP of which errors, warnings and notices you would like
236 ; it to take action for. The recommended way of setting values for this
237 ; directive is through the use of the error level constants and bitwise
238 ; operators. The error level constants are below here for convenience as well as
239 ; some common settings and their meanings.
240 ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
241 ; those related to E_NOTICE and E_STRICT, which together cover best practices and
242 ; recommended coding standards in PHP. For performance reasons, this is the
243 ; recommend error reporting setting. Your production server shouldn't be wasting
244 ; resources complaining about best practices and coding standards. That's what
245 ; development servers and development settings are for.
246 ; Note: The php.ini-development file has this setting as E_ALL. This
247 ; means it pretty much reports everything which is exactly what you want during
248 ; development and early testing.
249 ;
250 ; Error Level Constants:
251 ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
252 ; E_ERROR - fatal run-time errors
253 ; E_RECOVERABLE_ERROR - almost fatal run-time errors
254 ; E_WARNING - run-time warnings (non-fatal errors)
255 ; E_PARSE - compile-time parse errors
256 ; E_NOTICE - run-time notices (these are warnings which often result
257 ; from a bug in your code, but it's possible that it was
258 ; intentional (e.g., using an uninitialized variable and
259 ; relying on the fact it's automatically initialized to an
260 ; empty string)
261 ; E_STRICT - run-time notices, enable to have PHP suggest changes
262 ; to your code which will ensure the best interoperability
263 ; and forward compatibility of your code
264 ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
265 ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
266 ; initial startup
267 ; E_COMPILE_ERROR - fatal compile-time errors
268 ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
269 ; E_USER_ERROR - user-generated error message
270 ; E_USER_WARNING - user-generated warning message
271 ; E_USER_NOTICE - user-generated notice message
272 ; E_DEPRECATED - warn about code that will not work in future versions
273 ; of PHP
274 ; E_USER_DEPRECATED - user-generated deprecation warnings
275 ;
276 ; Common Values:
277 ; E_ALL (Show all errors, warnings and notices including coding standards.)
278 ; E_ALL & ~E_NOTICE (Show all errors, except for notices)
279 ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
280 ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
281 ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
282 ; Development Value: E_ALL
283 ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
284 ; http://php.net/error-reporting
285 error_reporting = E_ALL & ~E_NOTICE
286
287 ; This directive controls whether or not and where PHP will output errors,
288 ; notices and warnings too. Error output is very useful during development, but
289 ; it could be very dangerous in production environments. Depending on the code
290 ; which is triggering the error, sensitive information could potentially leak
291 ; out of your application such as database usernames and passwords or worse.
292 ; It's recommended that errors be logged on production servers rather than
293 ; having the errors sent to STDOUT.
294 ; Possible Values:
295 ; Off = Do not display any errors
296 ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
297 ; On or stdout = Display errors to STDOUT
298 ; Default Value: On
299 ; Development Value: On
300 ; Production Value: Off
301 ; http://php.net/display-errors
302 display_errors =On
303
304 ; The display of errors which occur during PHP's startup sequence are handled
305 ; separately from display_errors. PHP's default behavior is to suppress those
306 ; errors from clients. Turning the display of startup errors on can be useful in
307 ; debugging configuration problems. But, it's strongly recommended that you
308 ; leave this setting off on production servers.
309 ; Default Value: Off
310 ; Development Value: On
311 ; Production Value: Off
312 ; http://php.net/display-startup-errors
313 display_startup_errors = Off
314
315 ; Besides displaying errors, PHP can also log errors to locations such as a
316 ; server-specific log, STDERR, or a location specified by the error_log
317 ; directive found below. While errors should not be displayed on productions
318 ; servers they should still be monitored and logging is a great way to do that.
319 ; Default Value: Off
320 ; Development Value: On
321 ; Production Value: On
322 ; http://php.net/log-errors
323 log_errors =On
324
325 ; Set maximum length of log_errors. In error_log information about the source is
326 ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
327 ; http://php.net/log-errors-max-len
328 log_errors_max_len = 1024
329
330 ; Do not log repeated messages. Repeated errors must occur in same file on same
331 ; line unless ignore_repeated_source is set true.
332 ; http://php.net/ignore-repeated-errors
333 ignore_repeated_errors = Off
334
335 ; Ignore source of message when ignoring repeated messages. When this setting
336 ; is On you will not log errors with repeated messages from different files or
337 ; source lines.
338 ; http://php.net/ignore-repeated-source
339 ignore_repeated_source = Off
340
341 ; If this parameter is set to Off, then memory leaks will not be shown (on
342 ; stdout or in the log). This has only effect in a debug compile, and if
343 ; error reporting includes E_WARNING in the allowed list
344 ; http://php.net/report-memleaks
345 report_memleaks = On
346
347 ; This setting is on by default.
348 ;report_zend_debug = 0
349
350 ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
351 ; to On can assist in debugging and is appropriate for development servers. It should
352 ; however be disabled on production servers.
353 ; Default Value: Off
354 ; Development Value: On
355 ; Production Value: Off
356 ; http://php.net/track-errors
357 track_errors = Off
358
359 ; Turn off normal error reporting and emit XML-RPC error XML
360 ; http://php.net/xmlrpc-errors
361 ;xmlrpc_errors = 0
362
363 ; An XML-RPC faultCode
364 ;xmlrpc_error_number = 0
365
366 ; When PHP displays or logs an error, it has the capability of formatting the
367 ; error message as HTML for easier reading. This directive controls whether
368 ; the error message is formatted as HTML or not.
369 ; Note: This directive is hardcoded to Off for the CLI SAPI
370 ; Default Value: On
371 ; Development Value: On
372 ; Production value: On
373 ; http://php.net/html-errors
374 html_errors = On
375
376 ; If html_errors is set to On *and* docref_root is not empty, then PHP
377 ; produces clickable error messages that direct to a page describing the error
378 ; or function causing the error in detail.
379 ; You can download a copy of the PHP manual from http://php.net/docs
380 ; and change docref_root to the base URL of your local copy including the
381 ; leading '/'. You must also specify the file extension being used including
382 ; the dot. PHP's default behavior is to leave these settings empty, in which
383 ; case no links to documentation are generated.
384 ; Note: Never use this feature for production boxes.
385 ; http://php.net/docref-root
386 ; Examples
387 ;docref_root = "/phpmanual/"
388
389 ; http://php.net/docref-ext
390 ;docref_ext = .html
391
392 ; String to output before an error message. PHP's default behavior is to leave
393 ; this setting blank.
394 ; http://php.net/error-prepend-string
395 ; Example:
396 ;error_prepend_string = "<span style='color: #ff0000'>"
397
398 ; String to output after an error message. PHP's default behavior is to leave
399 ; this setting blank.
400 ; http://php.net/error-append-string
401 ; Example:
402 ;error_append_string = "</span>"
403
404 ; Log errors to specified file. PHP's default behavior is to leave this value
405 ; empty.
406 ; http://php.net/error-log
407 ; Example:
408 ;error_log = php_errors.log
409 ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
410 error_log ="D:/xampps/php/logs/php_error_log.txt"
411
412 ;windows.show_crt_warning
413 ; Default value: 0
414 ; Development value: 0
415 ; Production value: 0
416
417 ;;;;;;;;;;;;;;;;;
418 ; Data Handling ;
419 ;;;;;;;;;;;;;;;;;
420
421 ; The separator used in PHP generated URLs to separate arguments.
422 ; PHP's default setting is "&".
423 ; http://php.net/arg-separator.output
424 ; Example:
425 ;arg_separator.output = "&"
426
427 ; List of separator(s) used by PHP to parse input URLs into variables.
428 ; PHP's default setting is "&".
429 ; NOTE: Every character in this directive is considered as separator!
430 ; http://php.net/arg-separator.input
431 ; Example:
432 ;arg_separator.input = ";&"
433
434 ; This directive determines which super global arrays are registered when PHP
435 ; starts up. G,P,C,E & S are abbreviations for the following respective super
436 ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
437 ; paid for the registration of these arrays and because ENV is not as commonly
438 ; used as the others, ENV is not recommended on productions servers. You
439 ; can still get access to the environment variables through getenv() should you
440 ; need to.
441 ; Default Value: "EGPCS"
442 ; Development Value: "GPCS"
443 ; Production Value: "GPCS";
444 ; http://php.net/variables-order
445 variables_order = "GPCS"
446
447 ; This directive determines which super global data (G,P,C,E & S) should
448 ; be registered into the super global array REQUEST. If so, it also determines
449 ; the order in which that data is registered. The values for this directive are
450 ; specified in the same manner as the variables_order directive, EXCEPT one.
451 ; Leaving this value empty will cause PHP to use the value set in the
452 ; variables_order directive. It does not mean it will leave the super globals
453 ; array REQUEST empty.
454 ; Default Value: None
455 ; Development Value: "GP"
456 ; Production Value: "GP"
457 ; http://php.net/request-order
458 request_order = "GP"
459
460 ; This directive determines whether PHP registers $argv & $argc each time it
461 ; runs. $argv contains an array of all the arguments passed to PHP when a script
462 ; is invoked. $argc contains an integer representing the number of arguments
463 ; that were passed when the script was invoked. These arrays are extremely
464 ; useful when running scripts from the command line. When this directive is
465 ; enabled, registering these variables consumes CPU cycles and memory each time
466 ; a script is executed. For performance reasons, this feature should be disabled
467 ; on production servers.
468 ; Note: This directive is hardcoded to On for the CLI SAPI
469 ; Default Value: On
470 ; Development Value: Off
471 ; Production Value: Off
472 ; http://php.net/register-argc-argv
473 register_argc_argv = Off
474
475 ; When enabled, the ENV, REQUEST and SERVER variables are created when they're
476 ; first used (Just In Time) instead of when the script starts. If these
477 ; variables are not used within a script, having this directive on will result
478 ; in a performance gain. The PHP directive register_argc_argv must be disabled
479 ; for this directive to have any affect.
480 ; http://php.net/auto-globals-jit
481 auto_globals_jit = On
482
483 ; Whether PHP will read the POST data.
484 ; This option is enabled by default.
485 ; Most likely, you won't want to disable this option globally. It causes $_POST
486 ; and $_FILES to always be empty; the only way you will be able to read the
487 ; POST data will be through the php://input stream wrapper. This can be useful
488 ; to proxy requests or to process the POST data in a memory efficient fashion.
489 ; http://php.net/enable-post-data-reading
490 ;enable_post_data_reading = Off
491
492 ; Maximum size of POST data that PHP will accept.
493 ; Its value may be 0 to disable the limit. It is ignored if POST data reading
494 ; is disabled through enable_post_data_reading.
495 ; http://php.net/post-max-size
496 post_max_size =64m
497
498 ; Automatically add files before PHP document.
499 ; http://php.net/auto-prepend-file
500 auto_prepend_file =
501
502 ; Automatically add files after PHP document.
503 ; http://php.net/auto-append-file
504 auto_append_file =
505
506 ; By default, PHP will output a character encoding using
507 ; the Content-type: header. To disable sending of the charset, simply
508 ; set it to be empty.
509 ;
510 ; PHP's built-in default is text/html
511 ; http://php.net/default-mimetype
512 default_mimetype = "text/html"
513
514 ; PHP's default character set is set to empty.
515 ; http://php.net/default-charset
516 ; default_charset = "UTF-8"
517
518 ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
519 ; to disable this feature. If post reading is disabled through
520 ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.
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 =".;D:/xampps/htdocs"
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 ="D:/xampps/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 ="D:/xampps/tmp"
621
622 ; Maximum allowed size for uploaded files.
623 ; http://php.net/upload-max-filesize
624 upload_max_filesize =64m
625
626 ; Maximum number of files that can be uploaded via a single request
627 max_file_uploads = 128
628
629 ;;;;;;;;;;;;;;;;;;
630 ; Fopen wrappers ;
631 ;;;;;;;;;;;;;;;;;;
632
633 ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
634 ; http://php.net/allow-url-fopen
635 allow_url_fopen =On
636
637 ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
638 ; http://php.net/allow-url-include
639 allow_url_include =On
640
641 ; Define the anonymous ftp password (your email address). PHP's default setting
642 ; for this is empty.
643 ; http://php.net/from
644 ;from="john@doe.com"
645
646 ; Define the User-Agent string. PHP's default setting for this is empty.
647 ; http://php.net/user-agent
648 ;user_agent="PHP"
649
650 ; Default timeout for socket based streams (seconds)
651 ; http://php.net/default-socket-timeout
652 default_socket_timeout = 60
653 extension=php_xsl.dll
654 extension=php_xmlrpc.dll
655 extension=php_xdebug.dll
656 extension=php_tidy.dll
657 extension=php_sybase_ct.dll
658 extension=php_sqlite3.dll
659 extension=php_sockets.dll
660 extension=php_soap.dll
661 extension=php_snmp.dll
662 extension=php_shmop.dll
663 extension=php_pgsql.dll
664 extension=php_pdo_sqlite.dll
665 extension=php_pdo_pgsql.dll
666 extension=php_pdo_odbc.dll
667 extension=php_pdo_oci.dll
668 extension=php_pdo_mysql.dll
669 extension=php_pdo_firebird.dll
670 extension=php_openssl.dll
671 extension=php_oci8_12c.dll
672 extension=php_mysqli.dll
673 extension=php_mysql.dll
674 extension=php_mbstring.dll
675 extension=php_ldap.dll
676 extension=php_intl.dll
677 extension=php_interbase.dll
678 extension=php_imap.dll
679 extension=php_gmp.dll
680 extension=php_gettext.dll
681 extension=php_gd2.dll
682 extension=php_fileinfo.dll
683 extension=php_exif.dll
684 extension=php_enchant.dll
685 extension=php_curl.dll
686 extension=php_com_dotnet.dll
687 extension=php_bz2.dll
688
689 ; If your scripts have to deal with files from Macintosh systems,
690 ; or you are running on a Mac and need to deal with files from
691 ; unix or win32 systems, setting this flag will cause PHP to
692 ; automatically detect the EOL character in those files so that
693 ; fgets() and file() will work regardless of the source of the file.
694 ; http://php.net/auto-detect-line-endings
695 ;auto_detect_line_endings = Off
696
697 ;;;;;;;;;;;;;;;;;;;;;;
698 ; Dynamic Extensions ;
699 ;;;;;;;;;;;;;;;;;;;;;;
700
701 ; If you wish to have an extension loaded automatically, use the following
702 ; syntax:
703 ;
704 ; extension=modulename.extension
705 ;
706 ; For example, on Windows:
707 ;
708 ; extension=msql.dll
709 ;
710 ; ... or under UNIX:
711 ;
712 ; extension=msql.so
713 ;
714 ; ... or with a path:
715 ;
716 ; extension=/path/to/extension/msql.so
717 ;
718 ; If you only provide the name of the extension, PHP will look for it in its
719 ; default extension directory.
720 ;
721 ; Windows Extensions
722 ; Note that ODBC support is built in, so no dll is needed for it.
723 ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
724 ; extension folders as well as the separate PECL DLL download (PHP 5).
725 ; Be sure to appropriately set the extension_dir directive.
726 ;
727
728 ; The MIBS data available in the PHP distribution must be installed.
729 ; See http://www.php.net/manual/en/snmp.installation.php
730
731
732 ;;;;;;;;;;;;;;;;;;;
733 ; Module Settings ;
734 ;;;;;;;;;;;;;;;;;;;
735
736 [CLI Server]
737 ; Whether the CLI web server uses ANSI color coding in its terminal output.
738 cli_server.color = On
739
740 [Date]
741 ; Defines the default timezone used by the date functions
742 ; http://php.net/date.timezone
743 date.timezone =UTC
744
745 ; http://php.net/date.default-latitude
746 ;date.default_latitude = 31.7667
747
748 ; http://php.net/date.default-longitude
749 ;date.default_longitude = 35.2333
750
751 ; http://php.net/date.sunrise-zenith
752 ;date.sunrise_zenith = 90.583333
753
754 ; http://php.net/date.sunset-zenith
755 ;date.sunset_zenith = 90.583333
756
757 [filter]
758 ; http://php.net/filter.default
759 ;filter.default = unsafe_raw
760
761 ; http://php.net/filter.default-flags
762 ;filter.default_flags =
763
764 [iconv]
765 ;iconv.input_encoding = ISO-8859-1
766 ;iconv.internal_encoding = ISO-8859-1
767 ;iconv.output_encoding = ISO-8859-1
768
769 [intl]
770 ;intl.default_locale =
771 ; This directive allows you to produce PHP errors when some error
772 ; happens within intl functions. The value is the level of the error produced.
773 ; Default is 0, which does not produce any errors.
774 ;intl.error_level = E_WARNING
775
776 [sqlite]
777 ; http://php.net/sqlite.assoc-case
778 ;sqlite.assoc_case = 0
779
780 [sqlite3]
781 ;sqlite3.extension_dir =
782
783 [Pcre]
784 ;PCRE library backtracking limit.
785 ; http://php.net/pcre.backtrack-limit
786 ;pcre.backtrack_limit=100000
787
788 ;PCRE library recursion limit.
789 ;Please note that if you set this value to a high number you may consume all
790 ;the available process stack and eventually crash PHP (due to reaching the
791 ;stack size limit imposed by the Operating System).
792 ; http://php.net/pcre.recursion-limit
793 ;pcre.recursion_limit=100000
794
795 [Pdo]
796 ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
797 ; http://php.net/pdo-odbc.connection-pooling
798 ;pdo_odbc.connection_pooling=strict
799
800 ;pdo_odbc.db2_instance_name
801
802 [Pdo_mysql]
803 ; If mysqlnd is used: Number of cache slots for the internal result set cache
804 ; http://php.net/pdo_mysql.cache_size
805 pdo_mysql.cache_size = 2000
806
807 ; Default socket name for local MySQL connects. If empty, uses the built-in
808 ; MySQL defaults.
809 ; http://php.net/pdo_mysql.default-socket
810 pdo_mysql.default_socket=
811
812 [Phar]
813 ; http://php.net/phar.readonly
814 phar.readonly = Off
815
816 ; http://php.net/phar.require-hash
817 phar.require_hash = Off
818
819 ;phar.cache_list =
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 = me@example.com
831
832 ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
833 ; http://php.net/sendmail-path
834 ;sendmail_path =
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 = On
843
844 ; The path to a log file that will log all mail() calls. Log entries include
845 ; the full path of the script, line number, To address and headers.
846 ;mail.log =
847 ; Log mail to syslog (Event Log on NT, not valid in Windows 95).
848 ;mail.log = syslog
849
850 [SQL]
851 ; http://php.net/sql.safe-mode
852 sql.safe_mode = Off
853
854 [ODBC]
855 ; http://php.net/odbc.default-db
856 ;odbc.default_db = Not yet implemented
857
858 ; http://php.net/odbc.default-user
859 ;odbc.default_user = Not yet implemented
860
861 ; http://php.net/odbc.default-pw
862 ;odbc.default_pw = Not yet implemented
863
864 ; Controls the ODBC cursor model.
865 ; Default: SQL_CURSOR_STATIC (default).
866 ;odbc.default_cursortype
867
868 ; Allow or prevent persistent links.
869 ; http://php.net/odbc.allow-persistent
870 odbc.allow_persistent = On
871
872 ; Check that a connection is still valid before reuse.
873 ; http://php.net/odbc.check-persistent
874 odbc.check_persistent = On
875
876 ; Maximum number of persistent links. -1 means no limit.
877 ; http://php.net/odbc.max-persistent
878 odbc.max_persistent = -1
879
880 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
881 ; http://php.net/odbc.max-links
882 odbc.max_links = -1
883
884 ; Handling of LONG fields. Returns number of bytes to variables. 0 means
885 ; passthru.
886 ; http://php.net/odbc.defaultlrl
887 odbc.defaultlrl = 4096
888
889 ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
890 ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
891 ; of odbc.defaultlrl and odbc.defaultbinmode
892 ; http://php.net/odbc.defaultbinmode
893 odbc.defaultbinmode = 1
894
895 ;birdstep.max_links = -1
896
897 [Interbase]
898 ; Allow or prevent persistent links.
899 ibase.allow_persistent = 1
900
901 ; Maximum number of persistent links. -1 means no limit.
902 ibase.max_persistent = -1
903
904 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
905 ibase.max_links = -1
906
907 ; Default database name for ibase_connect().
908 ;ibase.default_db =
909
910 ; Default username for ibase_connect().
911 ;ibase.default_user =
912
913 ; Default password for ibase_connect().
914 ;ibase.default_password =
915
916 ; Default charset for ibase_connect().
917 ;ibase.default_charset =
918
919 ; Default timestamp format.
920 ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
921
922 ; Default date format.
923 ibase.dateformat = "%Y-%m-%d"
924
925 ; Default time format.
926 ibase.timeformat = "%H:%M:%S"
927
928 [MySQL]
929 ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
930 ; http://php.net/mysql.allow_local_infile
931 mysql.allow_local_infile = On
932
933 ; Allow or prevent persistent links.
934 ; http://php.net/mysql.allow-persistent
935 mysql.allow_persistent = On
936
937 ; If mysqlnd is used: Number of cache slots for the internal result set cache
938 ; http://php.net/mysql.cache_size
939 mysql.cache_size = 2000
940
941 ; Maximum number of persistent links. -1 means no limit.
942 ; http://php.net/mysql.max-persistent
943 mysql.max_persistent = -1
944
945 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
946 ; http://php.net/mysql.max-links
947 mysql.max_links = -1
948
949 ; Default port number for mysql_connect(). If unset, mysql_connect() will use
950 ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
951 ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
952 ; at MYSQL_PORT.
953 ; http://php.net/mysql.default-port
954 mysql.default_port =
955
956 ; Default socket name for local MySQL connects. If empty, uses the built-in
957 ; MySQL defaults.
958 ; http://php.net/mysql.default-socket
959 mysql.default_socket =
960
961 ; Default host for mysql_connect() (doesn't apply in safe mode).
962 ; http://php.net/mysql.default-host
963 mysql.default_host =
964
965 ; Default user for mysql_connect() (doesn't apply in safe mode).
966 ; http://php.net/mysql.default-user
967 mysql.default_user =
968
969 ; Default password for mysql_connect() (doesn't apply in safe mode).
970 ; Note that this is generally a *bad* idea to store passwords in this file.
971 ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
972 ; and reveal this password! And of course, any users with read access to this
973 ; file will be able to reveal the password as well.
974 ; http://php.net/mysql.default-password
975 mysql.default_password =
976
977 ; Maximum time (in seconds) for connect timeout. -1 means no limit
978 ; http://php.net/mysql.connect-timeout
979 mysql.connect_timeout = 30
980
981 ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
982 ; SQL-Errors will be displayed.
983 ; http://php.net/mysql.trace-mode
984 mysql.trace_mode = Off
985
986 [MySQLi]
987
988 ; Maximum number of persistent links. -1 means no limit.
989 ; http://php.net/mysqli.max-persistent
990 mysqli.max_persistent = -1
991
992 ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
993 ; http://php.net/mysqli.allow_local_infile
994 ;mysqli.allow_local_infile = On
995
996 ; Allow or prevent persistent links.
997 ; http://php.net/mysqli.allow-persistent
998 mysqli.allow_persistent = On
999
1000 ; Maximum number of links. -1 means no limit.
1001 ; http://php.net/mysqli.max-links
1002 mysqli.max_links = -1
1003
1004 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1005 ; http://php.net/mysqli.cache_size
1006 mysqli.cache_size = 2000
1007
1008 ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
1009 ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
1010 ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
1011 ; at MYSQL_PORT.
1012 ; http://php.net/mysqli.default-port
1013 mysqli.default_port = 3306
1014
1015 ; Default socket name for local MySQL connects. If empty, uses the built-in
1016 ; MySQL defaults.
1017 ; http://php.net/mysqli.default-socket
1018 mysqli.default_socket =
1019
1020 ; Default host for mysql_connect() (doesn't apply in safe mode).
1021 ; http://php.net/mysqli.default-host
1022 mysqli.default_host =
1023
1024 ; Default user for mysql_connect() (doesn't apply in safe mode).
1025 ; http://php.net/mysqli.default-user
1026 mysqli.default_user =
1027
1028 ; Default password for mysqli_connect() (doesn't apply in safe mode).
1029 ; Note that this is generally a *bad* idea to store passwords in this file.
1030 ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
1031 ; and reveal this password! And of course, any users with read access to this
1032 ; file will be able to reveal the password as well.
1033 ; http://php.net/mysqli.default-pw
1034 mysqli.default_pw =
1035
1036 ; Allow or prevent reconnect
1037 mysqli.reconnect = Off
1038
1039 [mysqlnd]
1040 ; Enable / Disable collection of general statistics by mysqlnd which can be
1041 ; used to tune and monitor MySQL operations.
1042 ; http://php.net/mysqlnd.collect_statistics
1043 mysqlnd.collect_statistics = On
1044
1045 ; Enable / Disable collection of memory usage statistics by mysqlnd which can be
1046 ; used to tune and monitor MySQL operations.
1047 ; http://php.net/mysqlnd.collect_memory_statistics
1048 mysqlnd.collect_memory_statistics = Off
1049
1050 ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
1051 ; http://php.net/mysqlnd.net_cmd_buffer_size
1052 ;mysqlnd.net_cmd_buffer_size = 2048
1053
1054 ; Size of a pre-allocated buffer used for reading data sent by the server in
1055 ; bytes.
1056 ; http://php.net/mysqlnd.net_read_buffer_size
1057 ;mysqlnd.net_read_buffer_size = 32768
1058
1059 [OCI8]
1060
1061 ; Connection: Enables privileged connections using external
1062 ; credentials (OCI_SYSOPER, OCI_SYSDBA)
1063 ; http://php.net/oci8.privileged-connect
1064 ;oci8.privileged_connect = Off
1065
1066 ; Connection: The maximum number of persistent OCI8 connections per
1067 ; process. Using -1 means no limit.
1068 ; http://php.net/oci8.max-persistent
1069 ;oci8.max_persistent = -1
1070
1071 ; Connection: The maximum number of seconds a process is allowed to
1072 ; maintain an idle persistent connection. Using -1 means idle
1073 ; persistent connections will be maintained forever.
1074 ; http://php.net/oci8.persistent-timeout
1075 ;oci8.persistent_timeout = -1
1076
1077 ; Connection: The number of seconds that must pass before issuing a
1078 ; ping during oci_pconnect() to check the connection validity. When
1079 ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
1080 ; pings completely.
1081 ; http://php.net/oci8.ping-interval
1082 ;oci8.ping_interval = 60
1083
1084 ; Connection: Set this to a user chosen connection class to be used
1085 ; for all pooled server requests with Oracle 11g Database Resident
1086 ; Connection Pooling (DRCP). To use DRCP, this value should be set to
1087 ; the same string for all web servers running the same application,
1088 ; the database pool must be configured, and the connection string must
1089 ; specify to use a pooled server.
1090 ;oci8.connection_class =
1091
1092 ; High Availability: Using On lets PHP receive Fast Application
1093 ; Notification (FAN) events generated when a database node fails. The
1094 ; database must also be configured to post FAN events.
1095 ;oci8.events = Off
1096
1097 ; Tuning: This option enables statement caching, and specifies how
1098 ; many statements to cache. Using 0 disables statement caching.
1099 ; http://php.net/oci8.statement-cache-size
1100 ;oci8.statement_cache_size = 20
1101
1102 ; Tuning: Enables statement prefetching and sets the default number of
1103 ; rows that will be fetched automatically after statement execution.
1104 ; http://php.net/oci8.default-prefetch
1105 ;oci8.default_prefetch = 100
1106
1107 ; Compatibility. Using On means oci_close() will not close
1108 ; oci_connect() and oci_new_connect() connections.
1109 ; http://php.net/oci8.old-oci-close-semantics
1110 ;oci8.old_oci_close_semantics = Off
1111
1112 [PostgreSQL]
1113 ; Allow or prevent persistent links.
1114 ; http://php.net/pgsql.allow-persistent
1115 pgsql.allow_persistent = On
1116
1117 ; Detect broken persistent links always with pg_pconnect().
1118 ; Auto reset feature requires a little overheads.
1119 ; http://php.net/pgsql.auto-reset-persistent
1120 pgsql.auto_reset_persistent = Off
1121
1122 ; Maximum number of persistent links. -1 means no limit.
1123 ; http://php.net/pgsql.max-persistent
1124 pgsql.max_persistent = -1
1125
1126 ; Maximum number of links (persistent+non persistent). -1 means no limit.
1127 ; http://php.net/pgsql.max-links
1128 pgsql.max_links = -1
1129
1130 ; Ignore PostgreSQL backends Notice message or not.
1131 ; Notice message logging require a little overheads.
1132 ; http://php.net/pgsql.ignore-notice
1133 pgsql.ignore_notice = 0
1134
1135 ; Log PostgreSQL backends Notice message or not.
1136 ; Unless pgsql.ignore_notice=0, module cannot log notice message.
1137 ; http://php.net/pgsql.log-notice
1138 pgsql.log_notice = 0
1139
1140 [Sybase-CT]
1141 ; Allow or prevent persistent links.
1142 ; http://php.net/sybct.allow-persistent
1143 sybct.allow_persistent = On
1144
1145 ; Maximum number of persistent links. -1 means no limit.
1146 ; http://php.net/sybct.max-persistent
1147 sybct.max_persistent = -1
1148
1149 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1150 ; http://php.net/sybct.max-links
1151 sybct.max_links = -1
1152
1153 ; Minimum server message severity to display.
1154 ; http://php.net/sybct.min-server-severity
1155 sybct.min_server_severity = 10
1156
1157 ; Minimum client message severity to display.
1158 ; http://php.net/sybct.min-client-severity
1159 sybct.min_client_severity = 10
1160
1161 ; Set per-context timeout
1162 ; http://php.net/sybct.timeout
1163 ;sybct.timeout=
1164
1165 ;sybct.packet_size
1166
1167 ; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
1168 ; Default: one minute
1169 ;sybct.login_timeout=
1170
1171 ; The name of the host you claim to be connecting from, for display by sp_who.
1172 ; Default: none
1173 ;sybct.hostname=
1174
1175 ; Allows you to define how often deadlocks are to be retried. -1 means "forever".
1176 ; Default: 0
1177 ;sybct.deadlock_retry_count=
1178
1179 [bcmath]
1180 ; Number of decimal digits for all bcmath functions.
1181 ; http://php.net/bcmath.scale
1182 bcmath.scale = 0
1183
1184 [browscap]
1185 ; http://php.net/browscap
1186 browscap = "D:/xampps/php/extras/browscap.ini"
1187
1188 [Session]
1189 ; Handler used to store/retrieve data.
1190 ; http://php.net/session.save-handler
1191 session.save_handler = files
1192
1193 ; Argument passed to save_handler. In the case of files, this is the path
1194 ; where data files are stored. Note: Windows users have to change this
1195 ; variable in order to use PHP's session functions.
1196 ;
1197 ; The path can be defined as:
1198 ;
1199 ; session.save_path = "N;/path"
1200 ;
1201 ; where N is an integer. Instead of storing all the session files in
1202 ; /path, what this will do is use subdirectories N-levels deep, and
1203 ; store the session data in those directories. This is useful if you
1204 ; or your OS have problems with lots of files in one directory, and is
1205 ; a more efficient layout for servers that handle lots of sessions.
1206 ;
1207 ; NOTE 1: PHP will not create this directory structure automatically.
1208 ; You can use the script in the ext/session dir for that purpose.
1209 ; NOTE 2: See the section on garbage collection below if you choose to
1210 ; use subdirectories for session storage
1211 ;
1212 ; The file storage module creates files using mode 600 by default.
1213 ; You can change that by using
1214 ;
1215 ; session.save_path = "N;MODE;/path"
1216 ;
1217 ; where MODE is the octal representation of the mode. Note that this
1218 ; does not overwrite the process's umask.
1219 ; http://php.net/session.save-path
1220 session.save_path = "D:/xampps/tmp"
1221
1222 ; Whether to use cookies.
1223 ; http://php.net/session.use-cookies
1224 session.use_cookies = 1
1225
1226 ; http://php.net/session.cookie-secure
1227 ;session.cookie_secure =
1228
1229 ; This option forces PHP to fetch and use a cookie for storing and maintaining
1230 ; the session id. We encourage this operation as it's very helpful in combating
1231 ; session hijacking when not specifying and managing your own session id. It is
1232 ; not the end all be all of session hijacking defense, but it's a good start.
1233 ; http://php.net/session.use-only-cookies
1234 session.use_only_cookies = 1
1235
1236 ; Name of the session (used as cookie name).
1237 ; http://php.net/session.name
1238 session.name = PHPSESSID
1239
1240 ; Initialize session on request startup.
1241 ; http://php.net/session.auto-start
1242 session.auto_start = 0
1243
1244 ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
1245 ; http://php.net/session.cookie-lifetime
1246 session.cookie_lifetime = 0
1247
1248 ; The path for which the cookie is valid.
1249 ; http://php.net/session.cookie-path
1250 session.cookie_path = /
1251
1252 ; The domain for which the cookie is valid.
1253 ; http://php.net/session.cookie-domain
1254 session.cookie_domain =
1255
1256 ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
1257 ; http://php.net/session.cookie-httponly
1258 session.cookie_httponly =
1259
1260 ; Handler used to serialize data. php is the standard serializer of PHP.
1261 ; http://php.net/session.serialize-handler
1262 session.serialize_handler = php
1263
1264 ; Defines the probability that the 'garbage collection' process is started
1265 ; on every session initialization. The probability is calculated by using
1266 ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
1267 ; and gc_divisor is the denominator in the equation. Setting this value to 1
1268 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1269 ; the gc will run on any give request.
1270 ; Default Value: 1
1271 ; Development Value: 1
1272 ; Production Value: 1
1273 ; http://php.net/session.gc-probability
1274 session.gc_probability = 1
1275
1276 ; Defines the probability that the 'garbage collection' process is started on every
1277 ; session initialization. The probability is calculated by using the following equation:
1278 ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
1279 ; session.gc_divisor is the denominator in the equation. Setting this value to 1
1280 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1281 ; the gc will run on any give request. Increasing this value to 1000 will give you
1282 ; a 0.1% chance the gc will run on any give request. For high volume production servers,
1283 ; this is a more efficient approach.
1284 ; Default Value: 100
1285 ; Development Value: 1000
1286 ; Production Value: 1000
1287 ; http://php.net/session.gc-divisor
1288 session.gc_divisor = 1000
1289
1290 ; After this number of seconds, stored data will be seen as 'garbage' and
1291 ; cleaned up by the garbage collection process.
1292 ; http://php.net/session.gc-maxlifetime
1293 session.gc_maxlifetime = 1440
1294
1295 ; NOTE: If you are using the subdirectory option for storing session files
1296 ; (see session.save_path above), then garbage collection does *not*
1297 ; happen automatically. You will need to do your own garbage
1298 ; collection through a shell script, cron entry, or some other method.
1299 ; For example, the following script would is the equivalent of
1300 ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1301 ; find /path/to/sessions -cmin +24 | xargs rm
1302
1303 ; PHP 4.2 and less have an undocumented feature/bug that allows you to
1304 ; to initialize a session variable in the global scope.
1305 ; PHP 4.3 and later will warn you, if this feature is used.
1306 ; You can disable the feature and the warning separately. At this time,
1307 ; the warning is only displayed, if bug_compat_42 is enabled. This feature
1308 ; introduces some serious security problems if not handled correctly. It's
1309 ; recommended that you do not use this feature on production servers. But you
1310 ; should enable this on development servers and enable the warning as well. If you
1311 ; do not enable the feature on development servers, you won't be warned when it's
1312 ; used and debugging errors caused by this can be difficult to track down.
1313 ; Default Value: On
1314 ; Development Value: On
1315 ; Production Value: Off
1316 ; http://php.net/session.bug-compat-42
1317 session.bug_compat_42 = Off
1318
1319 ; This setting controls whether or not you are warned by PHP when initializing a
1320 ; session value into the global space. session.bug_compat_42 must be enabled before
1321 ; these warnings can be issued by PHP. See the directive above for more information.
1322 ; Default Value: On
1323 ; Development Value: On
1324 ; Production Value: Off
1325 ; http://php.net/session.bug-compat-warn
1326 session.bug_compat_warn = Off
1327
1328 ; Check HTTP Referer to invalidate externally stored URLs containing ids.
1329 ; HTTP_REFERER has to contain this substring for the session to be
1330 ; considered as valid.
1331 ; http://php.net/session.referer-check
1332 session.referer_check =
1333
1334 ; How many bytes to read from the file.
1335 ; http://php.net/session.entropy-length
1336 ;session.entropy_length = 32
1337
1338 ; Specified here to create the session id.
1339 ; http://php.net/session.entropy-file
1340 ; Defaults to /dev/urandom
1341 ; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
1342 ; If neither are found at compile time, the default is no entropy file.
1343 ; On windows, setting the entropy_length setting will activate the
1344 ; Windows random source (using the CryptoAPI)
1345 ;session.entropy_file = /dev/urandom
1346
1347 ; Set to {nocache,private,public,} to determine HTTP caching aspects
1348 ; or leave this empty to avoid sending anti-caching headers.
1349 ; http://php.net/session.cache-limiter
1350 session.cache_limiter = nocache
1351
1352 ; Document expires after n minutes.
1353 ; http://php.net/session.cache-expire
1354 session.cache_expire = 180
1355
1356 ; trans sid support is disabled by default.
1357 ; Use of trans sid may risk your users security.
1358 ; Use this option with caution.
1359 ; - User may send URL contains active session ID
1360 ; to other person via. email/irc/etc.
1361 ; - URL that contains active session ID may be stored
1362 ; in publicly accessible computer.
1363 ; - User may access your site with the same session ID
1364 ; always using URL stored in browser's history or bookmarks.
1365 ; http://php.net/session.use-trans-sid
1366 session.use_trans_sid = 0
1367
1368 ; Select a hash function for use in generating session ids.
1369 ; Possible Values
1370 ; 0 (MD5 128 bits)
1371 ; 1 (SHA-1 160 bits)
1372 ; This option may also be set to the name of any hash function supported by
1373 ; the hash extension. A list of available hashes is returned by the hash_algos()
1374 ; function.
1375 ; http://php.net/session.hash-function
1376 session.hash_function = 0
1377
1378 ; Define how many bits are stored in each character when converting
1379 ; the binary hash data to something readable.
1380 ; Possible values:
1381 ; 4 (4 bits: 0-9, a-f)
1382 ; 5 (5 bits: 0-9, a-v)
1383 ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
1384 ; Default Value: 4
1385 ; Development Value: 5
1386 ; Production Value: 5
1387 ; http://php.net/session.hash-bits-per-character
1388 session.hash_bits_per_character = 5
1389
1390 ; The URL rewriter will look for URLs in a defined set of HTML tags.
1391 ; form/fieldset are special; if you include them here, the rewriter will
1392 ; add a hidden <input> field with the info which is otherwise appended
1393 ; to URLs. If you want XHTML conformity, remove the form entry.
1394 ; Note that all valid entries require a "=", even if no value follows.
1395 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
1396 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1397 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1398 ; http://php.net/url-rewriter.tags
1399 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
1400
1401 ; Enable upload progress tracking in $_SESSION
1402 ; Default Value: On
1403 ; Development Value: On
1404 ; Production Value: On
1405 ; http://php.net/session.upload-progress.enabled
1406 ;session.upload_progress.enabled = On
1407
1408 ; Cleanup the progress information as soon as all POST data has been read
1409 ; (i.e. upload completed).
1410 ; Default Value: On
1411 ; Development Value: On
1412 ; Production Value: On
1413 ; http://php.net/session.upload-progress.cleanup
1414 ;session.upload_progress.cleanup = On
1415
1416 ; A prefix used for the upload progress key in $_SESSION
1417 ; Default Value: "upload_progress_"
1418 ; Development Value: "upload_progress_"
1419 ; Production Value: "upload_progress_"
1420 ; http://php.net/session.upload-progress.prefix
1421 ;session.upload_progress.prefix = "upload_progress_"
1422
1423 ; The index name (concatenated with the prefix) in $_SESSION
1424 ; containing the upload progress information
1425 ; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
1426 ; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
1427 ; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
1428 ; http://php.net/session.upload-progress.name
1429 ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
1430
1431 ; How frequently the upload progress should be updated.
1432 ; Given either in percentages (per-file), or in bytes
1433 ; Default Value: "1%"
1434 ; Development Value: "1%"
1435 ; Production Value: "1%"
1436 ; http://php.net/session.upload-progress.freq
1437 ;session.upload_progress.freq = "1%"
1438
1439 ; The minimum delay between updates, in seconds
1440 ; Default Value: 1
1441 ; Development Value: 1
1442 ; Production Value: 1
1443 ; http://php.net/session.upload-progress.min-freq
1444 ;session.upload_progress.min_freq = "1"
1445
1446 [MSSQL]
1447 ; Allow or prevent persistent links.
1448 mssql.allow_persistent = On
1449
1450 ; Maximum number of persistent links. -1 means no limit.
1451 mssql.max_persistent = -1
1452
1453 ; Maximum number of links (persistent+non persistent). -1 means no limit.
1454 mssql.max_links = -1
1455
1456 ; Minimum error severity to display.
1457 mssql.min_error_severity = 10
1458
1459 ; Minimum message severity to display.
1460 mssql.min_message_severity = 10
1461
1462 ; Compatibility mode with old versions of PHP 3.0.
1463 mssql.compatability_mode = Off
1464
1465 ; Connect timeout
1466 ;mssql.connect_timeout = 5
1467
1468 ; Query timeout
1469 ;mssql.timeout = 60
1470
1471 ; Valid range 0 - 2147483647. Default = 4096.
1472 ;mssql.textlimit = 4096
1473
1474 ; Valid range 0 - 2147483647. Default = 4096.
1475 ;mssql.textsize = 4096
1476
1477 ; Limits the number of records in each batch. 0 = all records in one batch.
1478 ;mssql.batchsize = 0
1479
1480 ; Specify how datetime and datetim4 columns are returned
1481 ; On => Returns data converted to SQL server settings
1482 ; Off => Returns values as YYYY-MM-DD hh:mm:ss
1483 ;mssql.datetimeconvert = On
1484
1485 ; Use NT authentication when connecting to the server
1486 mssql.secure_connection = Off
1487
1488 ; Specify max number of processes. -1 = library default
1489 ; msdlib defaults to 25
1490 ; FreeTDS defaults to 4096
1491 ;mssql.max_procs = -1
1492
1493 ; Specify client character set.
1494 ; If empty or not set the client charset from freetds.conf is used
1495 ; This is only used when compiled with FreeTDS
1496 ;mssql.charset = "ISO-8859-1"
1497
1498 [Assertion]
1499 ; Assert(expr); active by default.
1500 ; http://php.net/assert.active
1501 ;assert.active = On
1502
1503 ; Issue a PHP warning for each failed assertion.
1504 ; http://php.net/assert.warning
1505 ;assert.warning = On
1506
1507 ; Don't bail out by default.
1508 ; http://php.net/assert.bail
1509 ;assert.bail = Off
1510
1511 ; User-function to be called if an assertion fails.
1512 ; http://php.net/assert.callback
1513 ;assert.callback = 0
1514
1515 ; Eval the expression with current error_reporting(). Set to true if you want
1516 ; error_reporting(0) around the eval().
1517 ; http://php.net/assert.quiet-eval
1518 ;assert.quiet_eval = 0
1519
1520 [COM]
1521 ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
1522 ; http://php.net/com.typelib-file
1523 ;com.typelib_file =
1524
1525 ; allow Distributed-COM calls
1526 ; http://php.net/com.allow-dcom
1527 ;com.allow_dcom = true
1528
1529 ; autoregister constants of a components typlib on com_load()
1530 ; http://php.net/com.autoregister-typelib
1531 ;com.autoregister_typelib = true
1532
1533 ; register constants casesensitive
1534 ; http://php.net/com.autoregister-casesensitive
1535 ;com.autoregister_casesensitive = false
1536
1537 ; show warnings on duplicate constant registrations
1538 ; http://php.net/com.autoregister-verbose
1539 ;com.autoregister_verbose = true
1540
1541 ; The default character set code-page to use when passing strings to and from COM objects.
1542 ; Default: system ANSI code page
1543 ;com.code_page=
1544
1545 [mbstring]
1546 ; language for internal character representation.
1547 ; http://php.net/mbstring.language
1548 ;mbstring.language = Japanese
1549
1550 ; internal/script encoding.
1551 ; Some encoding cannot work as internal encoding.
1552 ; (e.g. SJIS, BIG5, ISO-2022-*)
1553 ; http://php.net/mbstring.internal-encoding
1554 ;mbstring.internal_encoding = EUC-JP
1555
1556 ; http input encoding.
1557 ; http://php.net/mbstring.http-input
1558 ;mbstring.http_input = auto
1559
1560 ; http output encoding. mb_output_handler must be
1561 ; registered as output buffer to function
1562 ; http://php.net/mbstring.http-output
1563 ;mbstring.http_output = SJIS
1564
1565 ; enable automatic encoding translation according to
1566 ; mbstring.internal_encoding setting. Input chars are
1567 ; converted to internal encoding by setting this to On.
1568 ; Note: Do _not_ use automatic encoding translation for
1569 ; portable libs/applications.
1570 ; http://php.net/mbstring.encoding-translation
1571 ;mbstring.encoding_translation = Off
1572
1573 ; automatic encoding detection order.
1574 ; auto means
1575 ; http://php.net/mbstring.detect-order
1576 ;mbstring.detect_order = auto
1577
1578 ; substitute_character used when character cannot be converted
1579 ; one from another
1580 ; http://php.net/mbstring.substitute-character
1581 ;mbstring.substitute_character = none;
1582
1583 ; overload(replace) single byte functions by mbstring functions.
1584 ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
1585 ; etc. Possible values are 0,1,2,4 or combination of them.
1586 ; For example, 7 for overload everything.
1587 ; 0: No overload
1588 ; 1: Overload mail() function
1589 ; 2: Overload str*() functions
1590 ; 4: Overload ereg*() functions
1591 ; http://php.net/mbstring.func-overload
1592 ;mbstring.func_overload = 0
1593
1594 ; enable strict encoding detection.
1595 ;mbstring.strict_detection = Off
1596
1597 ; This directive specifies the regex pattern of content types for which mb_output_handler()
1598 ; is activated.
1599 ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
1600 ;mbstring.http_output_conv_mimetype=
1601
1602 [gd]
1603 ; Tell the jpeg decode to ignore warnings and try to create
1604 ; a gd image. The warning will then be displayed as notices
1605 ; disabled by default
1606 ; http://php.net/gd.jpeg-ignore-warning
1607 ;gd.jpeg_ignore_warning = 0
1608
1609 [exif]
1610 ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
1611 ; With mbstring support this will automatically be converted into the encoding
1612 ; given by corresponding encode setting. When empty mbstring.internal_encoding
1613 ; is used. For the decode settings you can distinguish between motorola and
1614 ; intel byte order. A decode setting cannot be empty.
1615 ; http://php.net/exif.encode-unicode
1616 ;exif.encode_unicode = ISO-8859-15
1617
1618 ; http://php.net/exif.decode-unicode-motorola
1619 ;exif.decode_unicode_motorola = UCS-2BE
1620
1621 ; http://php.net/exif.decode-unicode-intel
1622 ;exif.decode_unicode_intel = UCS-2LE
1623
1624 ; http://php.net/exif.encode-jis
1625 ;exif.encode_jis =
1626
1627 ; http://php.net/exif.decode-jis-motorola
1628 ;exif.decode_jis_motorola = JIS
1629
1630 ; http://php.net/exif.decode-jis-intel
1631 ;exif.decode_jis_intel = JIS
1632
1633 [Tidy]
1634 ; The path to a default tidy configuration file to use when using tidy
1635 ; http://php.net/tidy.default-config
1636 ;tidy.default_config = /usr/local/lib/php/default.tcfg
1637
1638 ; Should tidy clean and repair output automatically?
1639 ; WARNING: Do not use this option if you are generating non-html content
1640 ; such as dynamic images
1641 ; http://php.net/tidy.clean-output
1642 tidy.clean_output = Off
1643
1644 [soap]
1645 ; Enables or disables WSDL caching feature.
1646 ; http://php.net/soap.wsdl-cache-enabled
1647 soap.wsdl_cache_enabled=1
1648
1649 ; Sets the directory name where SOAP extension will put cache files.
1650 ; http://php.net/soap.wsdl-cache-dir
1651 soap.wsdl_cache_dir="/tmp"
1652
1653 ; (time to live) Sets the number of second while cached file will be used
1654 ; instead of original one.
1655 ; http://php.net/soap.wsdl-cache-ttl
1656 soap.wsdl_cache_ttl=86400
1657
1658 ; Sets the size of the cache limit. (Max. number of WSDL files to cache)
1659 soap.wsdl_cache_limit = 5
1660
1661 [sysvshm]
1662 ; A default size of the shared memory segment
1663 ;sysvshm.init_mem = 10000
1664
1665 [ldap]
1666 ; Sets the maximum number of open links or -1 for unlimited.
1667 ldap.max_links = -1
1668
1669 [mcrypt]
1670 ; For more information about mcrypt settings see http://php.net/mcrypt-module-open
1671
1672 ; Directory where to load mcrypt algorithms
1673 ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
1674 ;mcrypt.algorithms_dir=
1675
1676 ; Directory where to load mcrypt modes
1677 ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
1678 ;mcrypt.modes_dir=
1679
1680 [dba]
1681 ;dba.default_handler=
1682
1683 ; Local Variables:
1684 ; tab-width: 4
1685 ; End:
1686
1687
1688 [opcache]
1689 ; Loading opcache
1690 ;zend_extension = "D:/xampps\php\ext\php_opcache.dll"
1691
1692 ; Determines if Zend OPCache is enabled
1693 ;opcache.enable=0
1694
1695 ; Determines if Zend OPCache is enabled for the CLI version of PHP
1696 ;opcache.enable_cli=0
1697
1698 ; The OPcache shared memory storage size.
1699 ;opcache.memory_consumption=64
1700
1701 ; The amount of memory for interned strings in Mbytes.
1702 ;opcache.interned_strings_buffer=4
1703
1704 ; The maximum number of keys (scripts) in the OPcache hash table.
1705 ; Only numbers between 200 and 100000 are allowed.
1706 ;opcache.max_accelerated_files=2000
1707
1708 ; The maximum percentage of "wasted" memory until a restart is scheduled.
1709 ;opcache.max_wasted_percentage=5
1710
1711 ; When this directive is enabled, the OPcache appends the current working
1712 ; directory to the script key, thus eliminating possible collisions between
1713 ; files with the same name (basename). Disabling the directive improves
1714 ; performance, but may break existing applications.
1715 ;opcache.use_cwd=1
1716
1717 ; When disabled, you must reset the OPcache manually or restart the
1718 ; webserver for changes to the filesystem to take effect.
1719 ;opcache.validate_timestamps=1
1720
1721 ; How often (in seconds) to check file timestamps for changes to the shared
1722 ; memory storage allocation. ("1" means validate once per second, but only
1723 ; once per request. "0" means always validate)
1724 ;opcache.revalidate_freq=2
1725
1726 ; Enables or disables file search in include_path optimization
1727 ;opcache.revalidate_path=0
1728
1729 ; If disabled, all PHPDoc comments are dropped from the code to reduce the
1730 ;size of the optimized code.
1731 ;opcache.save_comments=1
1732
1733 ; If disabled, PHPDoc comments are not loaded from SHM, so "Doc Comments"
1734 ; may be always stored (save_comments=1), but not loaded by applications
1735 ; that don't need them anyway.
1736 ;opcache.load_comments=1
1737
1738 ; If enabled, a fast shutdown sequence is used for the accelerated code
1739 ;opcache.fast_shutdown=0
1740
1741 ; Allow file existence override (file_exists, etc.) performance feature.
1742 ;opcache.enable_file_override=0
1743
1744 ; A bitmask, where each bit enables or disables the appropriate OPcache
1745 ; passes
1746 ;opcache.optimization_level=0xffffffff
1747
1748 ;opcache.inherited_hack=1
1749 ;opcache.dups_fix=0
1750
1751 ; The location of the OPcache blacklist file (wildcards allowed).
1752 ; Each OPcache blacklist file is a text file that holds the names of files
1753 ; that should not be accelerated. The file format is to add each filename
1754 ; to a new line. The filename may be a full path or just a file prefix
1755 ; (i.e., /var/www/x blacklists all the files and directories in /var/www
1756 ; that start with 'x'). Line starting with a ; are ignored (comments).
1757 ;opcache.blacklist_filename=
1758
1759 ; Allows exclusion of large files from being cached. By default all files
1760 ; are cached.
1761 ;opcache.max_file_size=0
1762
1763 ; Check the cache checksum each N requests.
1764 ; The default value of "0" means that the checks are disabled.
1765 ;opcache.consistency_checks=0
1766
1767 ; How long to wait (in seconds) for a scheduled restart to begin if the cache
1768 ; is not being accessed.
1769 ;opcache.force_restart_timeout=180
1770
1771 ; OPcache error_log file name. Empty string assumes "stderr".
1772 ;opcache.error_log=
1773
1774 ; All OPcache errors go to the Web server log.
1775 ; By default, only fatal errors (level 0) or errors (level 1) are logged.
1776 ; You can also enable warnings (level 2), info messages (level 3) or
1777 ; debug messages (level 4).
1778 ;opcache.log_verbosity_level=1
1779
1780 ; Preferred Shared Memory back-end. Leave empty and let the system decide.
1781 ;opcache.preferred_memory_model=
1782
1783 ; Protect the shared memory from unexpected writing during script execution.
1784 ; Useful for internal debugging only.
1785 ;opcache.protect_memory=0
1786
1787
1788 ; zend_extension = "D:\xampp\php\ext\php_xdebug.dll"
1789 ; xdebug.remote_enable =1
1790 ; xdebug.remote_handler = "dbgp"
1791 ; xdebug.remote_host = "localhost"
1792 ; xdebug.remote_mode = "req"
1793 ; xdebug.remote_port = 9000
1794
1795 xdebug.remote_enable= 1
1796
1797 xdebug.remote_host= "localhost"
1798
1799 xdebug.remote_port= 9000
1800
1801 xdebug.remote_handler= "dbgp"
1802
1803 zend_extension= "D:\xampps\php\xdebug\php_xdebug-2.3.2-5.6-vc11-x86_64.dll"
1804
1805 [zend_loader]
1806 zend_loader.enable=1
1807 zend_loader.disable_licensing=1
1808 zend_loader.obfuscation_level_support=3
1809 zend_loader.license_path=
1810 zend_extension = "D:\xampps\php\ext\ZendLoader.dll"
1811
1812 [opcache]
1813 zend_extension = “D:\xampp\php\ext\php_opcache.dll”
1814 opcache.memory_consumption=1024
1815 opcache.optimization_level=1
1816 opcache.interned_strings_buffer=8
1817 opcache.max_accelerated_files=4096
1818 opcache.revalidate_freq=60
1819 opcache.fast_shutdown=1
1820 opcache.enable=1
1821 opcache.enable_cli=1
1822 ; Local Variables:
1823 ; tab-width: 4
1824 ; End:
1825 [Zend]
1826 zend_extension_manager.optimizer_ts="C:\Program Files (x86)\Zend\ZendOptimizer-3.3.0\lib\Optimizer-3.3.0"
1827 zend_extension_ts="C:\Program Files (x86)\Zend\ZendOptimizer-3.3.0\lib\ZendExtensionManager.dll"