Viewing 3 replies - 1 through 3 (of 3 total)
  • I have the same problem.
    It’s a bug in the plugin. The ajax call uses the action “id_load_meta_box”. But this action isn’t hooked to wp_ajax, it doesn’t exists.

    But here’s a patch:
    – open ImageDrop.php in the plugin folder,
    – line 95: you have 5 add_action( … ), add this one : add_action( 'wp_ajax_id_load_meta_box', array($this, 'meta_box') );
    – line 445: right after require "pages/meta_box.php";, add :

    if (isset($_POST['action']) && $_POST['action'] == 'id_load_meta_box')
    	die();

    That’s all.

    A fix to this bug is on the way as soon as the plugin repository accepts my code.

    Plugin Author montania

    (@montania)

    Should be fixed in the latest version

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: ImageDrop] refresh problem’ is closed to new replies.