3,13d2 < ;;;;;;;;;;; < ; WARNING ; < ;;;;;;;;;;; < ; This is the default settings file for new PHP installations. < ; By default, PHP installs itself with a configuration suitable for < ; development purposes, and *NOT* for production purposes. < ; For several security-oriented considerations that should be taken < ; before going online with your site, please consult php.ini-recommended < ; and http://php.net/manual/en/security.php. < < 15c4 < ; About this file ; --- > ; About php.ini ; 56a46 > ; 58,60c48,110 < ; All the values in the php.ini-dist file correspond to the builtin < ; defaults (that is, if no php.ini is used, or if you delete these lines, < ; the builtin defaults will be identical). --- > ;;;;;;;;;;;;;;;;;;; > ; About this file ; > ;;;;;;;;;;;;;;;;;;; > ; This is the recommended, PHP 5-style version of the php.ini-dist file. It > ; sets some non standard settings, that make PHP more efficient, more secure, > ; and encourage cleaner coding. > ; > ; The price is that with these settings, PHP may be incompatible with some > ; applications, and sometimes, more difficult to develop with. Using this > ; file is warmly recommended for production sites. As all of the changes from > ; the standard settings are thoroughly documented, you can go over each one, > ; and decide whether you want to use it or not. > ; > ; For general information about the php.ini file, please consult the php.ini-dist > ; file, included in your PHP distribution. > ; > ; This file is different from the php.ini-dist file in the fact that it features > ; different values for several directives, in order to improve performance, while > ; possibly breaking compatibility with the standard out-of-the-box behavior of > ; PHP. Please make sure you read what's different, and modify your scripts > ; accordingly, if you decide to use this file instead. > ; > ; - register_long_arrays = Off [Performance] > ; Disables registration of the older (and deprecated) long predefined array > ; variables ($HTTP_*_VARS). Instead, use the superglobals that were > ; introduced in PHP 4.1.0 > ; - display_errors = Off [Security] > ; With this directive set to off, errors that occur during the execution of > ; scripts will no longer be displayed as a part of the script output, and thus, > ; will no longer be exposed to remote users. With some errors, the error message > ; content may expose information about your script, web server, or database > ; server that may be exploitable for hacking. Production sites should have this > ; directive set to off. > ; - log_errors = On [Security] > ; This directive complements the above one. Any errors that occur during the > ; execution of your script will be logged (typically, to your server's error log, > ; but can be configured in several ways). Along with setting display_errors to off, > ; this setup gives you the ability to fully understand what may have gone wrong, > ; without exposing any sensitive information to remote users. > ; - output_buffering = 4096 [Performance] > ; Set a 4KB output buffer. Enabling output buffering typically results in less > ; writes, and sometimes less packets sent on the wire, which can often lead to > ; better performance. The gain this directive actually yields greatly depends > ; on which Web server you're working with, and what kind of scripts you're using. > ; - register_argc_argv = Off [Performance] > ; Disables registration of the somewhat redundant $argv and $argc global > ; variables. > ; - magic_quotes_gpc = Off [Performance] > ; Input data is no longer escaped with slashes so that it can be sent into > ; SQL databases without further manipulation. Instead, you should use the > ; function addslashes() on each input element you wish to send to a database. > ; - variables_order = "GPCS" [Performance] > ; The environment variables are not hashed into the $_ENV. To access > ; environment variables, you can use getenv() instead. > ; - error_reporting = E_ALL [Code Cleanliness, Security(?)] > ; By default, PHP suppresses errors of type E_NOTICE. These error messages > ; are emitted for non-critical errors, but that could be a symptom of a bigger > ; problem. Most notably, this will cause error messages about the use > ; of uninitialized variables to be displayed. > ; - allow_call_time_pass_reference = Off [Code cleanliness] > ; It's not possible to decide to force a variable to be passed by reference > ; when calling a function. The PHP 4 style to do this is by making the > ; function require the relevant argument by reference. 62d111 < 70c119,122 < ; Allow the tags are recognized. --- > ; Enable compatibility mode with Zend Engine 1 (PHP 4.x) > zend.ze1_compatibility_mode = Off > > ; Allow the tags are recognized. 75a128,129 > ;short_open_tag = Off > ; Alex - we have such in faq/*.php3 files 82,84c136 < ;precision = 12 < ; sasha < precision = 12 --- > precision = 14 88,89d139 < ; sasha < ;y2k_compliance = Off 98c148 < output_buffering = Off --- > output_buffering = 4096 106c156 < ; Using this ini directive may cause problems unless you know what script --- > ; Using this ini directive may cause problems unless you know what script 109c159,161 < ; and you cannot use both "ob_gzhandler" and "zlib.output_compression". --- > ; and you cannot use both "ob_gzhandler" and "zlib.output_compression". > ; Note: output_handler must be empty if this is set 'On' !!!! > ; Instead you must use zlib.output_handler. 115,117c167,169 < ; Note: Resulting chunk size may vary due to nature of compression. PHP < ; outputs chunks that are few hundreds bytes each as a result of < ; compression. If you prefer a larger chunk size for better --- > ; Note: Resulting chunk size may vary due to nature of compression. PHP > ; outputs chunks that are few hundreds bytes each as a result of > ; compression. If you prefer a larger chunk size for better 121a174 > ;zlib.output_compression_level = -1 135c188 < ; The unserialize callback function will called (with the undefind class' --- > ; The unserialize callback function will be called (with the undefined class' 137c190 < ; which should be instanciated. --- > ; which should be instantiated. 140c193 < ; So only set this entry, if you really want to implement such a --- > ; So only set this entry, if you really want to implement such a 158c211 < allow_call_time_pass_reference = On --- > allow_call_time_pass_reference = Off 159a213 > ; 173c227 < safe_mode_include_dir = --- > safe_mode_include_dir = 211c265 < ; would work. --- > ; would work. 218a273,276 > ; If enabled, the request will be allowed to complete even if the user aborts > ; the request. Consider enabling it if executing long request, which may end up > ; being interrupted by the user or a browser timing out. > ; ignore_user_abort = On 219a278,287 > ; Determines the size of the realpath cache to be used by PHP. This value should > ; be increased on systems where PHP opens many files to reflect the quantity of > ; the file operations performed. > ; realpath_cache_size=16k > > ; Duration of time, in seconds for which to cache realpath information for a given > ; file or directory. For systems with rarely changing files, consider increasing this > ; value. > ; realpath_cache_ttl=120 > 234,235d301 < max_execution_time = 1200 ; Maximum execution time of each script, in seconds < ;max_execution_time = 3600 ; Maximum execution time of each script, in seconds 236a303,304 > ; Alex > max_execution_time = 1200 238c306 < memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) --- > memory_limit = 128M ; Maximum amount of memory a script may consume (128MB) 239a308 > 246c315 < ; E_ALL - All errors and warnings --- > ; E_ALL - All errors and warnings (doesn't include E_STRICT) 247a317 > ; E_RECOVERABLE_ERROR - almost fatal run-time errors 254a325,327 > ; E_STRICT - run-time notices, enable to have PHP suggest changes > ; to your code which will ensure the best interoperability > ; and forward compatibility of your code 266c339 < ; - Show all errors, except for notices --- > ; - Show all errors, except for notices and coding standards warnings 269a343,346 > ; - Show all errors, except for notices > ; > ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT > ; 272c349 < ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR --- > ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR 274c351 < ; - Show all errors except for notices --- > ; - Show all errors, except coding standards warnings 276c353 < error_reporting = E_ALL & ~E_NOTICE --- > error_reporting = E_ALL 283c360 < display_errorr = On --- > display_errors = Off 293c370 < log_errors = Off --- > log_errors = On 303c380 < ; Ignore source of message when ignoring repeated messages. When this setting --- > ; Ignore source of message when ignoring repeated messages. When this setting 305c382 < ; sourcelines. --- > ; source lines. 309c386 < ; stdout or in the log). This has only effect in a debug compile, and if --- > ; stdout or in the log). This has only effect in a debug compile, and if 312a390,391 > ;report_zend_debug = 0 > 316a396 > ; Note: Never use this feature for production boxes. 318,319c398,399 < < ; If html_errors is set On PHP produces clickable error messages that direct --- > > ; If html_errors is set On PHP produces clickable error messages that direct 321c401 < ; You can download a copy of the PHP manual from http://www.php.net/docs.php --- > ; You can download a copy of the PHP manual from http://www.php.net/docs.php 323c403 < ; leading '/'. You must also specify the file extension being used including --- > ; leading '/'. You must also specify the file extension being used including 324a405 > ; Note: Never use this feature for production boxes. 327c408 < --- > 348c429 < ; Default is "&". --- > ; Default is "&". 352c433 < ; Default is "&". --- > ; Default is "&". 360c441 < variables_order = "EGPCS" --- > variables_order = "GPCS" 371,373c452 < ;register_globals = Off < ; sasha < register_globals = On --- > register_globals = Off 374a454,458 > ; Whether or not to register the old-style input arrays, HTTP_GET_VARS > ; and friends. If you're not using them, it's recommended to turn them off, > ; for performance reasons. > register_long_arrays = Off > 378c462 < register_argc_argv = On --- > register_argc_argv = Off 379a464,470 > ; When enabled, the SERVER and ENV variables are created when they're first > ; used (Just In Time) instead of when the script starts. If these variables > ; are not used within a script, having this directive on will result in a > ; performance gain. The PHP directives register_globals, register_long_arrays, > ; and register_argc_argv must be disabled for this directive to have any affect. > auto_globals_jit = On > 383,385d473 < ; This directive is deprecated. Use variables_order instead. < gpc_order = "GPC" < 390c478 < magic_quotes_gpc = On --- > magic_quotes_gpc = Off 393c481 < magic_quotes_runtime = Off --- > magic_quotes_runtime = Off 418c506 < ; UNIX: "/path1:/path2" --- > ; UNIX: "/path1:/path2" 449c537,541 < ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape --- > ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with > ; every request. > ; cgi.nph = 1 > > ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape 455,462d546 < ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's < ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok < ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting < ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting < ; of zero causes PHP to behave as before. Default is zero. You should fix your scripts < ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. < ; cgi.fix_pathinfo=0 < 469a554,556 > ; Disable logging through FastCGI connection > ; fastcgi.log = 0 > 475,476c562 < ;cgi.rfc2616_headers = 0 < --- > ;cgi.rfc2616_headers = 0 477a564 > 487c574 < ;upload_tmp_dir = /tmp --- > ;upload_tmp_dir = 490d576 < upload_max_filesize = 128M 491a578,579 > ; Alex > upload_max_filesize = 128M 493d580 < 500a588,590 > ; Whether to allow include/require to open URLs (like http:// or ftp://) as files. > allow_url_include = Off > 535c625 < ; Note that it should be the name of the module only; no directory information --- > ; Note that it should be the name of the module only; no directory information 540,542c630,635 < ;Windows Extensions < ;Note that MySQL and ODBC support is now built in, so no dll is needed for it. < ; --- > ; Windows Extensions > ; Note that ODBC support is built in, so no dll is needed for it. > ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5) > ; extension folders as well as the separate PECL DLL download (PHP 5). > ; Be sure to appropriately set the extension_dir directive. > 544,545d636 < ;extension=php_cpdf.dll < ;extension=php_crack.dll 547d637 < ;extension=php_db.dll 550,551d639 < ;extension=php_dbx.dll < ;extension=php_domxml.dll 554d641 < ;extension=php_filepro.dll 557,558c644 < ;extension=php_hyperwave.dll < ;extension=php_iconv.dll --- > ;extension=php_gmp.dll 560d645 < ;extension=php_iisfunc.dll 563d647 < ;extension=php_java.dll 570d653 < ;extension=php_mssql.dll 571a655,657 > ;extension=php_mssql.dll > ;extension=php_mysql.dll > ;extension=php_mysqli.dll 574,575c660,668 < ;extension=php_oracle.dll < ;extension=php_pdf.dll --- > ;extension=php_pdo.dll > ;extension=php_pdo_firebird.dll > ;extension=php_pdo_mssql.dll > ;extension=php_pdo_mysql.dll > ;extension=php_pdo_oci.dll > ;extension=php_pdo_oci8.dll > ;extension=php_pdo_odbc.dll > ;extension=php_pdo_pgsql.dll > ;extension=php_pdo_sqlite.dll 577c670 < ;extension=php_printer.dll --- > ;extension=php_pspell.dll 579a673 > ;extension=php_soap.dll 580a675 > ;extension=php_sqlite.dll 582c677 < ;extension=php_w32api.dll --- > ;extension=php_tidy.dll 584,585c679 < ;extension=php_xslt.dll < ;extension=php_yaz.dll --- > ;extension=php_xsl.dll 588d681 < 592a686,715 > [Date] > ; Defines the default timezone used by the date functions > ;date.timezone = > > ;date.default_latitude = 31.7667 > ;date.default_longitude = 35.2333 > > ;date.sunrise_zenith = 90.583333 > ;date.sunset_zenith = 90.583333 > > [filter] > ;filter.default = unsafe_raw > ;filter.default_flags = > > [iconv] > ;iconv.input_encoding = ISO-8859-1 > ;iconv.internal_encoding = ISO-8859-1 > ;iconv.output_encoding = ISO-8859-1 > > [sqlite] > ;sqlite.assoc_case = 0 > > [xmlrpc] > ;xmlrpc_error_number = 0 > ;xmlrpc_errors = 0 > > [Pcre] > ;pcre.recursion_limit=100000 > ;pcre.backtrack_limit=100000 > 601a725 > smtp_port = 25 609,613c733,736 < [Java] < ;java.class.path = .\php_java.jar < ;java.home = c:\jdk < ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll < ;java.library.path = .\ --- > ; Force the addition of the specified parameters to be passed as extra parameters > ; to the sendmail binary. These parameters will always replace the value of > ; the 5th parameter to mail(), even in safe mode. > ;mail.force_extra_parameters = 633c756 < odbc.max_links = -1 --- > odbc.max_links = -1 637c760 < odbc.defaultlrl = 4096 --- > odbc.defaultlrl = 4096 642c765 < odbc.defaultbinmode = 1 --- > odbc.defaultbinmode = 1 677c800 < ; Maximum time (in secondes) for connect timeout. -1 means no limimt --- > ; Maximum time (in seconds) for connect timeout. -1 means no limit 681c804 < ; SQL-Erros will be displayed. --- > ; SQL-Errors will be displayed. 683a807,837 > [MySQLi] > > ; Maximum number of links. -1 means no limit. > mysqli.max_links = -1 > > ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use > ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the > ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look > ; at MYSQL_PORT. > mysqli.default_port = 3306 > > ; Default socket name for local MySQL connects. If empty, uses the built-in > ; MySQL defaults. > mysqli.default_socket = > > ; Default host for mysql_connect() (doesn't apply in safe mode). > mysqli.default_host = > > ; Default user for mysql_connect() (doesn't apply in safe mode). > mysqli.default_user = > > ; Default password for mysqli_connect() (doesn't apply in safe mode). > ; Note that this is generally a *bad* idea to store passwords in this file. > ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") > ; and reveal this password! And of course, any users with read access to this > ; file will be able to reveal the password as well. > mysqli.default_pw = > > ; Allow or prevent reconnect > mysqli.reconnect = Off > 693a848,878 > [OCI8] > ; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA) > ;oci8.privileged_connect = Off > > ; Connection: The maximum number of persistent OCI8 connections per > ; process. Using -1 means no limit. > ;oci8.max_persistent = -1 > > ; Connection: The maximum number of seconds a process is allowed to > ; maintain an idle persistent connection. Using -1 means idle > ; persistent connections will be maintained forever. > ;oci8.persistent_timeout = -1 > > ; Connection: The number of seconds that must pass before issuing a > ; ping during oci_pconnect() to check the connection validity. When > ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables > ; pings completely. > ;oci8.ping_interval = 60 > > ; Tuning: This option enables statement caching, and specifies how > ; many statements to cache. Using 0 disables statement caching. > ;oci8.statement_cache_size = 20 > > ; Tuning: Enables statement prefetching and sets the default number of > ; rows that will be fetched automatically after statement execution. > ;oci8.default_prefetch = 10 > > ; Compatibility. Using On means oci_close() will not close > ; oci_connect() and oci_new_connect() connections. > ;oci8.old_oci_close_semantics = Off > 698,699c883,885 < ; Detect broken persistent links always with pg_pconnect(). Need a little overhead. < pgsql.auto_reset_persistent = Off --- > ; Detect broken persistent links always with pg_pconnect(). > ; Auto reset feature requires a little overheads. > pgsql.auto_reset_persistent = Off 707a894 > ; Notice message logging require a little overheads. 732c919 < ; Compatability mode with old versions of PHP 3.0. --- > ; Compatibility mode with old versions of PHP 3.0. 735c922 < ; compatability mode will probably not stay around forever, so try applying --- > ; compatibility mode will probably not stay around forever, so try applying 755,764d941 < [dbx] < ; returned column names can be converted for compatibility reasons < ; possible values for dbx.colnames_case are < ; "unchanged" (default, if not set) < ; "lowercase" < ; "uppercase" < ; the recommended default is either upper- or lowercase, but < ; unchanged is currently set for backwards compatibility < dbx.colnames_case = "unchanged" < 814c991 < ; where data files are stored. Note: Windows users have to change this --- > ; where data files are stored. Note: Windows users have to change this 815a993 > ; 816a995 > ; 818,821c997,1001 < ; where N is an integer. Instead of storing all the session files in < ; /path, what this will do is use subdirectories N-levels deep, and < ; store the session data in those directories. This is useful if you < ; or your OS have problems with lots of files in one directory, and is --- > ; > ; where N is an integer. Instead of storing all the session files in > ; /path, what this will do is use subdirectories N-levels deep, and > ; store the session data in those directories. This is useful if you > ; or your OS have problems with lots of files in one directory, and is 822a1003 > ; 827c1008,1016 < session.save_path = /tmp --- > ; > ; The file storage module creates files using mode 600 by default. > ; You can change that by using > ; > ; session.save_path = "N;MODE;/path" > ; > ; where MODE is the octal representation of the mode. Note that this > ; does not overwrite the process's umask. > ;session.save_path = "/tmp" 831a1021,1022 > ;session.cookie_secure = > 850a1042,1044 > ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript. > session.cookie_httponly = > 861c1055 < session.gc_divisor = 100 --- > session.gc_divisor = 1000 869,870c1063,1064 < ; happen automatically. You will need to do your own garbage < ; collection through a shell script, cron entry, or some other method. --- > ; happen automatically. You will need to do your own garbage > ; collection through a shell script, cron entry, or some other method. 878c1072 < ; You can disable the feature and the warning seperately. At this time, --- > ; You can disable the feature and the warning separately. At this time, 881c1075 < session.bug_compat_42 = 1 --- > session.bug_compat_42 = 0 907c1101 < ; Use of trans sid may risk your users security. --- > ; Use of trans sid may risk your users security. 916a1111,1123 > ; Select a hash function > ; 0: MD5 (128 bits) > ; 1: SHA-1 (160 bits) > session.hash_function = 0 > > ; Define how many bits are stored in each character when converting > ; the binary hash data to something readable. > ; > ; 4 bits: 0-9, a-f > ; 5 bits: 0-9, a-v > ; 6 bits: 0-9, a-z, A-Z, "-", "," > session.hash_bits_per_character = 5 > 922c1129 < url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset=" --- > url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" 940c1147 < ; Compatability mode with old versions of PHP 3.0. --- > ; Compatibility mode with old versions of PHP 3.0. 943c1150 < ; Connec timeout --- > ; Connect timeout 966,967c1173,1176 < ; Specify max number of processes. Default = 25 < ;mssql.max_procs = 25 --- > ; Specify max number of processes. -1 = library default > ; msdlib defaults to 25 > ; FreeTDS defaults to 4096 > ;mssql.max_procs = -1 968a1178,1182 > ; Specify client character set. > ; If empty or not set the client charset from freetds.comf is used > ; This is only used when compiled with FreeTDS > ;mssql.charset = "ISO-8859-1" > 986,1031c1200 < [Ingres II] < ; Allow or prevent persistent links. < ingres.allow_persistent = On < < ; Maximum number of persistent links. -1 means no limit. < ingres.max_persistent = -1 < < ; Maximum number of links, including persistents. -1 means no limit. < ingres.max_links = -1 < < ; Default database (format: [node_id::]dbname[/srv_class]). < ingres.default_database = < < ; Default user. < ingres.default_user = < < ; Default password. < ingres.default_password = < < [Verisign Payflow Pro] < ; Default Payflow Pro server. < pfpro.defaulthost = "test-payflow.verisign.com" < < ; Default port to connect to. < pfpro.defaultport = 443 < < ; Default timeout in seconds. < pfpro.defaulttimeout = 30 < < ; Default proxy IP address (if required). < ;pfpro.proxyaddress = < < ; Default proxy port. < ;pfpro.proxyport = < < ; Default proxy logon. < ;pfpro.proxylogon = < < ; Default proxy password. < ;pfpro.proxypassword = < < [Sockets] < ; Use the system read() function instead of the php_read() wrapper. < sockets.use_system_read = On < < [com] --- > [COM] 1033c1202 < ;com.typelib_file = --- > ;com.typelib_file = 1040c1209 < ; show warnings on duplicate constat registrations --- > ; show warnings on duplicate constant registrations 1043,1045d1211 < [Printer] < ;printer.default_printer = "" < 1062c1228 < ; enable automatic encoding translation accoding to --- > ; enable automatic encoding translation according to 1070c1236 < ; auto means --- > ; auto means 1086a1253,1255 > ; enable strict encoding detection. > ;mbstring.strict_encoding = Off > 1090c1259,1260 < ;fbsql.default_database = --- > ;fbsql.show_timestamp_decimals = Off > ;fbsql.default_database = 1100d1269 < ;fbsql.batchSize = 1000 1102,1105c1271,1275 < [Crack] < ; Modify the setting below to match the directory location of the cracklib < ; dictionary files. Include the base filename, but not the file extension. < ; crack.default_dictionary = "c:\php\lib\cracklib_dict" --- > [gd] > ; Tell the jpeg decode to libjpeg warnings and try to create > ; a gd image. The warning will then be displayed as notices > ; disabled by default > ;gd.jpeg_ignore_warning = 0 1108c1278 < ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. --- > ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. 1110,1111c1280,1281 < ; given by corresponding encode setting. When empty mbstring.internal_encoding < ; is used. For the decode settings you can distinguish between motorola and --- > ; given by corresponding encode setting. When empty mbstring.internal_encoding > ; is used. For the decode settings you can distinguish between motorola and 1116c1286 < ;exif.encode_jis = --- > ;exif.encode_jis = 1119a1290,1307 > [Tidy] > ; The path to a default tidy configuration file to use when using tidy > ;tidy.default_config = /usr/local/lib/php/default.tcfg > > ; Should tidy clean and repair output automatically? > ; WARNING: Do not use this option if you are generating non-html content > ; such as dynamic images > tidy.clean_output = Off > > [soap] > ; Enables or disables WSDL caching feature. > soap.wsdl_cache_enabled=1 > ; Sets the directory name where SOAP extension will put cache files. > soap.wsdl_cache_dir="/tmp" > ; (time to live) Sets the number of second while cached file will be used > ; instead of original one. > soap.wsdl_cache_ttl=86400 >