i see this in photopost support page :
Installing ImageMagick
First, if you already tried to install ImageMagick unsuccessfully, you need to uninstall it for this to work properly (trust me, I learned this after installing it 15 times over an old installation). To uninstall ImageMagick, go to your ImageMagick source directory and type:
make uninstall
1. ImageMagick needs a few support libraries to install properly. You can check for the header files in /usr/include and /usr/local/include to see if each library is installed. If you don't find one or all of them then they will need to be installed.
tiff.h
png.h
jpeglib.h
2. Download the following files and FTP them (via binary mode) to a directory on your server (in my case, I chose /home/techimo/imagemagick - that's a temporary directory for the source files):
ImageMagick-5.3.8.2.tar.gz
jpegsrc.v6b.tar.gz
libpng-1.0.6.tar.gz
libtiff-lzw-compression-kit-1.1.tar.gz
tiff-v3.5.5.tar.gz
(If you want to download the files directly to your server instead of downloading and ftping, use these commands instead):
$ wget
http://www.photopost.com/ImageMagick-5.3.8.2.tar.gz
$ wget
http://www.photopost.com/jpegsrc.v6b.tar.gz
$ wget
http://www.photopost.com/libpng-1.0.6.tar.gz
$ wget
http://www.photopost.com/libtiff-lzw...kit-1.1.tar.gz
$ wget
http://www.photopost.com/tiff-v3.5.5.tar.gz
Once the files are in your temporary imagemagick directory, uncompress them:
$ gunzip *.gz
Then unpack everything:
$ tar -xvf ImageMagick-5.3.8.2.tar
$ tar -xvf libpng-1.0.6.tar
$ tar -xvf libtiff-lzw-compression-kit-1.1.tar
$ tar -xvf jpegsrc.v6b.tar
$ tar -xvf tiff-v3.5.5.tar
then:
$ cd libpng-1.0.6
$ cd scripts
Now do an "ls" and look for the makefile that matches your operating system. If you can't find one for your OS, makefile.gcc should work. Copy the makefile to the libpng-1.0.6 directory:
$ cp makefile.linux ../makefile
In the line above, I used makefile.linux, but you should use your appropriate makefile. Continue:
$ cd ..
$ make
$ make install
$ cd ..
$ cd jpeg-6b
$ ./configure --enable-shared
$ make
$ make install
$ cd ..
(For this next part, if you don't know how to use "vi", use "pico" instead)
$ cd libtiff-lzw-compression-kit
$ vi Makefile
change
TIFF_SRC_DIR = /tmp/libtiff
to
TIFF_SRC_DIR = ../tiff-v3.5.5
Then save and exit the Editor $ make install
$ cd ..
$ cd tiff-v3.5.5
$ ./configure
Answer yes to TIFF Configuration Parameters
$ make
$ make install
$ cd ..
$ cd ImageMagick-5.3.8
$ ./configure --enable-lzw=yes --enable-shared=yes --disable-static --without-perl
$ make
$ make install
That's it! If you have difficulty, you may wish to purchase our Advanced Installation Service
i have download all this and extract to my server :
the question is : where to type all this command ???
i type in cuteftp , they don't recognize
i type in command prompt they don't recognize too...
regards,
Hendri Leong
anybody can help ????