We have a case (52938) opened about that issue. Please try the following:
Code:
vi /scripts/checkimagemagick
In that file change this line:
Code:
my $maxmem = ( 128 * ( 1024 * 1024 ) );
To this:
Code:
my $maxmem = ( 256 * ( 1024 * 1024 ) );
While /scripts/installimagemagick does have enough memory to install (it uses 256 for that line), the check script that runs at the end only has 128 listed and fails on the check due to the higher memory requirements. You should be able to bypass that check erroneously failing by bumping up the memory.