diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-06-23 08:18:42 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-06-23 08:18:42 +0000 |
commit | 2b216967f2fa087f7cdd9e847b3eb67856423496 (patch) | |
tree | 731075d90f0aaf1429548c5182ba378f516b8455 /php.ini-recommended | |
parent | d632106e6eb5722cfea255617f913aa20939380e (diff) | |
download | php-git-2b216967f2fa087f7cdd9e847b3eb67856423496.tar.gz |
Added SOAP configuration directives
Diffstat (limited to 'php.ini-recommended')
-rw-r--r-- | php.ini-recommended | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index 76cc84ddef..8c8112e6ac 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -1182,6 +1182,15 @@ sockets.use_system_read = On ; 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 + ; Local Variables: ; tab-width: 4 ; End: |