diff options
| -rw-r--r-- | php.ini-dist | 9 | ||||
| -rw-r--r-- | php.ini-recommended | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist index 54c311d32e..9154cbf082 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -1168,6 +1168,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: 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: |
