Iframe Panel Cannot Display Any External URL (Always Blank)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • erelemirhan_14
    Junior Member
    • Nov 2025
    • 2

    #1

    Iframe Panel Cannot Display Any External URL (Always Blank)

    I’m trying to use the iframe panel in EspoCRM, but no external URL is displayed — every link (including public sites like Google or my own dashboard test page) shows a blank screen. It looks like something (maybe X-Frame-Options or CSP) is blocking all external embedding. How can I allow external URLs to be displayed inside the iframe panel?
  • victor
    Active Community Member
    • Aug 2022
    • 1055

    #2
    It looks like in /data/config.php you should add your domain to iframeSandboxExcludeDomainList.

    HTML Code:
      'iframeSandboxExcludeDomainList' => [
        'google.com',
        'domain.com',
        'my.domain.com'
      ],
    ​A similar topic was discussed here: https://forum.espocrm.com/forum/gene...lem-bug-or-not.

    Comment

    Working...