• I was wondering if you could help.

    On selecting a folder to start organising media files a script error appears to occur with the following displayed;

    SyntaxError: JSON.parse: unexpected character
    Warning: array_key_exists() expects parameter 2 to be array, string given in /homepages/0/xxxxxx/xxxxx/xxxxx/wp-content/plugins/media-file-manager/media-relocator.php on line 211

    Warning: array_key_exists() expects parameter 2 to be array, string given in /homepages/0/xxxxxx/xxxxx/xxxxx/wp-content/plugins/media-file-manager/media-relocator.php on line 211

    Warning: array_key_exists() expects parameter 2 to be array, string given in /homepages/0/xxxxxx/xxxxx/xxxxx/wp-content/plugins/media-file-manager/media-relocator.php on line 211

    Warning: array_key_exists() expects parameter 2 to be array, string given in /homepages/0/xxxxxx/xxxxx/xxxxx/wp-content/plugins/media-file-manager/media-relocator.php on line 211

    Can you point out what needs to be changed to resolve this problem, as I cannot use Media File Manager.

    http://wordpress.org/extend/plugins/media-file-manager/

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi
    I’m having the exact same problem. It’s only occurring on the latest monthly folder, I tried using Media File Manager Advanced & it throws up the same error. Turned off all other plugins & only using twenty-twelve & eleven themes – no luck

    Plugin Author aueda

    (@aueda)

    Can you provide me a list of filenames in the problematic folder?

    Plugin Author aueda

    (@aueda)

    Would you please do the following test?

    (1)Download the latest test version of plugin and install it:
    http://tempspace.net/plugins/media-file-manager_test_130822.zip

    (2)Download the log file.
    (Settings -> Media-file-manager -> Download Log

    (3)Send me the log file (orguezzr at gmail dot com)

    Is this problem already solved? I’m having the same problem over here =(. I’m using WordPress version 3.6.1. by the way.

    @stef Dijkstra: As per the Forum Welcome, please post your own topic.

    Plugin Author aueda

    (@aueda)

    I understand that many people are struggling with this kind of problem, but I cannot reproduce the problem. If you’ll provide temporary account for me, I’ll be able to fix the problem relatively easily.

    I’ve fixed the problem for myself. I’ve changed the $res variable on line 252.

    I’ve changed the following code:
    $res = wp_get_attachment_metadata($dbres[0]->post_id);

    to:
    $res = array(wp_get_attachment_metadata($dbres[0]->post_id));

    Now it works for me!

    Same problem- where are you changing the code on line 252:

    from: $res = wp_get_attachment_metadata($dbres[0]->post_id);
    to:
    $res = array(wp_get_attachment_metadata($dbres[0]->post_id));

    What file is it in – please

    Went to plugins- selected “Media File Manager” then edit.

    did a find (ctrl F) searched for “wp_get_attachment”

    added array( …………….);

    and it goes.

    This may happen particularly to people using a theme that generates multiple resolutions of the same single media import (just a guess.)

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Selecting folder shows up plugin error’ is closed to new replies.