Skip to content

WHMCS + 365

Hi all, Has anyone managed to get 365 SMTP to function within WHMCS? Always getting authentication failed. Thanks… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1875447&goto=newpost

Magento 2 Cookie not able to clear from JS

I am unable to clear the cookie on my Magento site. I am setting the cookie as below which is done successfully use MagentoFrameworkStdlibCookieCookieMetadataFactory; use MagentoFrameworkStdlibCookieManagerInterface; $publicCookieMetadata = $this->cookieMetadataFactory->createPublicCookieMetadata(); $publicCookieMetadata->setPath(‘/’); $publicCookieMetadata->setHttpOnly(false); $publicCookieMetadata->setSameSite(‘Strict’); $this->cookieManager->setPublicCookie( self::COOKIE_NAME, 1, $publicCookieMetadata ); After that, I… Read More »Magento 2 Cookie not able to clear from JS