For example, you can increase soap.wsdl_cache_ttl from 24 hours to 1 month by changing its value from 86400 to 2592000.
Please refer to path below, to edit the cache time :
-> Open php.ini and look for below entries :
[soap]
; Enables or disables WSDL caching feature.
; http://php.net/soap.wsdl-cache-enabled
soap.wsdl_cache_enabled=1
; Sets the directory name where SOAP extension will put cache files.
; http://php.net/soap.wsdl-cache-dir
soap.wsdl_cache_dir="/tmp"
; (time to live) Sets the number of second while cached file will be used
; instead of original one.
; http://php.net/soap.wsdl-cache-ttl
soap.wsdl_cache_ttl=86400 (This represents the cache time and can be tried to increase, please put in time in seconds)
No comments:
Post a Comment