Patch for ERR_BLOCKED_BY_XSS_AUDITOR
If you are browsing your SocialEngine PHP website on Chrome 57 then, you might face this error "ERR_BLOCKED_BY_XSS_AUDITOR Error" when working with editor part of the website. The XSS auditor is blocking the requests containing some HTML-formatted content because of which this error is occurring.
To resolve this error on your SocialEngine PHP website, you can apply the below patch:
• Go to: application/libraries/Engine/Controller/Action.php
• Add the below method here:
public function preDispatch()
{
parent::preDispatch();
$this->getResponse()->setHeader('X-XSS-Protection', 0);
}
This patch will fix the issue.
In a case of any queries, please Contact Us.