Viewing 2 replies - 1 through 2 (of 2 total)
  • The problem is it takes over the session of other plugins that use sessions.

    I have the fix to make compatible with “Fast and Secure Contact Form”, a plugin that uses sessions for the CAPTCHA.
    https://www.ads-software.com/extend/plugins/si-contact-form/

    edit:
    inline-editor.php
    look in function InlineEditor()
    on line 49 delete: $_SESSION['ile']['filter'] = true;

    look in function init()
    on line 295 add:

    if( !isset( $_SESSION ) ) { // play nice with other plugins
        session_cache_limiter ('private, must-revalidate');
        session_start();
        }
        $_SESSION['ile']['filter'] = true;

    …also, all the PHP files should have a closing PHP tag and they don’t

    Thread Starter johnywhy

    (@johnywhy)

    Thanks a lot, Mike. You’re great!

    Seems to work ok without those closing tags… is there a possible drawback to the missing tags, aside from poor form?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Inline Editor] Favorite Plugin, But Breaks Other Plugins’ is closed to new replies.