• Resolved wyclef

    (@wyclef)


    Hello, there seems to be a plugin conflict with IP Geo Block 2.2.6 and TinyMCE Templates 3.2.0 (https://wordpress.org/plugins/tinymce-templates/). When you go to access the templates you’ve added in the WYSIWIG toolbar they do not appear. If I deactivate IP Geo Block then the templates options set appear in the pop-up menu drop down.

    https://wordpress.org/plugins/ip-geo-block/

    Update: It seems if I uncheck Prevent Zero-day Exploit in the Admin Ajax/Post section it works. I can still leave block by country checked. Thoughts?

    Update2: Although I am having problems with the Bad signatures in query field now scrambling the /wp-config.php,/passwd and then giving me an unused error if i try to correct and save it. Really unclear what is going on here. I now have both Admin Ajax/Post check boxes unchecked and the Bad Signature query left scrambled because I seem unable to change it… i get the unused error.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author tokkonopapa

    (@tokkonopapa)

    Hi wyclef,

    Sorry about your trouble and thank you for your detailed info.

    Unfortunately, I can’t reproduce your situation. Please check the images in this page and let me know what I overlooked.

    If I deactivate IP Geo Block then the templates options set appear in the pop-up menu drop down.

    Sure, I should consider this fact. I guess IGB conflicts with some other plugins and those might affect to TMT.

    Update: It seems if I uncheck Prevent Zero-day Exploit in the Admin Ajax/Post section it works. I can still leave block by country checked. Thoughts?

    “Prevent Zero-day Exploit” would block a ajax request without a nonce (e.g. a scecret key) which would be added by IGB. So something might be blocked. The current limitation of this plugin is that a ajax request via jQuery works fine, but ajax via flash or something will cause this issue.

    So please check your browser whether a javascript error happens or not if you can. And I’d like to test all plugins you’re using if you let me know about them.

    Finally about the “scrambling” problem of “Bad signatures”, please correct them as /wp-config.php,/passwd and “Save changes”. I will try to improve this issue in the next release.

    Thanks you so much for your report about these issues!

    Thread Starter wyclef

    (@wyclef)

    Well, in my setup I’m using TinyMCE Templates 3.2.0 because I’m working with an older WP build. I also had disabled the Plugins and Themes area options. Would you suggest I enable all of that and then set TinyMCE Templates as an exception?

    If I try to update the Bad signatures query without checking the Admin ajax/post boxes, I get an unused error and am unable to do so. The only other plugin I could think that would maybe be causing issues here is WP Cerber, but it isn’t something I’m able to determine. If I deactivate WP Cerber I still run into problems.

    I’ve since updated TinyMCE Templates to 3.4.0. Still the same problems.

    Other plugins which could interfere are: Hide Admin Panel from Subscribers, Page Security & Membership, Peter’s Login Redirect, White Label CMS, and WP Author Slug.

    Plugin Author tokkonopapa

    (@tokkonopapa)

    Hi, I tested TinyMCE 3.4.0 and found every thing seems to be fine.

    Would you suggest I enable all of that and then set TinyMCE Templates as an exception?

    I think you don’t have to. The point is “Prevent Zero-day Exploit” for “Admin ajax/post” blocks something in your case.

    I get an unused error and am unable to do so.

    I can’t recognize “an unused error”. If IGB blocks something, then “Forbiddne” error will appear if you select 403 Forbidden as a response code. Could you check that it is same as this or could you describe more detail about it? Capturing images would be fine. I appliciate if you send me a captured image by email. You can find my address at https://github.com/tokkonopapa

    And I’ll try to test your plugins. As my investigation is ongoing, I’d like you to wait a while longer.
    (Unfortunately, my time is now at mid-night 😉

    Thanks.

    Plugin Author tokkonopapa

    (@tokkonopapa)

    Hi wyclef,

    I cound not found any issues related to this thread with all your plugins (those are latest version).

    But I have to let you know a very important notice about the plugin you’re using.

    Please contact me by email. My address can be found at https://github.com/tokkonopapa

    Thanks.

    Plugin Author tokkonopapa

    (@tokkonopapa)

    Hi Wyclef,

    Sorry for my slow investigation about this issue but I found the cause.

    Unfortunately, it depends on the version of TinyMCE itself ant TinyMCE Template. I would not disclose the version info, but please put the following snippet into your theme’s functions.php :

    function my_bypass_admins( $queries ) {
        $whitelist = array(
            'tinymce_templates',
        );
        return array_merge( $queries, $whitelist );
    }
    add_filter( 'ip-geo-block-bypass-admins', 'my_bypass_admins' );

    This solves your issue.

    Thanks.

    Thread Starter wyclef

    (@wyclef)

    As you said, this resolves the issue. Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Plugin Conflict with TinyMCE Templates 3.2.0’ is closed to new replies.