Hello
Seems to me new release of imageField and Filefield don't work with imagecache-6.x-2.0-beta8.
Before upgrading imageField and FileField, it was OK, but now, even with a new content type and a new cck field (file/image), imageCache is no more working correctly.
As said in title, imageCache creates image in files/imagefield_thumbs and before it was in files/imagecache/myPressetName
And when viewing the node, no presset image because in files/imagecache/myPressetName, there is nothing.

Comments

sahuni’s picture

Title: With new version imageCache sends image in files/imagefield_thumbs and looks for in files/imagecache/myPressetName » With new imageField, imageCache sends image in files/imagefield_thumbs instead of ... files/imagecache/myPressetName
quicksketch’s picture

ImageCache doesn't know anything about the "files/imagefield_thumbs" directory. Those are images ImageField maintains for showing a thumbnail on the node edit form. It sounds like ImageCache just isn't working, not that it's creating thumbnails in the wrong directory.

sahuni’s picture

Yes, but if I come back to oldest release of imageField and fileField, it'works. It's why it seems to me problems are linked.

sahuni’s picture

Category: bug » support
Priority: Critical » Normal
Status: Active » Closed (fixed)

You were right. It was just imageCache not working because I did not reinstall imageAPI GD2.
Thanks for your comment

websmash’s picture

How did you guys solve this one?

redbull247365’s picture

This thread is exactly what I am looking for..... any solution?

redbull247365’s picture

I just wanted to say I had the latest of all three ImageCache, FileField, and ImageField and I uninstalled all three downloaded a prior version of all three and installed / enabled and tried it and images are still going into that files/imagefield-thumbs rather than files/imagecache/myPresetName

quite frustrating : )

bixgomez’s picture

I am having the very same problem. Is there a solution?

Apparently this person has a solution: http://drupal.org/node/714342

But I don't understand the solution!

JonK’s picture

I had this problem.. was simply that ImageAPI GD2 module was not enabled (just had ImageAPI enabled)

eforth’s picture

#9 solved my problem. Thanks !

meirbr’s picture

THANK YOU!!!!!!!

fyberoptik’s picture

Issue summary: View changes

For those drupaling with with nginx, great config template here which I was working from: http://wiki.nginx.org/Drupal

The only problem was I had a long standing bug with imagecache not generating files. After checking over config I finally found this line in my config, I hadn't enabled the location for D6.

# This is for D6
        location ~ ^/sites/.*/files/imagecache/ {
        # This is for D7 and D8
        #location ~ ^/sites/.*/files/styles/ {
                try_files $uri @rewrite;
        }

Hope this helps someone!