Bidyut
Bidyut

Reputation: 541

soap.wsdl_cache_enabled

I want to set value of soap.wsdl_cache_enabled = 0 in php.ini, but do not get any option in ini.

How to change it?

I have a WordPress plugin which gets data form a webservice, I have deleted the WSDL file but it is working, is it taking from cache?

Upvotes: 3

Views: 14218

Answers (3)

Zakaria
Zakaria

Reputation: 76

Try this in you php file

ini_set("soap.wsdl_cache_enabled", 0);

Upvotes: 1

satty
satty

Reputation: 11

Write this in your php.ini file if it is not there:

soap.wsdl_cache_enabled=0. It should disable the cache.

Upvotes: 1

Vlad Preda
Vlad Preda

Reputation: 9920

Try this in your config file:

ini_set('soap.wsdl_cache_enabled', '0'); 
ini_set('soap.wsdl_cache_ttl', '0'); 

Upvotes: 4

Related Questions