Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I'm quite sure this is to do with <em>not</em> having the module loaded correctly or the .dll being placed in a improper location.</p> <p>You can use PHP's internal function <a href="http://php.net/manual/en/function.extension-loaded.php" rel="nofollow noreferrer">extension_loaded()</a> to check prior to using the class, </p> <pre><code>&lt;?php /** * **/ if (!extension_loaded('Imagick')) { //Load some error. } ?&gt; </code></pre> <p>That's a method you can check if the module is even being reconsigned by PHP at all. PHP also provides a function to view your current extensions <a href="http://www.php.net/manual/en/function.get-loaded-extensions.php" rel="nofollow noreferrer">get_loaded_extensions()</a>:</p> <pre><code>&lt;?php /** * Get an Array of current * PHP extensions for debugging **/ print_r( get_loaded_extensions() ); ?&gt; </code></pre> <p>Make sure you do:</p> <ul> <li>Check your <em>correct</em> extension library folder location within your <code>phpinfo()</code></li> <li>Perform a <strong>hard restart</strong> of your xmapp/wamp server. </li> <li>If you're on PHP 5.4 or upwards (Like yourself!), see site below for the updated binaries </li> </ul> <p>After researching too, Imagick does seem to have trouble with PHP 5.3 or upwards; Download new DLL's from this site below (<em>Unofficial</em>):</p> <blockquote> <p><a href="http://www.peewit.fr/imagick/" rel="nofollow noreferrer">http://www.peewit.fr/imagick/</a></p> </blockquote> <p>Also found other StackOverFlow Articles that have the same problem:</p> <blockquote> <p><strong>Stackoverflow</strong>: <a href="https://stackoverflow.com/questions/15445493/trying-to-get-imagick-running-on-php-5-4-3-at-windows-x64">Trying to get imagick running on PHP 5.4.3 at Windows x64</a></p> </blockquote> <p><strong>Alternatively</strong> you're able to use the <a href="http://php.net/manual/en/book.image.php" rel="nofollow noreferrer">GD extension</a> to more or less accomplish some of the same functions you require. I do believe <a href="http://php.net/manual/en/book.image.php" rel="nofollow noreferrer">GD</a> is a more widely supported module/extension in more recent versions of PHP.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload