>path to the convert file was pointing to nowhere useful. Anyone know where it >should point?
/* full path to ImageMagick's convert program */
"convert_path" => '/usr/X11R6/bin/convert',
This is where I have it pointing anyway.
I origianlly tried to get it to work with gd, no luck, I went back to struggling with ImageMagik.
>I don't know if I have libpng installed.
To check if you have libpng installed, login to the server as root and type "rpm -q libpng." The response should be pretty descriptive as to whether you have it or not.
> You say to make sure Image Magick is up and running but how do I do that?
I guess I meant get ImageMagik installed succesfully. Sorry I was a little confusing there.
I don't know if this will help here is a copy of my entire config.inc.php file:
-------------Start File-------------
/*
* YAPPA, main configuration
*/
$config = array(
/* title of your collection */
"title" => "The Evans Family Picture Album",
/* directory where album dirs are stored */
"photo_root" => "/home/e-smith/files/ibays/pictures/files",
/* image module: magick, gd */
"image_module" => 'magick',
/* full path to ImageMagick's convert program */
"convert_path" => '/usr/X11R6/bin/convert',
/* thumbnails width and height */
"thumb_width" => 100,
"thumb_height" => 100,
/* thumbnails per row in thumbnails view */
"thumbs_per_row" => 3,
/* total thumbnails rows per page */
"thumbs_rows" => 4,
/* albums per row in homepage */
"albums_per_row" => 4,
/* available sizes */
"resize_options" => array( "640x640", "800x800", "original" ),
/* cache resized images? */
"resize_cache" => true,
"cache_root" => '/home/e-smith/files/ibays/pictures/files',
/* jpeg quality for resized images */
"resize_quality" => 60,
/* default size when viewing an image */
"resize_default" => "640x640",
/* news filename */
"news_filename" => "news.html",
/* album info filename */
"info_filename" => "info.txt",
/* image captions filename */
"captions_filename" => "captions.txt",
/* hits counter log filename */
"log_filename" => "hits.log",
/* sort by none, name, mtime */
"sort_by" => "name",
"album_sort_by" => "name",
/* sort order (a)scending or (d)escending, not used when 'sort_by' is 'none' */
"sort_order" => "a",
/* date format used when printing dates, refer to PHP's date format documentation */
"date_format" => "Y/m/d H:i:s",
/* size of the pages navbar in thumbnail mode (must be multiple of 2) */
"navlink_pages" => 10,
);
?>
-------------End File-------------
BTW, I got all the YAPPA stuff in the html directory of my ibay and all my pictures in the files directory of an ibay.
Hope all this helps.
Seeeeeeeeeeee ya,
Rick