Search found 4 matches
- 2011-04-23T04:03:11-07:00
- Forum: Users
- Topic: Script not creating a resized copy on server?
- Replies: 9
- Views: 14294
Re: Script not creating a resized copy on server?
It looks like it was a permissions issue. Everything works great now.
- 2011-04-21T23:31:31-07:00
- Forum: Users
- Topic: Script not creating a resized copy on server?
- Replies: 9
- Views: 14294
Re: Script not creating a resized copy on server?
Sure, it's what I had posted originally:
Code: Select all
convert "prod-M600-Hunter.jpg" -resize 33.333333333333% "list/prod-M600-Hunter.jpg"
- 2011-04-21T18:46:08-07:00
- Forum: Users
- Topic: Script not creating a resized copy on server?
- Replies: 9
- Views: 14294
Re: Script not creating a resized copy on server?
Sure thing, here's the part of the script that deals with ImageMagick, assume that $image_name is set to an image that exists (which in my case it is, I can echo $image_name within an <img> and get a picture) // check if resized image already exists $cache = "$cache_path/$image_name"; //echo "$image ...
- 2011-04-21T17:37:07-07:00
- Forum: Users
- Topic: Script not creating a resized copy on server?
- Replies: 9
- Views: 14294
Script not creating a resized copy on server?
Hi All, I've taken over the production of a site for a client of mine, which is using ImageMagick and I'm a bit stumped. I have a php script that gets called whenever an image is loaded on the site (so database lookups and the like can be done), which then uses ImageMagick to resize and presumably ...