Thanks very much for the help! It turns out that I was able to correct a misconfiguration by using the mysql configuration table to figure out which parameter was screwed up, then go though the admin UI and correct that (imagemagick_path) in the Derby version. Not sure why the installer makes it so easy to shoot yourself in the foot, but that's for another day.
Carlos On Tue, Jan 3, 2012 at 2:11 PM, Conrad Beckert <[email protected]> wrote: >> How do I know which of the values (e.g. path to imagemagick) were correct >> and which need to be fixed,< > > It's quite easy to find out where a Linux programm is installed. For instance > - to find out where pdf2swf is - type > > $which pdf2swf > /usr/bin/pdf2swf > > > Image Magick is not such a good example because the executable is convert. > So to find out the path for ImageMagick type: > > $which convert > /usr/bin/convert > > If you don't know exactly the name you can search with > > $locate convert > > which lists all the files containing convert - not only the exes. > > Hope that helps > > Conrad > > PS: Rerunning the config is always a good idea until everyhing works.
