How can I activate the ImageMagick software in DWebPro (for example, for the Typo3 Web site)?
ImageMagick (see http://www.imagemagick.org/) is “a software suite to create, edit, and compose bitmap images.” Many CMS and Web scripts use ImageMagick for runtime image manipulation, one CMS of which is Typo3 (see http://typo3.org/). For installing ImageMagick for Typo3, follow these steps: • Download the ImageMagick binary from http://typo3.sunsite.dk/software/windows/imagemagick-win-4.2.9.zip. • Uncompress the imagemagick-win-4.2.9.zip file contents into a subfolder of the deploy directory (such as deploy\engine\imagemagick). • Edit the Typo3 configuration and set the im_path directive. For instance you can set it as follows: ‘im_path’ => dwebpro_getvar(‘DWEBPRO_PATH’) . ‘/engine/imagemagick’, • The last step is to edit the entire Typo3 code to replace any hard references to the typo3temp directory with a constant (such as TYPO3_TEMP) and define this constant in the configuration file as follows: define(‘TYPO3_TEMP’, dwebpro_getvar(‘DWEBPRO_TEMP’) . ‘/typo3temp’); This last step is