<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
   <title>Posts by Maarten Schenk on Learning Movable Type</title>
   <link rel="alternate" type="text/html" href="http://www.learningmovabletype.com/" />
   <link rel="self" type="application/atom+xml" href="http://www.learningmovabletype.com/contributors/maarten/" />
   <id>tag:www.learningmovabletype.com,2008-02-25:/5</id>
   <updated>2011-06-20T21:04:25Z</updated>
   <subtitle>Tutorials and helpful tips for the Movable Type web publishing system</subtitle>
   <generator uri="http://www.movabletype.org/">Movable Type Pro 4.37</generator>

<entry>
   <title>Learning Movable Type is Up Again!</title>
   <link rel="alternate" type="text/html" href="http://www.learningmovabletype.com/a/learning_movable_type_is_up_again/" />
   <id>tag:www.learningmovabletype.com,2011://5.2325</id>
   
   <published>2011-06-20T20:51:36Z</published>
   <updated>2011-06-20T21:04:25Z</updated>
   
   <summary><![CDATA[It has been a while, but Learning Movable Type is finally alive again! &nbsp;Many thanks to site founder Elise Bauer who has graciously passed me the torch. &nbsp;You might know me from my other MT-related site and from the (almost) six years I spent working at Six Apart Europe, where...]]></summary>
   <author>
      <name>Maarten Schenk</name>
      <uri>http://www.maartenschenk.be</uri>
   </author>
   
      <category term="Announcements" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.learningmovabletype.com/">
      <![CDATA[<p>It has been a while, but Learning Movable Type is finally alive again! &nbsp;Many thanks to site founder <a href="http://www.elise.com">Elise Bauer</a> who has graciously passed me the torch. &nbsp;You might know me from <a href="http://www.movabletips.com">my other MT-related site</a> and from the (almost) six years I spent working at Six Apart Europe, where I did (among other things) the support for all European Movable Type users. &nbsp;So what is the plan with this site?</p>]]>
      <![CDATA[Learning Movable Type has always been and will remain a place to learn about using Movable Type, with (hopefully) contributions from the community. &nbsp;So if you are interested in writing for this site, let me know. &nbsp;(You can even have your own adsense code on your own entries, Elise tells me.)<div><br /></div><div>Personally, I plan on having a look at the older entries on this site with an eye towards bringing them up to date or expanding them for use with more recent versions of Movable Type (or even Melody). &nbsp;But more about that in the coming days.</div><div><br /></div><div>Anyway, here's to a second life for 'Learning Movable Type'! &nbsp;Got any suggestions? &nbsp;Blow the dust off the old comment form below and let me know!</div><div><br /></div>]]>
   </content>
</entry>

<entry>
   <title>Installing Image::Magick on Windows</title>
   <link rel="alternate" type="text/html" href="http://www.learningmovabletype.com/a/001866installing_imag/" />
   <id>tag:www.learningmovabletype.com,2007://10.1866</id>
   
   <published>2007-03-26T22:11:14Z</published>
   <updated>2007-06-26T06:36:59Z</updated>
   
   <summary>Image::Magick is one of the Perl modules you can optionally install for use with Movable Type. With this module in place and working correctly, Movable Type can create thumbnails of any of the images you upload. Images as thumbnails help your pages load faster and help reduce visual clutter because...</summary>
   <author>
      <name>Maarten Schenk</name>
      <uri>http://www.maartenschenk.be</uri>
   </author>
   
      <category term="Images" scheme="http://www.sixapart.com/ns/types#category" />
   
   <category term="imagemagick" label="Image::Magick" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="windows" label="Windows" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://www.learningmovabletype.com/">
      <![CDATA[<p>Image::Magick is one of the Perl modules you can optionally install for use with Movable Type.  With this module in place and working correctly, Movable Type can create thumbnails of any of the images you upload.  Images as thumbnails help your pages load faster and help reduce visual clutter because large images can be resized so they don't push the text of your entries away.  Installing Image::Magick on a *nix machine is pretty routine if you are into perl package management, but on Windows it can be tricky.</p>

<p>Installing Perl and ImageMagick on Windows sounds easy enough.  Download the installers (<a href="http://www.activestate.com/store/productdetail.aspx?prdGuid=81fbce82-6bd5-49bc-a915-08d58c2648ca">Perl</a> [1], <a href="http://www.imagemagick.org/script/binary-releases.php#windows">ImageMagick</a> [2]), click a few times and you're ready.  At least, in theory.  Unfortunately, this has not been the experience for many people, including myself.  Sometimes Image::Magick wouldn't show up in ActiveState's Perl Package Manager (ppm) after the install had finished.  Other times mt-check.cgi seemed to choke on it, using up all memory or simply saying Image::Magick wasn't there, even after ppm claimed it was.  Or if mt-check could in fact find it, sometimes Movable Type itself would pretend it was not there, not offering any thumbnailing options when uploading an image (and/or eating up all memory).  In short, enough to pull your hair out.</p>]]>
      <![CDATA[<p>That's when one of my colleagues at Six Apart support pointed out something I had completely missed: during the installation process of ImageMagick, you are asked if you want to install PerlMagick for ActivePerl.  You need to do this to get Perl to work with Image::Magick, so I did.  But the installer didn't tell me to verify if the build number of the installed ActivePerl corresponds to the build number the ImageMagick installer wants to install PerlMagick for.  And there is the rub...</p>

<p><img alt="imagemagick-819.gif" src="http://www.learningmovabletype.com/images/imagemagick-819.gif" width="502" height="392" /></p>

<p>At the time of writing, the latest installer for ActivePerl you can download at the ActivePerl site is for build 820.  But they also offer <a href="http://ftp.activestate.com/ActivePerl/Windows/5.8/">previous builds for download here</a> [3].  So after I uninstalled build 820, downloaded build 819, uninstalled ImageMagick and reinstalled it, suddenly everything just worked fine.</p>

<p>If this doesn't work for you, try rebooting the machine.  I have heard from people where that suddenly cleared everything up, so who knows, it might be the case for you too...</p>

<p>Moral of the story: if you want to use ImageMagick on Windows with Movable Type, either use the correct build of ActivePerl or wait until an ImageMagick installer becomes available that links to your build.</p>

<p>[1] <a href="http://www.activestate.com/store/productdetail.aspx?prdGuid=81fbce82-6bd5-49bc-a915-08d58c2648ca">http://www.activestate.com/store/productdetail.aspx?prdGuid=81fbce82-6bd5-49bc-a915-08d58c2648ca</a><br />
[2] <a href="http://www.imagemagick.org/script/binary-releases.php#windows">http://www.imagemagick.org/script/binary-releases.php#windows</a><br />
[3] <a href="http://ftp.activestate.com/ActivePerl/Windows/5.8/">http://ftp.activestate.com/ActivePerl/Windows/5.8/</a></p>]]>
   </content>
</entry>

</feed>

