Imagemagick not working after upgrade to Omeka-s 1.2

I was thrilled with the ease of the upgrade from Omeka-s 1 to 1.2, I was thrilled that the CSS editor now works for me, I was thrilled that the CenterRow theme also updated to the latest version so I felt I had sparkling new everything until my user told me that the images don’t look right- they looked fine to me, but after she showed me what she meant, I surmise that ImageMagick somehow is not working. My imagemagick version is 6.9.9

I rebooted, just in case that would help, I did move my local.config.php as I was supposed to. See below - it looks fine and was working fine yesterday - here is a URL to see the images as they are: Click on any thumbnail
http://vrc.princeton.edu/omeka-s/s/antioch/item-set

<?php
return [
    'logger' => [
        'log' => true,
        'priority' => \Zend\Log\Logger::NOTICE,
    ],
    'http_client' => [
        'sslcapath' => null,
        'sslcafile' => null,
    ],
    'cli' => [
        'phpcli_path' => null,
    ],
    'thumbnails' => [
        'types' => [
            'large' => ['constraint' => 800],
            'medium' => ['constraint' => 200],
            'square' => ['constraint' => 200],
        ],
        'thumbnailer_options' => [
            'imagemagick_dir' => '/usr/local/bin/',
        ],
    ],
    'translator' => [
        'locale' => 'en_US',
    ],
    'service_manager' => [
        'aliases' => [
            'Omeka\File\Store' => 'Omeka\File\Store\Local',
            'Omeka\File\Thumbnailer' => 'Omeka\File\Thumbnailer\ImageMagick',
        ],
    ],
];

In terms of pasting code, there’s a button for it in the WYSIYG editor which looks like this: </>. This forum uses markdown for formatting, so you can also use the keystrokes described in the link.

So,

<?php return [ 'logger' => [ 'log' => true, 'priority' => \Zend\Log\Logger::NOTICE, ], 
'http_client' => [ 'sslcapath' => null, 'sslcafile' => null, ], 

etc

got it! At least one thing worked for me today…

1 Like

I can’t obviously see a problem there? What is the issue you’re having?