aguidrevitch / jquery-file-upload-middleware

jQuery-File-Upload Express.js middleware
294 stars 120 forks source link

Thumbs not creating #70

Closed theBojke closed 8 years ago

theBojke commented 8 years ago

Have my upload middleware configured as usual:

upload.configure({
        uploadDir: __dirname + '/public/uploads',
        uploadUrl: '/uploads',
        imageVersions: {
            thumbs: {
                width: 80,
                height: 80
            }
        }
    });

But my thumbs folder is empty. Tried also other image version - not working. There were no code changes on upload middleware. Using jquery-file-upload-middleware v0.1.5, node v4.1.0 and express v4.13.3 Any ideas, am I missing something?

theBojke commented 8 years ago

Solved problem with #34. Problem was with tmpDir and ImageMagick.