On Wednesday 05 December 2007, Matt Strauser wrote: > Hello Petko, > I got it to work by commenting out the > $ThumbList['ImageMagickExe'] = > line. > > My ImageMagick executable is in /usr/bin > How would I configure the recipe to use this?
If you have shell access, you can find the path by this command: type convert and you should get a reply: convert is /usr/bin/convert Than you place in config.php: $ThumbList['ImageMagickExe'] = '/usr/bin/convert'; ImageMagick is rarely installed on most shared hostings, or sometimes it is not working with PHP Safe mode. That is why I wrote that it is for advanced administrators only, and I assumed it is clear enough for them. :-) I'll add a better note to the manual page about this path though. > Thanks for a cool thumblist recipe. Thanks for using it and providing feedback. You have a nice website, I wish I could some day listen to one of your concerts. :-) Thanks, Petko > > On Dec 4, 2007 3:46 PM, Petko Yotov <[EMAIL PROTECTED]> wrote: > > On Tuesday 04 December 2007, Matt Strauser wrote: > > > I am trying to use the Thumblist(2) recipe. > > > It almost works for me - I get a link but no image. > > > > ... > > > > > http://www.solfa.org/index.php?n=Fall2007.Test > > > > Hi. > > > > You have not configured correctly ImageMagick. > > > > (1) If you do have it installed on your server, set the variable > > $ThumbList['ImageMagickExe'] to the path to the executable (it seems to > > be not '/etc/php-safe/convert'). > > > > (2) If you don't have it installed on your server, you should not set the > > $ThumbList['ImageMagickExe'] variable. Remove this line from your > > config.php. > > > > (3) If you don't understand or don't know, you should not set the > > $ThumbList['ImageMagickExe'] variable. Remove this line from your > > config.php. _______________________________________________ pmwiki-users mailing list [email protected] http://www.pmichaud.com/mailman/listinfo/pmwiki-users
