Layered Popups with mailwizz integration

Erollflint

New Member
Hi there,
Im using layered popups plugin on one wordpress install. There is with this plugin a mailwizz integration. With the latest release of this plugin (6.42), i can't connect the list on mailwizz (1.6.3) trough Api. After setting mailwizz install api url, public and private api key, it is impossible to enter the list ID into the plugin settings. I get the following message instead:
CHttpSession and its behaviors do not have a method or closure named “setCacheLimiter”.
see screenshot https://paste.pics/39162aef526c4f36409336fd0b359ff1

If i rollback to the previous version of the plugin, everything's works fine.
The plugin owner say that it should works .

Edit:
i found this into the mailwizz application log:
[error] [exception.CException] [185.18.9.154] exception 'CException' with message 'CHttpSession and its behaviors do not have a method or closure named "setCacheLimiter".' in /data/sites/web/xxxxx/www/xxxx/apps/common/framework/yiilite.php:714

Anyone know what this message mean in this case ?

Thanks
Eroll
 
Last edited:
Actually CHttpSession does have that method.
if you open /apps/common/framework/web/CHttpSession.php can you see at the end of the file:
PHP:
/**
* Set cache limiter
*
* @param string $cacheLimiter
* @since 1.1.20
*/
public function setCacheLimiter($cacheLimiter)
{
   $this->freeze();
   session_cache_limiter($cacheLimiter);
   $this->unfreeze();
}
?
 
Back
Top