• Hello everyone,
    my english is not goot. I am studying wordpress.
    I can’t use wp_get_image_editor function of wordpress on ubuntu server 13.04 64bit.
    emxample: checked image link
    $image = wp_get_image_editor( ‘cool_image.jpg’ );
    print_r($image);
    ==> WP_Error Object ( [errors] => Array ( [image_no_editor] => Array ( [0] => No editor could be selected. ) ) [error_data] => Array ( ) )

    After long time, I try it on ubuntu server 12.04 LTS 64bit and it has a surprice, this function run normally. And I think wordpress has problem on ubuntu server 13.04. some plugin has error: Strict Standards…. However, this error only is in ubuntu server 13.04
    I need help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to install the GD graphics library and/or Imagick on Ubuntu for the image editor to work.

    Run this:
    sudo apt-get update
    sudo apt-get install php5-imagick php5-gd
    service apache2 restart

    Thread Starter minple

    (@minple)

    Thanks very much, sorry because reply late.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wp_get_image_editor isnot active’ is closed to new replies.