Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Marko Vasiljevic

    (@vmarko)

    Hello @mystweb

    Thank you for reaching out and I am happy to help!

    Have you had any rules added before to script-src: in the W3 Total Cache? Does the issue persist if you disable Browser Caching?

    If the issue still persist pelase check your .htaccess/nginx.conf for any custom security headers rules. Also check if you are using Cloudflare if it’s set there.

    Change from:

    script-src ‘self’ ‘unsafe-inline’ ‘unsafe-eval’

    To:

    script-src ‘self’ ‘unsafe-inline’ ‘unsafe-eval’ https://cdn.trustindex.io

    That’s it.

    You do NOT need to touch script-src-elem unless it exists separately.

    If you DO have:

    script-src-elem …

    Then update it too:

    script-src-elem ‘self’ https://cdn.trustindex.io

    Content-Security-Policy:
    default-src ‘self’;
    script-src ‘self’ ‘unsafe-inline’ ‘unsafe-eval’ https://cdn.trustindex.io;

    Let me know if this helps!

    Thanks!

    Thread Starter mystweb

    (@mystweb)

    Fine, it’s works.

    Thanks you

    Plugin Contributor Marko Vasiljevic

    (@vmarko)

    Hello @mystweb

    You are most welcome!
    We would really appreciate it if you could take a minute and post a review here. This will help us to continue offering a top-notch product to users.
    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.