-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issues with multer #207
Comments
@tsm91 This is very possibly related to a stream bug in Node.js itself (nodejs/node#2323) Could you please test the code in #205 and see if that solves the problems for you? |
@LinusU I tested it, i couldn't reproduce the browser hang. Tested on In my case this fixes the first (and most serious) problem. Any idea for the 3rd one? I saw there is a bug for my 2nd issue too |
Today I upgraded What I have noticed is that I've added some logs and here we can see the above behavior.
Have updated Node to 0.10.38 and then 0.10.40. Still fail. Ok. I've rolled back to 0.1.8. |
This should be fixed by #205 and released on npm as version Please reopen if issue persists. |
Hello, I am using Multer with GraphicsMagick and ran into a few issues.
1, I am experiencing that whenever an error occurs and i redirect the user, the browser will hang and never redirect.
2, for some reason fileSize limit doesn't work, on big images. I tested this by uploading a 14mb JPG image, I didnt get back a
LIMIT_FILE_SIZE
error object, butreq.file
was undefined.3, how can i remove the temp files from
dest
path? They don't seem to be removed automatically after upload finishes.The code:
image-uploader.js (multer related part)
router.js
The text was updated successfully, but these errors were encountered: