source: npl/internetserver/apache_conf/root/etc/php5/php.ini @ 10bd92c

perl-5.22
Last change on this file since 10bd92c was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 47.4 KB
Line 
1[PHP]
2
3;;;;;;;;;;;;;;;;;;;
4; About php.ini   ;
5;;;;;;;;;;;;;;;;;;;
6; This file controls many aspects of PHP's behavior.  In order for PHP to
7; read it, it must be named 'php.ini'.  PHP looks for it in the current
8; working directory, in the path designated by the environment variable
9; PHPRC, and in the path that was defined in compile time (in that order).
10; Under Windows, the compile-time path is the Windows directory.  The
11; path in which the php.ini file is looked for can be overridden using
12; the -c argument in command line mode.
13;
14; The syntax of the file is extremely simple.  Whitespace and Lines
15; beginning with a semicolon are silently ignored (as you probably guessed).
16; Section headers (e.g. [Foo]) are also silently ignored, even though
17; they might mean something in the future.
18;
19; Directives are specified using the following syntax:
20; directive = value
21; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
22;
23; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
24; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
25; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
26;
27; Expressions in the INI file are limited to bitwise operators and parentheses:
28; |        bitwise OR
29; &        bitwise AND
30; ~        bitwise NOT
31; !        boolean NOT
32;
33; Boolean flags can be turned on using the values 1, On, True or Yes.
34; They can be turned off using the values 0, Off, False or No.
35;
36; An empty string can be denoted by simply not writing anything after the equal
37; sign, or by using the None keyword:
38;
39;  foo =         ; sets foo to an empty string
40;  foo = none    ; sets foo to an empty string
41;  foo = "none"  ; sets foo to the string 'none'
42;
43; If you use constants in your value, and these constants belong to a
44; dynamically loaded extension (either a PHP extension or a Zend extension),
45; you may only use these constants *after* the line that loads the extension.
46;
47;
48;;;;;;;;;;;;;;;;;;;
49; About this file ;
50;;;;;;;;;;;;;;;;;;;
51; This is the recommended, PHP 5-style version of the php.ini-dist file.  It
52; sets some non standard settings, that make PHP more efficient, more secure,
53; and encourage cleaner coding.
54;
55; The price is that with these settings, PHP may be incompatible with some
56; applications, and sometimes, more difficult to develop with.  Using this
57; file is warmly recommended for production sites.  As all of the changes from
58; the standard settings are thoroughly documented, you can go over each one,
59; and decide whether you want to use it or not.
60;
61; For general information about the php.ini file, please consult the php.ini-dist
62; file, included in your PHP distribution.
63;
64; This file is different from the php.ini-dist file in the fact that it features
65; different values for several directives, in order to improve performance, while
66; possibly breaking compatibility with the standard out-of-the-box behavior of
67; PHP.  Please make sure you read what's different, and modify your scripts
68; accordingly, if you decide to use this file instead.
69;
70; - register_long_arrays = Off     [Performance]
71;     Disables registration of the older (and deprecated) long predefined array
72;     variables ($HTTP_*_VARS).  Instead, use the superglobals that were
73;     introduced in PHP 4.1.0
74; - display_errors = Off           [Security]
75;     With this directive set to off, errors that occur during the execution of
76;     scripts will no longer be displayed as a part of the script output, and thus,
77;     will no longer be exposed to remote users.  With some errors, the error message
78;     content may expose information about your script, web server, or database
79;     server that may be exploitable for hacking.  Production sites should have this
80;     directive set to off.
81; - log_errors = On                [Security]
82;     This directive complements the above one.  Any errors that occur during the
83;     execution of your script will be logged (typically, to your server's error log,
84;     but can be configured in several ways).  Along with setting display_errors to off,
85;     this setup gives you the ability to fully understand what may have gone wrong,
86;     without exposing any sensitive information to remote users.
87; - output_buffering = 4096        [Performance]
88;     Set a 4KB output buffer.  Enabling output buffering typically results in less
89;     writes, and sometimes less packets sent on the wire, which can often lead to
90;     better performance.  The gain this directive actually yields greatly depends
91;     on which Web server you're working with, and what kind of scripts you're using.
92; - register_argc_argv = Off       [Performance]
93;     Disables registration of the somewhat redundant $argv and $argc global
94;     variables.
95; - magic_quotes_gpc = Off         [Performance]
96;     Input data is no longer escaped with slashes so that it can be sent into
97;     SQL databases without further manipulation.  Instead, you should use the
98;     function addslashes() on each input element you wish to send to a database.
99; - variables_order = "GPCS"       [Performance]
100;     The environment variables are not hashed into the $_ENV.  To access
101;     environment variables, you can use getenv() instead.
102; - error_reporting = E_ALL        [Code Cleanliness, Security(?)]
103;     By default, PHP suppresses errors of type E_NOTICE.  These error messages
104;     are emitted for non-critical errors, but that could be a symptom of a bigger
105;     problem.  Most notably, this will cause error messages about the use
106;     of uninitialized variables to be displayed.
107; - allow_call_time_pass_reference = Off     [Code cleanliness]
108;     It's not possible to decide to force a variable to be passed by reference
109;     when calling a function.  The PHP 4 style to do this is by making the
110;     function require the relevant argument by reference.
111; - short_open_tag = Off           [Portability]
112;     Using short tags is discouraged when developing code meant for redistribution
113;     since short tags may not be supported on the target server.
114
115;;;;;;;;;;;;;;;;;;;;
116; Language Options ;
117;;;;;;;;;;;;;;;;;;;;
118
119; Enable the PHP scripting language engine under Apache.
120engine = On
121
122; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
123zend.ze1_compatibility_mode = Off
124
125; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
126; NOTE: Using short tags should be avoided when developing applications or
127; libraries that are meant for redistribution, or deployment on PHP
128; servers which are not under your control, because short tags may not
129; be supported on the target server. For portable, redistributable code,
130; be sure not to use short tags.
131short_open_tag = On
132
133; Allow ASP-style <% %> tags.
134asp_tags = Off
135
136; The number of significant digits displayed in floating point numbers.
137precision    =  14
138
139; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
140y2k_compliance = On
141
142; Output buffering allows you to send header lines (including cookies) even
143; after you send body content, at the price of slowing PHP's output layer a
144; bit.  You can enable output buffering during runtime by calling the output
145; buffering functions.  You can also enable output buffering for all files by
146; setting this directive to On.  If you wish to limit the size of the buffer
147; to a certain size - you can use a maximum number of bytes instead of 'On', as
148; a value for this directive (e.g., output_buffering=4096).
149output_buffering = 4096
150
151; You can redirect all of the output of your scripts to a function.  For
152; example, if you set output_handler to "mb_output_handler", character
153; encoding will be transparently converted to the specified encoding.
154; Setting any output handler automatically turns on output buffering.
155; Note: People who wrote portable scripts should not depend on this ini
156;       directive. Instead, explicitly set the output handler using ob_start().
157;       Using this ini directive may cause problems unless you know what script
158;       is doing.
159; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
160;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
161; Note: output_handler must be empty if this is set 'On' !!!!
162;       Instead you must use zlib.output_handler.
163;output_handler =
164
165; Transparent output compression using the zlib library
166; Valid values for this option are 'off', 'on', or a specific buffer size
167; to be used for compression (default is 4KB)
168; Note: Resulting chunk size may vary due to nature of compression. PHP
169;       outputs chunks that are few hundreds bytes each as a result of
170;       compression. If you prefer a larger chunk size for better
171;       performance, enable output_buffering in addition.
172; Note: You need to use zlib.output_handler instead of the standard
173;       output_handler, or otherwise the output will be corrupted.
174zlib.output_compression = Off
175;zlib.output_compression_level = -1
176
177; You cannot specify additional output handlers if zlib.output_compression
178; is activated here. This setting does the same as output_handler but in
179; a different order.
180;zlib.output_handler =
181
182; Implicit flush tells PHP to tell the output layer to flush itself
183; automatically after every output block.  This is equivalent to calling the
184; PHP function flush() after each and every call to print() or echo() and each
185; and every HTML block.  Turning this option on has serious performance
186; implications and is generally recommended for debugging purposes only.
187implicit_flush = Off
188
189; The unserialize callback function will be called (with the undefined class'
190; name as parameter), if the unserializer finds an undefined class
191; which should be instantiated.
192; A warning appears if the specified function is not defined, or if the
193; function doesn't include/implement the missing class.
194; So only set this entry, if you really want to implement such a
195; callback-function.
196unserialize_callback_func=
197
198; When floats & doubles are serialized store serialize_precision significant
199; digits after the floating point. The default value ensures that when floats
200; are decoded with unserialize, the data will remain the same.
201serialize_precision = 100
202
203; Whether to enable the ability to force arguments to be passed by reference
204; at function call time.  This method is deprecated and is likely to be
205; unsupported in future versions of PHP/Zend.  The encouraged method of
206; specifying which arguments should be passed by reference is in the function
207; declaration.  You're encouraged to try and turn this option Off and make
208; sure your scripts work properly with it in order to ensure they will work
209; with future versions of the language (you will receive a warning each time
210; you use this feature, and the argument will be passed by value instead of by
211; reference).
212;allow_call_time_pass_reference = Off
213
214;
215; Safe Mode
216;
217safe_mode = Off
218
219; By default, Safe Mode does a UID compare check when
220; opening files. If you want to relax this to a GID compare,
221; then turn on safe_mode_gid.
222safe_mode_gid = Off
223
224; When safe_mode is on, UID/GID checks are bypassed when
225; including files from this directory and its subdirectories.
226; (directory must also be in include_path or full path must
227; be used when including)
228safe_mode_include_dir =
229
230; When safe_mode is on, only executables located in the safe_mode_exec_dir
231; will be allowed to be executed via the exec family of functions.
232safe_mode_exec_dir =
233
234; Setting certain environment variables may be a potential security breach.
235; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
236; the user may only alter environment variables whose names begin with the
237; prefixes supplied here.  By default, users will only be able to set
238; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
239;
240; Note:  If this directive is empty, PHP will let the user modify ANY
241; environment variable!
242safe_mode_allowed_env_vars = PHP_
243
244; This directive contains a comma-delimited list of environment variables that
245; the end user won't be able to change using putenv().  These variables will be
246; protected even if safe_mode_allowed_env_vars is set to allow to change them.
247safe_mode_protected_env_vars = LD_LIBRARY_PATH
248
249; open_basedir, if set, limits all file operations to the defined directory
250; and below.  This directive makes most sense if used in a per-directory
251; or per-virtualhost web server configuration file. This directive is
252; *NOT* affected by whether Safe Mode is turned On or Off.
253;open_basedir =
254
255; This directive allows you to disable certain functions for security reasons.
256; It receives a comma-delimited list of function names. This directive is
257; *NOT* affected by whether Safe Mode is turned On or Off.
258disable_functions =
259
260; This directive allows you to disable certain classes for security reasons.
261; It receives a comma-delimited list of class names. This directive is
262; *NOT* affected by whether Safe Mode is turned On or Off.
263disable_classes =
264
265; Colors for Syntax Highlighting mode.  Anything that's acceptable in
266; <span style="color: ???????"> would work.
267;highlight.string  = #DD0000
268;highlight.comment = #FF9900
269;highlight.keyword = #007700
270;highlight.bg      = #FFFFFF
271;highlight.default = #0000BB
272;highlight.html    = #000000
273
274; If enabled, the request will be allowed to complete even if the user aborts
275; the request. Consider enabling it if executing long request, which may end up
276; being interrupted by the user or a browser timing out.
277; ignore_user_abort = On
278
279; Determines the size of the realpath cache to be used by PHP. This value should
280; be increased on systems where PHP opens many files to reflect the quantity of
281; the file operations performed.
282; realpath_cache_size=16k
283
284; Duration of time, in seconds for which to cache realpath information for a given
285; file or directory. For systems with rarely changing files, consider increasing this
286; value.
287; realpath_cache_ttl=120
288
289;
290; Misc
291;
292; Decides whether PHP may expose the fact that it is installed on the server
293; (e.g. by adding its signature to the Web server header).  It is no security
294; threat in any way, but it makes it possible to determine whether you use PHP
295; on your server or not.
296expose_php = On
297
298
299;;;;;;;;;;;;;;;;;;;
300; Resource Limits ;
301;;;;;;;;;;;;;;;;;;;
302
303max_execution_time = 300     ; Maximum execution time of each script, in seconds
304max_input_time = 60     ; Maximum amount of time each script may spend parsing request data
305;max_input_nesting_level = 64 ; Maximum input variable nesting level
306;512M neccesary for z-push -a fixstates
307memory_limit = 512M      ; Maximum amount of memory a script may consume
308
309
310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
311; Error handling and logging ;
312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
313
314; error_reporting is a bit-field.  Or each number up to get desired error
315; reporting level
316; E_ALL             - All errors and warnings (doesn't include E_STRICT)
317; E_ERROR           - fatal run-time errors
318; E_RECOVERABLE_ERROR  - almost fatal run-time errors
319; E_WARNING         - run-time warnings (non-fatal errors)
320; E_PARSE           - compile-time parse errors
321; E_NOTICE          - run-time notices (these are warnings which often result
322;                     from a bug in your code, but it's possible that it was
323;                     intentional (e.g., using an uninitialized variable and
324;                     relying on the fact it's automatically initialized to an
325;                     empty string)
326; E_STRICT          - run-time notices, enable to have PHP suggest changes
327;                     to your code which will ensure the best interoperability
328;                     and forward compatibility of your code
329; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
330; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
331;                     initial startup
332; E_COMPILE_ERROR   - fatal compile-time errors
333; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
334; E_USER_ERROR      - user-generated error message
335; E_USER_WARNING    - user-generated warning message
336; E_USER_NOTICE     - user-generated notice message
337;
338; Examples:
339;
340;   - Show all errors, except for notices and coding standards warnings
341;
342;error_reporting = E_ALL & ~E_NOTICE
343;
344;   - Show all errors, except for notices
345;
346;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
347;
348;   - Show only errors
349;
350error_reporting = E_PARSE|E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
351;
352;   - Show all errors, except coding standards warnings
353;
354;error_reporting  =  E_ALL
355
356; Print out errors (as a part of the output).  For production web sites,
357; you're strongly encouraged to turn this feature off, and use error logging
358; instead (see below).  Keeping display_errors enabled on a production web site
359; may reveal security information to end users, such as file paths on your Web
360; server, your database schema or other information.
361display_errors = Off
362
363; Even when display_errors is on, errors that occur during PHP's startup
364; sequence are not displayed.  It's strongly recommended to keep
365; display_startup_errors off, except for when debugging.
366display_startup_errors = Off
367
368; Log errors into a log file (server-specific log, stderr, or error_log (below))
369; As stated above, you're strongly advised to use error logging in place of
370; error displaying on production web sites.
371log_errors = On
372
373; Set maximum length of log_errors. In error_log information about the source is
374; added. The default is 1024 and 0 allows to not apply any maximum length at all.
375log_errors_max_len = 1024
376
377; Do not log repeated messages. Repeated errors must occur in same file on same
378; line until ignore_repeated_source is set true.
379ignore_repeated_errors = Off
380
381; Ignore source of message when ignoring repeated messages. When this setting
382; is On you will not log errors with repeated messages from different files or
383; source lines.
384ignore_repeated_source = Off
385
386; If this parameter is set to Off, then memory leaks will not be shown (on
387; stdout or in the log). This has only effect in a debug compile, and if
388; error reporting includes E_WARNING in the allowed list
389report_memleaks = On
390
391;report_zend_debug = 0
392
393; Store the last error/warning message in $php_errormsg (boolean).
394track_errors = Off
395
396; Disable the inclusion of HTML tags in error messages.
397; Note: Never use this feature for production boxes.
398;html_errors = Off
399
400; If html_errors is set On PHP produces clickable error messages that direct
401; to a page describing the error or function causing the error in detail.
402; You can download a copy of the PHP manual from http://www.php.net/docs.php
403; and change docref_root to the base URL of your local copy including the
404; leading '/'. You must also specify the file extension being used including
405; the dot.
406; Note: Never use this feature for production boxes.
407;docref_root = "/phpmanual/"
408;docref_ext = .html
409
410; String to output before an error message.
411;error_prepend_string = "<font color=ff0000>"
412
413; String to output after an error message.
414;error_append_string = "</font>"
415
416; Log errors to specified file.
417;error_log = filename
418
419; Log errors to syslog (Event Log on NT, not valid in Windows 95).
420;error_log = syslog
421
422
423;;;;;;;;;;;;;;;;;
424; Data Handling ;
425;;;;;;;;;;;;;;;;;
426;
427; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
428
429; The separator used in PHP generated URLs to separate arguments.
430; Default is "&".
431;arg_separator.output = "&amp;"
432
433; List of separator(s) used by PHP to parse input URLs into variables.
434; Default is "&".
435; NOTE: Every character in this directive is considered as separator!
436;arg_separator.input = ";&"
437
438; This directive describes the order in which PHP registers GET, POST, Cookie,
439; Environment and Built-in variables (G, P, C, E & S respectively, often
440; referred to as EGPCS or GPC).  Registration is done from left to right, newer
441; values override older values.
442variables_order = "GPCS"
443
444; Whether or not to register the EGPCS variables as global variables.  You may
445; want to turn this off if you don't want to clutter your scripts' global scope
446; with user data.  This makes most sense when coupled with track_vars - in which
447; case you can access all of the GPC variables through the $HTTP_*_VARS[],
448; variables.
449;
450; You should do your best to write your scripts so that they do not require
451; register_globals to be on;  Using form variables as globals can easily lead
452; to possible security problems, if the code is not very well thought of.
453register_globals = Off
454
455; Whether or not to register the old-style input arrays, HTTP_GET_VARS
456; and friends.  If you're not using them, it's recommended to turn them off,
457; for performance reasons.
458register_long_arrays = Off
459
460; This directive tells PHP whether to declare the argv&argc variables (that
461; would contain the GET information).  If you don't use these variables, you
462; should turn it off for increased performance.
463register_argc_argv = Off
464
465; When enabled, the SERVER and ENV variables are created when they're first
466; used (Just In Time) instead of when the script starts. If these variables
467; are not used within a script, having this directive on will result in a
468; performance gain. The PHP directives register_globals, register_long_arrays,
469; and register_argc_argv must be disabled for this directive to have any affect.
470auto_globals_jit = On
471
472; Maximum size of POST data that PHP will accept.
473post_max_size = 256M
474
475; Magic quotes
476;
477
478; Magic quotes for incoming GET/POST/Cookie data.
479magic_quotes_gpc = Off
480
481; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
482magic_quotes_runtime = Off
483
484; Use Sybase-style magic quotes (escape ' with '' instead of \').
485magic_quotes_sybase = Off
486
487; Automatically add files before or after any PHP document.
488auto_prepend_file =
489auto_append_file =
490
491; As of 4.0b4, PHP always outputs a character encoding by default in
492; the Content-type: header.  To disable sending of the charset, simply
493; set it to be empty.
494;
495; PHP's built-in default is text/html
496default_mimetype = "text/html"
497;default_charset = "iso-8859-1"
498
499; Always populate the $HTTP_RAW_POST_DATA variable.
500;always_populate_raw_post_data = On
501
502
503;;;;;;;;;;;;;;;;;;;;;;;;;
504; Paths and Directories ;
505;;;;;;;;;;;;;;;;;;;;;;;;;
506
507; UNIX: "/path1:/path2"
508;include_path = ".:/php/includes"
509;
510; Windows: "\path1;\path2"
511;include_path = ".;c:\php\includes"
512
513; The root of the PHP pages, used only if nonempty.
514; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
515; if you are running php as a CGI under any web server (other than IIS)
516; see documentation for security issues.  The alternate is to use the
517; cgi.force_redirect configuration below
518doc_root =
519
520; The directory under which PHP opens the script using /~username used only
521; if nonempty.
522user_dir =
523
524; Directory in which the loadable extensions (modules) reside.
525; extension_dir = "/usr/php5/extensions/no-debug-non-zts-20090626/"
526
527; Whether or not to enable the dl() function.  The dl() function does NOT work
528; properly in multithreaded servers, such as IIS or Zeus, and is automatically
529; disabled on them.
530enable_dl = On
531
532; cgi.force_redirect is necessary to provide security running PHP as a CGI under
533; most web servers.  Left undefined, PHP turns this on by default.  You can
534; turn it off here AT YOUR OWN RISK
535; **You CAN safely turn this off for IIS, in fact, you MUST.**
536; cgi.force_redirect = 1
537
538; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
539; every request.
540; cgi.nph = 1
541
542; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
543; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
544; will look for to know it is OK to continue execution.  Setting this variable MAY
545; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
546; cgi.redirect_status_env = ;
547
548; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
549; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
550; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
551; this to 1 will cause PHP CGI to fix it's paths to conform to the spec.  A setting
552; of zero causes PHP to behave as before.  Default is zero.  You should fix your scripts
553; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
554; cgi.fix_pathinfo=1
555
556; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
557; security tokens of the calling client.  This allows IIS to define the
558; security context that the request runs under.  mod_fastcgi under Apache
559; does not currently support this feature (03/17/2002)
560; Set to 1 if running under IIS.  Default is zero.
561; fastcgi.impersonate = 1;
562
563; Disable logging through FastCGI connection
564; fastcgi.log = 0
565
566; cgi.rfc2616_headers configuration option tells PHP what type of headers to
567; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
568; is supported by Apache. When this option is set to 1 PHP will send
569; RFC2616 compliant header.
570; Default is zero.
571;cgi.rfc2616_headers = 0
572
573
574;;;;;;;;;;;;;;;;
575; File Uploads ;
576;;;;;;;;;;;;;;;;
577
578; Whether to allow HTTP file uploads.
579file_uploads = On
580
581; Temporary directory for HTTP uploaded files (will use system default if not
582; specified).
583;upload_tmp_dir =
584
585; Maximum allowed size for uploaded files.
586upload_max_filesize = 64M
587
588
589;;;;;;;;;;;;;;;;;;
590; Fopen wrappers ;
591;;;;;;;;;;;;;;;;;;
592
593; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
594allow_url_fopen = On
595
596; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
597allow_url_include = Off
598
599; Define the anonymous ftp password (your email address)
600;from="john@doe.com"
601
602; Define the User-Agent string
603; user_agent="PHP"
604
605; Default timeout for socket based streams (seconds)
606default_socket_timeout = 60
607
608; If your scripts have to deal with files from Macintosh systems,
609; or you are running on a Mac and need to deal with files from
610; unix or win32 systems, setting this flag will cause PHP to
611; automatically detect the EOL character in those files so that
612; fgets() and file() will work regardless of the source of the file.
613; auto_detect_line_endings = Off
614
615
616;;;;;;;;;;;;;;;;;;;;;;
617; Dynamic Extensions ;
618;;;;;;;;;;;;;;;;;;;;;;
619;
620; If you wish to have an extension loaded automatically, use the following
621; syntax:
622;
623;   extension=modulename.extension
624;
625; For example, on Windows:
626;
627;   extension=msql.dll
628;
629; ... or under UNIX:
630;
631;   extension=msql.so
632;
633; Note that it should be the name of the module only; no directory information
634; needs to go here.  Specify the location of the extension with the
635; extension_dir directive above.
636
637
638; Windows Extensions
639; Note that ODBC support is built in, so no dll is needed for it.
640; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
641; extension folders as well as the separate PECL DLL download (PHP 5).
642; Be sure to appropriately set the extension_dir directive.
643
644;extension=php_bz2.dll
645;extension=php_curl.dll
646;extension=php_dba.dll
647;extension=php_dbase.dll
648;extension=php_exif.dll
649;extension=php_fdf.dll
650;extension=php_gd2.dll
651;extension=php_gettext.dll
652;extension=php_gmp.dll
653;extension=php_ifx.dll
654;extension=php_imap.dll
655;extension=php_interbase.dll
656;extension=php_ldap.dll
657;extension=php_mbstring.dll
658;extension=php_mcrypt.dll
659;extension=php_mhash.dll
660;extension=php_mime_magic.dll
661;extension=php_ming.dll
662;extension=php_msql.dll
663;extension=php_mssql.dll
664;extension=php_mysql.dll
665;extension=php_mysqli.dll
666;extension=php_oci8.dll
667;extension=php_openssl.dll
668;extension=php_pdo.dll
669;extension=php_pdo_firebird.dll
670;extension=php_pdo_mssql.dll
671;extension=php_pdo_mysql.dll
672;extension=php_pdo_oci.dll
673;extension=php_pdo_oci8.dll
674;extension=php_pdo_odbc.dll
675;extension=php_pdo_pgsql.dll
676;extension=php_pdo_sqlite.dll
677;extension=php_pgsql.dll
678;extension=php_pspell.dll
679;extension=php_shmop.dll
680;extension=php_snmp.dll
681;extension=php_soap.dll
682;extension=php_sockets.dll
683;extension=php_sqlite.dll
684;extension=php_sybase_ct.dll
685;extension=php_tidy.dll
686;extension=php_xmlrpc.dll
687;extension=php_xsl.dll
688;extension=php_zip.dll
689
690;;;;;;;;;;;;;;;;;;;
691; Module Settings ;
692;;;;;;;;;;;;;;;;;;;
693
694[Date]
695; Defines the default timezone used by the date functions
696;date.timezone =
697
698;date.default_latitude = 31.7667
699;date.default_longitude = 35.2333
700
701;date.sunrise_zenith = 90.583333
702;date.sunset_zenith = 90.583333
703
704[filter]
705;filter.default = unsafe_raw
706;filter.default_flags =
707
708[iconv]
709;iconv.input_encoding = ISO-8859-1
710;iconv.internal_encoding = ISO-8859-1
711;iconv.output_encoding = ISO-8859-1
712
713[sqlite]
714;sqlite.assoc_case = 0
715
716[xmlrpc]
717;xmlrpc_error_number = 0
718;xmlrpc_errors = 0
719
720[Pcre]
721;PCRE library backtracking limit.
722;pcre.backtrack_limit=100000
723
724;PCRE library recursion limit.
725;Please note that if you set this value to a high number you may consume all
726;the available process stack and eventually crash PHP (due to reaching the
727;stack size limit imposed by the Operating System).
728;pcre.recursion_limit=100000
729
730[Syslog]
731; Whether or not to define the various syslog variables (e.g. $LOG_PID,
732; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
733; runtime, you can define these variables by calling define_syslog_variables().
734define_syslog_variables  = Off
735
736[mail function]
737; For Win32 only.
738SMTP = localhost
739smtp_port = 25
740
741; For Win32 only.
742;sendmail_from = me@example.com
743
744; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
745sendmail_path = /var/qmail/bin/qmail-inject
746
747; Force the addition of the specified parameters to be passed as extra parameters
748; to the sendmail binary. These parameters will always replace the value of
749; the 5th parameter to mail(), even in safe mode.
750;mail.force_extra_parameters =
751
752[SQL]
753sql.safe_mode = Off
754
755[ODBC]
756;odbc.default_db    =  Not yet implemented
757;odbc.default_user  =  Not yet implemented
758;odbc.default_pw    =  Not yet implemented
759
760; Allow or prevent persistent links.
761odbc.allow_persistent = On
762
763; Check that a connection is still valid before reuse.
764odbc.check_persistent = On
765
766; Maximum number of persistent links.  -1 means no limit.
767odbc.max_persistent = -1
768
769; Maximum number of links (persistent + non-persistent).  -1 means no limit.
770odbc.max_links = -1
771
772; Handling of LONG fields.  Returns number of bytes to variables.  0 means
773; passthru.
774odbc.defaultlrl = 4096
775
776; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
777; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
778; of uodbc.defaultlrl and uodbc.defaultbinmode
779odbc.defaultbinmode = 1
780
781[MySQL]
782; Allow or prevent persistent links.
783mysql.allow_persistent = On
784
785; Maximum number of persistent links.  -1 means no limit.
786mysql.max_persistent = -1
787
788; Maximum number of links (persistent + non-persistent).  -1 means no limit.
789mysql.max_links = -1
790
791; Default port number for mysql_connect().  If unset, mysql_connect() will use
792; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
793; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
794; at MYSQL_PORT.
795mysql.default_port =
796
797; Default socket name for local MySQL connects.  If empty, uses the built-in
798; MySQL defaults.
799mysql.default_socket = /var/run/mysql/mysql.sock
800
801; Default host for mysql_connect() (doesn't apply in safe mode).
802mysql.default_host =
803
804; Default user for mysql_connect() (doesn't apply in safe mode).
805mysql.default_user =
806
807; Default password for mysql_connect() (doesn't apply in safe mode).
808; Note that this is generally a *bad* idea to store passwords in this file.
809; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
810; and reveal this password!  And of course, any users with read access to this
811; file will be able to reveal the password as well.
812mysql.default_password =
813
814; Maximum time (in seconds) for connect timeout. -1 means no limit
815mysql.connect_timeout = 60
816
817; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
818; SQL-Errors will be displayed.
819mysql.trace_mode = Off
820
821[MySQLi]
822
823; Maximum number of links.  -1 means no limit.
824mysqli.max_links = -1
825
826; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
827; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
828; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
829; at MYSQL_PORT.
830mysqli.default_port = 3306
831
832; Default socket name for local MySQL connects.  If empty, uses the built-in
833; MySQL defaults.
834mysqli.default_socket = /var/run/mysql/mysql.sock
835
836; Default host for mysql_connect() (doesn't apply in safe mode).
837mysqli.default_host =
838
839; Default user for mysql_connect() (doesn't apply in safe mode).
840mysqli.default_user =
841
842; Default password for mysqli_connect() (doesn't apply in safe mode).
843; Note that this is generally a *bad* idea to store passwords in this file.
844; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
845; and reveal this password!  And of course, any users with read access to this
846; file will be able to reveal the password as well.
847mysqli.default_pw =
848
849; Allow or prevent reconnect
850mysqli.reconnect = Off
851
852[mSQL]
853; Allow or prevent persistent links.
854msql.allow_persistent = On
855
856; Maximum number of persistent links.  -1 means no limit.
857msql.max_persistent = -1
858
859; Maximum number of links (persistent+non persistent).  -1 means no limit.
860msql.max_links = -1
861
862[OCI8]
863; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
864;oci8.privileged_connect = Off
865
866; Connection: The maximum number of persistent OCI8 connections per
867; process. Using -1 means no limit.
868;oci8.max_persistent = -1
869
870; Connection: The maximum number of seconds a process is allowed to
871; maintain an idle persistent connection. Using -1 means idle
872; persistent connections will be maintained forever.
873;oci8.persistent_timeout = -1
874
875; Connection: The number of seconds that must pass before issuing a
876; ping during oci_pconnect() to check the connection validity. When
877; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
878; pings completely.
879;oci8.ping_interval = 60
880
881; Tuning: This option enables statement caching, and specifies how
882; many statements to cache. Using 0 disables statement caching.
883;oci8.statement_cache_size = 20
884
885; Tuning: Enables statement prefetching and sets the default number of
886; rows that will be fetched automatically after statement execution.
887;oci8.default_prefetch = 10
888
889; Compatibility. Using On means oci_close() will not close
890; oci_connect() and oci_new_connect() connections.
891;oci8.old_oci_close_semantics = Off
892
893[PostgresSQL]
894; Allow or prevent persistent links.
895pgsql.allow_persistent = On
896
897; Detect broken persistent links always with pg_pconnect().
898; Auto reset feature requires a little overheads.
899pgsql.auto_reset_persistent = Off
900
901; Maximum number of persistent links.  -1 means no limit.
902pgsql.max_persistent = -1
903
904; Maximum number of links (persistent+non persistent).  -1 means no limit.
905pgsql.max_links = -1
906
907; Ignore PostgreSQL backends Notice message or not.
908; Notice message logging require a little overheads.
909pgsql.ignore_notice = 0
910
911; Log PostgreSQL backends Noitce message or not.
912; Unless pgsql.ignore_notice=0, module cannot log notice message.
913pgsql.log_notice = 0
914
915[Sybase]
916; Allow or prevent persistent links.
917sybase.allow_persistent = On
918
919; Maximum number of persistent links.  -1 means no limit.
920sybase.max_persistent = -1
921
922; Maximum number of links (persistent + non-persistent).  -1 means no limit.
923sybase.max_links = -1
924
925;sybase.interface_file = "/usr/sybase/interfaces"
926
927; Minimum error severity to display.
928sybase.min_error_severity = 10
929
930; Minimum message severity to display.
931sybase.min_message_severity = 10
932
933; Compatibility mode with old versions of PHP 3.0.
934; If on, this will cause PHP to automatically assign types to results according
935; to their Sybase type, instead of treating them all as strings.  This
936; compatibility mode will probably not stay around forever, so try applying
937; whatever necessary changes to your code, and turn it off.
938sybase.compatability_mode = Off
939
940[Sybase-CT]
941; Allow or prevent persistent links.
942sybct.allow_persistent = On
943
944; Maximum number of persistent links.  -1 means no limit.
945sybct.max_persistent = -1
946
947; Maximum number of links (persistent + non-persistent).  -1 means no limit.
948sybct.max_links = -1
949
950; Minimum server message severity to display.
951sybct.min_server_severity = 10
952
953; Minimum client message severity to display.
954sybct.min_client_severity = 10
955
956[bcmath]
957; Number of decimal digits for all bcmath functions.
958bcmath.scale = 0
959
960[browscap]
961;browscap = extra/browscap.ini
962
963[Informix]
964; Default host for ifx_connect() (doesn't apply in safe mode).
965ifx.default_host =
966
967; Default user for ifx_connect() (doesn't apply in safe mode).
968ifx.default_user =
969
970; Default password for ifx_connect() (doesn't apply in safe mode).
971ifx.default_password =
972
973; Allow or prevent persistent links.
974ifx.allow_persistent = On
975
976; Maximum number of persistent links.  -1 means no limit.
977ifx.max_persistent = -1
978
979; Maximum number of links (persistent + non-persistent).  -1 means no limit.
980ifx.max_links = -1
981
982; If on, select statements return the contents of a text blob instead of its id.
983ifx.textasvarchar = 0
984
985; If on, select statements return the contents of a byte blob instead of its id.
986ifx.byteasvarchar = 0
987
988; Trailing blanks are stripped from fixed-length char columns.  May help the
989; life of Informix SE users.
990ifx.charasvarchar = 0
991
992; If on, the contents of text and byte blobs are dumped to a file instead of
993; keeping them in memory.
994ifx.blobinfile = 0
995
996; NULL's are returned as empty strings, unless this is set to 1.  In that case,
997; NULL's are returned as string 'NULL'.
998ifx.nullformat = 0
999
1000[Session]
1001; Handler used to store/retrieve data.
1002session.save_handler = files
1003
1004; Argument passed to save_handler.  In the case of files, this is the path
1005; where data files are stored. Note: Windows users have to change this
1006; variable in order to use PHP's session functions.
1007;
1008; As of PHP 4.0.1, you can define the path as:
1009;
1010;     session.save_path = "N;/path"
1011;
1012; where N is an integer.  Instead of storing all the session files in
1013; /path, what this will do is use subdirectories N-levels deep, and
1014; store the session data in those directories.  This is useful if you
1015; or your OS have problems with lots of files in one directory, and is
1016; a more efficient layout for servers that handle lots of sessions.
1017;
1018; NOTE 1: PHP will not create this directory structure automatically.
1019;         You can use the script in the ext/session dir for that purpose.
1020; NOTE 2: See the section on garbage collection below if you choose to
1021;         use subdirectories for session storage
1022;
1023; The file storage module creates files using mode 600 by default.
1024; You can change that by using
1025;
1026;     session.save_path = "N;MODE;/path"
1027;
1028; where MODE is the octal representation of the mode. Note that this
1029; does not overwrite the process's umask.
1030session.save_path = "/tmp"
1031
1032; Whether to use cookies.
1033session.use_cookies = 1
1034
1035;session.cookie_secure =
1036
1037; This option enables administrators to make their users invulnerable to
1038; attacks which involve passing session ids in URLs; defaults to 0.
1039; session.use_only_cookies = 1
1040
1041; Name of the session (used as cookie name).
1042session.name = PHPSESSID
1043
1044; Initialize session on request startup.
1045session.auto_start = 0
1046
1047; Lifetime in seconds of cookie or, if 0, until browser is restarted.
1048session.cookie_lifetime = 0
1049
1050; The path for which the cookie is valid.
1051session.cookie_path = /
1052
1053; The domain for which the cookie is valid.
1054session.cookie_domain =
1055
1056; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
1057session.cookie_httponly =
1058
1059; Handler used to serialize data.  php is the standard serializer of PHP.
1060session.serialize_handler = php
1061
1062; Define the probability that the 'garbage collection' process is started
1063; on every session initialization.
1064; The probability is calculated by using gc_probability/gc_divisor,
1065; e.g. 1/100 means there is a 1% chance that the GC process starts
1066; on each request.
1067
1068session.gc_probability = 1
1069session.gc_divisor     = 1000
1070
1071; After this number of seconds, stored data will be seen as 'garbage' and
1072; cleaned up by the garbage collection process.
1073session.gc_maxlifetime = 1440
1074
1075; NOTE: If you are using the subdirectory option for storing session files
1076;       (see session.save_path above), then garbage collection does *not*
1077;       happen automatically.  You will need to do your own garbage
1078;       collection through a shell script, cron entry, or some other method.
1079;       For example, the following script would is the equivalent of
1080;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1081;          cd /path/to/sessions; find -cmin +24 | xargs rm
1082
1083; PHP 4.2 and less have an undocumented feature/bug that allows you to
1084; to initialize a session variable in the global scope, albeit register_globals
1085; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
1086; You can disable the feature and the warning separately. At this time,
1087; the warning is only displayed, if bug_compat_42 is enabled.
1088
1089session.bug_compat_42 = 0
1090session.bug_compat_warn = 1
1091
1092; Check HTTP Referer to invalidate externally stored URLs containing ids.
1093; HTTP_REFERER has to contain this substring for the session to be
1094; considered as valid.
1095session.referer_check =
1096
1097; How many bytes to read from the file.
1098session.entropy_length = 0
1099
1100; Specified here to create the session id.
1101session.entropy_file =
1102
1103;session.entropy_length = 16
1104
1105;session.entropy_file = /dev/urandom
1106
1107; Set to {nocache,private,public,} to determine HTTP caching aspects
1108; or leave this empty to avoid sending anti-caching headers.
1109session.cache_limiter = nocache
1110
1111; Document expires after n minutes.
1112session.cache_expire = 180
1113
1114; trans sid support is disabled by default.
1115; Use of trans sid may risk your users security.
1116; Use this option with caution.
1117; - User may send URL contains active session ID
1118;   to other person via. email/irc/etc.
1119; - URL that contains active session ID may be stored
1120;   in publically accessible computer.
1121; - User may access your site with the same session ID
1122;   always using URL stored in browser's history or bookmarks.
1123session.use_trans_sid = 0
1124
1125; Select a hash function
1126; 0: MD5   (128 bits)
1127; 1: SHA-1 (160 bits)
1128session.hash_function = 0
1129
1130; Define how many bits are stored in each character when converting
1131; the binary hash data to something readable.
1132;
1133; 4 bits: 0-9, a-f
1134; 5 bits: 0-9, a-v
1135; 6 bits: 0-9, a-z, A-Z, "-", ","
1136session.hash_bits_per_character = 5
1137
1138; The URL rewriter will look for URLs in a defined set of HTML tags.
1139; form/fieldset are special; if you include them here, the rewriter will
1140; add a hidden <input> field with the info which is otherwise appended
1141; to URLs.  If you want XHTML conformity, remove the form entry.
1142; Note that all valid entries require a "=", even if no value follows.
1143url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
1144
1145[MSSQL]
1146; Allow or prevent persistent links.
1147mssql.allow_persistent = On
1148
1149; Maximum number of persistent links.  -1 means no limit.
1150mssql.max_persistent = -1
1151
1152; Maximum number of links (persistent+non persistent).  -1 means no limit.
1153mssql.max_links = -1
1154
1155; Minimum error severity to display.
1156mssql.min_error_severity = 10
1157
1158; Minimum message severity to display.
1159mssql.min_message_severity = 10
1160
1161; Compatibility mode with old versions of PHP 3.0.
1162mssql.compatability_mode = Off
1163
1164; Connect timeout
1165;mssql.connect_timeout = 5
1166
1167; Query timeout
1168;mssql.timeout = 60
1169
1170; Valid range 0 - 2147483647.  Default = 4096.
1171;mssql.textlimit = 4096
1172
1173; Valid range 0 - 2147483647.  Default = 4096.
1174;mssql.textsize = 4096
1175
1176; Limits the number of records in each batch.  0 = all records in one batch.
1177;mssql.batchsize = 0
1178
1179; Specify how datetime and datetim4 columns are returned
1180; On => Returns data converted to SQL server settings
1181; Off => Returns values as YYYY-MM-DD hh:mm:ss
1182;mssql.datetimeconvert = On
1183
1184; Use NT authentication when connecting to the server
1185mssql.secure_connection = Off
1186
1187; Specify max number of processes. -1 = library default
1188; msdlib defaults to 25
1189; FreeTDS defaults to 4096
1190;mssql.max_procs = -1
1191
1192; Specify client character set.
1193; If empty or not set the client charset from freetds.comf is used
1194; This is only used when compiled with FreeTDS
1195;mssql.charset = "ISO-8859-1"
1196
1197[Assertion]
1198; Assert(expr); active by default.
1199;assert.active = On
1200
1201; Issue a PHP warning for each failed assertion.
1202;assert.warning = On
1203
1204; Don't bail out by default.
1205;assert.bail = Off
1206
1207; User-function to be called if an assertion fails.
1208;assert.callback = 0
1209
1210; Eval the expression with current error_reporting().  Set to true if you want
1211; error_reporting(0) around the eval().
1212;assert.quiet_eval = 0
1213
1214[COM]
1215; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
1216;com.typelib_file =
1217; allow Distributed-COM calls
1218;com.allow_dcom = true
1219; autoregister constants of a components typlib on com_load()
1220;com.autoregister_typelib = true
1221; register constants casesensitive
1222;com.autoregister_casesensitive = false
1223; show warnings on duplicate constant registrations
1224;com.autoregister_verbose = true
1225
1226[mbstring]
1227; language for internal character representation.
1228;mbstring.language = Japanese
1229
1230; internal/script encoding.
1231; Some encoding cannot work as internal encoding.
1232; (e.g. SJIS, BIG5, ISO-2022-*)
1233;mbstring.internal_encoding = EUC-JP
1234
1235; http input encoding.
1236;mbstring.http_input = auto
1237
1238; http output encoding. mb_output_handler must be
1239; registered as output buffer to function
1240;mbstring.http_output = SJIS
1241
1242; enable automatic encoding translation according to
1243; mbstring.internal_encoding setting. Input chars are
1244; converted to internal encoding by setting this to On.
1245; Note: Do _not_ use automatic encoding translation for
1246;       portable libs/applications.
1247;mbstring.encoding_translation = Off
1248
1249; automatic encoding detection order.
1250; auto means
1251;mbstring.detect_order = auto
1252
1253; substitute_character used when character cannot be converted
1254; one from another
1255;mbstring.substitute_character = none;
1256
1257; overload(replace) single byte functions by mbstring functions.
1258; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
1259; etc. Possible values are 0,1,2,4 or combination of them.
1260; For example, 7 for overload everything.
1261; 0: No overload
1262; 1: Overload mail() function
1263; 2: Overload str*() functions
1264; 4: Overload ereg*() functions
1265;mbstring.func_overload = 0
1266
1267; enable strict encoding detection.
1268;mbstring.strict_encoding = Off
1269
1270[FrontBase]
1271;fbsql.allow_persistent = On
1272;fbsql.autocommit = On
1273;fbsql.show_timestamp_decimals = Off
1274;fbsql.default_database =
1275;fbsql.default_database_password =
1276;fbsql.default_host =
1277;fbsql.default_password =
1278;fbsql.default_user = "_SYSTEM"
1279;fbsql.generate_warnings = Off
1280;fbsql.max_connections = 128
1281;fbsql.max_links = 128
1282;fbsql.max_persistent = -1
1283;fbsql.max_results = 128
1284
1285[gd]
1286; Tell the jpeg decode to libjpeg warnings and try to create
1287; a gd image. The warning will then be displayed as notices
1288; disabled by default
1289;gd.jpeg_ignore_warning = 0
1290
1291[exif]
1292; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
1293; With mbstring support this will automatically be converted into the encoding
1294; given by corresponding encode setting. When empty mbstring.internal_encoding
1295; is used. For the decode settings you can distinguish between motorola and
1296; intel byte order. A decode setting cannot be empty.
1297;exif.encode_unicode = ISO-8859-15
1298;exif.decode_unicode_motorola = UCS-2BE
1299;exif.decode_unicode_intel    = UCS-2LE
1300;exif.encode_jis =
1301;exif.decode_jis_motorola = JIS
1302;exif.decode_jis_intel    = JIS
1303
1304[Tidy]
1305; The path to a default tidy configuration file to use when using tidy
1306;tidy.default_config = /usr/local/lib/php/default.tcfg
1307
1308; Should tidy clean and repair output automatically?
1309; WARNING: Do not use this option if you are generating non-html content
1310; such as dynamic images
1311tidy.clean_output = Off
1312
1313[soap]
1314; Enables or disables WSDL caching feature.
1315soap.wsdl_cache_enabled=1
1316; Sets the directory name where SOAP extension will put cache files.
1317soap.wsdl_cache_dir="/tmp"
1318; (time to live) Sets the number of second while cached file will be used
1319; instead of original one.
1320soap.wsdl_cache_ttl=86400
1321
1322; Local Variables:
1323; tab-width: 4
1324; End:
1325
1326
1327[pdo_mysql]
1328
1329pdo_mysql.default_socket=/var/run/mysql/mysql.sock
1330
Note: See TracBrowser for help on using the repository browser.