This blog is intended to be reminder for me. For example to keep things like this:
In Typo3 you can add images (media) to your text and put it above, in text, below text or whatever. You select the image in the backend and... nothing happens. Only a test-image is shown with the text "cannot create thumbnail".
On my server-setup the imagemagick tools are located in /usr/local/bin but the default location typo3 is looking for is /usr/X11R6/bin. In my case, I have to change the variable:
$TYPO3_CONF_VARS['GFX']['im_path'] = '/usr/local/bin/';
And everything is perfect now!
Your comment