Tuesday, November 11, 2014

How to enable SOAP, SSL , cURL, OpenSSL in PHP

Open PHP.ini file in our PHP directory

SOAP Enabled

extension=php_soap.dll
[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
; Sets the size of the cache limit. (Max. number of WSDL files to cache)
soap.wsdl_cache_limit = 5

OpenSSL Enabled

      extension=php_openssl.dll 

cURL enable

extension=php_curl.dll



No comments:

Post a Comment