• Resolved bojar.l

    (@bojarl)


    Hi,

    I have reinstalled my wordpress and I have problem with permissions to files which were working perfect before.
    When I am trying to add inage to slide I get info:

    meta slider ERROR Wand contains no images `MagickWand-2′ Check file permissions.

    As I said on my second instance of WP the same files works just perfect. what might be the problem ?

    Regards,
    Lukasz Bojar

    http://wordpress.org/plugins/ml-slider/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    I’m not sure what that is really, could you try adding this to your themes functions.php file? It should tell WordPress to use GD instead of ImageMagick for image processing.

    function make_gd_default_image_editor($editors) {
        return array('WP_Image_Editor_GD','WP_Image_Editor_Imagick');
    }
    add_filter('wp_image_editors', 'make_gd_default_image_editor');

    Regards,
    Tom

    Thread Starter bojar.l

    (@bojarl)

    Are you sure this code is correct ? Maybe I should add something before or after ?
    When I’m tryin to update the file i get:

    Parse error: syntax error, unexpected ‘}’, expecting T_STRING or T_VARIABLE or ‘$’ in /…/functions.php on line 46

    Hi, yes it looks ok to me.

    Could you check the single quotes are being pasted correctly (not being converted to curly ones) and that you’re adding it right to the bottom of the file, just above “?>”

    Regards,
    Tom

    Thread Starter bojar.l

    (@bojarl)

    Works just perfect ! 🙂
    There was problem with pasting it with single quotes.

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Permission problem’ is closed to new replies.