MyBB Community Forums

Full Version: iframe error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I made iframe mycode by using this tutorial. when i submit the iframe inside forum i am get the following error:

Not Acceptable!

An appropriate representation of the requested resource could not be found on this server. This error was generated by Mod_Security.



when i put following code in .htaccess i get following error:

SecFilterEngine Off

Internal Server Error 500

any solution? (i'm using MyBB 1.6.11)Default MyBB theme.
URL used in iframe code should start with the protocol http://

you can try adding below in the .htaccess
<IfModule mod_security.c>
   # Turn off mod_security filtering.
   SecFilterEngine Off

   # The below probably isn't needed, but better safe than sorry.
   SecFilterScanPOST Off
</IfModule>