You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
$cfg['AllowThirdPartyFraming'] is set to TRUE/FALSE only. I think it's a kinda limitation, because we should be able to set the intermediate value 'SAMEORIGIN' (as mentioned here )
at this moment, PMA uses this code:
if (! $GLOBALS['cfg']['AllowThirdPartyFraming']) {
header(
'X-Frame-Options: DENY'
);
}
so, you should allow to use also 'SAMEORIGIN' value
The text was updated successfully, but these errors were encountered:
$cfg['AllowThirdPartyFraming']
is set to TRUE/FALSE only. I think it's a kinda limitation, because we should be able to set the intermediate value 'SAMEORIGIN' (as mentioned here )at this moment, PMA uses this code:
so, you should allow to use also 'SAMEORIGIN' value
The text was updated successfully, but these errors were encountered: