PhpMyAdmin allows iframe access

How to allow access to my phpMyAdmin using iframe? I tried to delete cross_framing_protection.js, no changes.

Using this simple iframe code

<iframe src="http://somedomain.com/phpMyAdmin/"></iframe>
+4
source share
1 answer

Just add this line to your config.inc.php file:

$cfg['AllowThirdPartyFraming'] = true;
+6
source

Source: https://habr.com/ru/post/1537228/


All Articles