Jens Vesper Posted June 24, 2010 Posted June 24, 2010 What do I need to do to enable the ImageMagick in Typo3? Obviously the latest version of ImageMagick is installed on the system according to phpmyinfo. But Typo3 does not recognize, and I do not know what path is to be given in the installation section to make ImageMagick recognized. I have seen in the logs that exec() is disabled, and this could be one cause of the issue. Hope you can help me. ---- Before you ask: My account name is dienos; and the site with typo3 test is vesper-dienos/festypo3 Quote
Byron Posted June 24, 2010 Posted June 24, 2010 How are you trying to call on ImageMagick with Typo3? Take a look at this and see if this helps you? http://zacvineyard.com/blog/2009/04/21/ins...gick-for-typo3/ Quote
Jens Vesper Posted June 24, 2010 Author Posted June 24, 2010 Here is the Typo3 message from install section: Check Image Magick: No ImageMagick installation available It seems that there is no adequate ImageMagick installation available at the checked locations (, /home/dienos/, /usr/X11R6/bin/, /usr/bin/, /usr/local/bin/) An 'adequate' installation for requires 'convert', 'combine'/'composite' and 'identify' to be available Also tried /home/dienos/bin/ and /home/dienos/local/bin/ when I wanted to use the existing installation of ImageMagick. Did not work. Are you saying I will have to install another instance in my home or typo3 directory? Quote
Byron Posted June 24, 2010 Posted June 24, 2010 Try /usr/local/lib/ Are you saying I will have to install another instance in my home or typo3 directory? No Quote
Jens Vesper Posted June 24, 2010 Author Posted June 24, 2010 Try /usr/local/lib/ Hate to say it, but it doesn't work. Hope you have another tipp for me !?!?!? Quote
Byron Posted June 24, 2010 Posted June 24, 2010 /usr/local/bin is where you'll find 'convert', 'combine'/'composite' and 'identify' but you said it didn't work. The only thing I can figure is that we don't allow execute. Why don't you ask the Typo3 folks and see what they say. Quote
Jens Vesper Posted June 24, 2010 Author Posted June 24, 2010 /usr/local/bin is where you'll find 'convert', 'combine'/'composite' and 'identify' but you said it didn't work. The only thing I can figure is that we don't allow execute. Why don't you ask the Typo3 folks and see what they say. OK, I'll check it out there. Thank you so far. Quote
Jens Vesper Posted June 27, 2010 Author Posted June 27, 2010 /usr/local/bin is where you'll find 'convert', 'combine'/'composite' and 'identify' but you said it didn't work. The only thing I can figure is that we don't allow execute. Why don't you ask the Typo3 folks and see what they say. OK, I'll check it out there. Thank you so far. They definitely need the exec() function, or do you see any other way to use ImageMagick from PERL without exec() ? Quote
Byron Posted June 27, 2010 Posted June 27, 2010 They definitely need the exec() function, or do you see any other way to use ImageMagick from PERL without exec() ? Are you sure it's PERL and not PHP you mean? You can call on IM with perl like this: #!/usr/bin/perl -w print "Content-Type: text/html\n\n"; system "convert -resize 100x100 -colorspace rgb -quality 70 seaside.jpg thumbnail.jpg"; That would thumbnail seaside.jpg Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.