Search found 3 matches

by jpm
2010-02-27T09:02:15-07:00
Forum: Users
Topic: PHP + Apache in Mac OS X with ImageMagick (paths)
Replies: 4
Views: 17335

Re: PHP + Apache in Mac OS X with ImageMagick (paths)

I have never tried thas and do not know anything about mac ! Worth a try ? I appreciate your reply, but I am looking for something that does not have to be inserted into my PHP code. I can get it to work just fine using putenv in my PHP code, but the paths differ from the live (I know your code ...
by jpm
2010-02-26T12:34:59-07:00
Forum: Users
Topic: PHP + Apache in Mac OS X with ImageMagick (paths)
Replies: 4
Views: 17335

Re: PHP + Apache in Mac OS X with ImageMagick (paths)

I had to specify the full path to convert, usually /usr/local/bin/convert or /user/bin/convert as I could not figure out how to get shell paths over to PHP Thanks... But the DYLD_LIBRARY_PATH variable would still be missing if I just specified the path. And, the path is different on my Mac then on ...
by jpm
2010-02-26T09:58:09-07:00
Forum: Users
Topic: PHP + Apache in Mac OS X with ImageMagick (paths)
Replies: 4
Views: 17335

PHP + Apache in Mac OS X with ImageMagick (paths)

I was able to get ImageMagick to install and work under Terminal prompt in Mac OS X. But, PHP cannot "see" the paths set, unless I use putenv or create a "wrapper" shell script. I have the following in /private/etc/profile export MAGICK_HOME="/usr/local/ImageMagick" export PATH="$MAGICK_HOME/bin ...