• Resolved abossola

    (@abossola)


    I’m getting the error below on several sites. Might just be something I need to adjust on my end. Any ideas?

    Refused to display 'https://www.facebook.com/xti.php?xt=AZUVb7LIxfWdvSVEYxCpWZwguwC_vrOesDR6vVfXmiEVfeh8HZzNjge-EV1WfIcWPeXoNcSwHeLUmvwYevtmZUu45yj0c3CvbfE-FTtXmueDB2felrDx3qmvqPpyRHhbrz9gCmFRKJbN7_xAIoGTgRebOI2gWP4a-YNBQtCPHm73mQ&isv=1&cts=1508347484&csp' in a frame because it set 'X-Frame-Options' to 'sameorigin'.

    Thanks in advance

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter abossola

    (@abossola)

    I was able to resolve this as per this https://stackoverflow.com/questions/17092154/x-frame-options-on-apache

    Long story short, the issue was ONLY in Chrome and boils down to a setting in Apache. You can add a little snippet to the .htaccess file to compensate though.

    I added
    Header set X-Frame-Options SAMEORIGIN

    Right above

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Hope that helps others. Cheers.

    Thread Starter abossola

    (@abossola)

    Ugh, Actually I digress. That didn’t fix it. Caching got the better of me.

    Plugin Author Danish Ali Malik

    (@danish-ali)

    Hi @abossola,

    It seems like you have switched to another plugin.

    If you want to use this plugin then activate and let me know i will try to fix this problem.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Refused to display ‘https://www.facebook.com/….’ is closed to new replies.