meteor-tomi-upload-server icon indicating copy to clipboard operation
meteor-tomi-upload-server copied to clipboard

Results 7 meteor-tomi-upload-server issues
Sort by recently updated
recently updated
newest added

i think may wrong in here var filename = path.join(options.uploadDir, unescape(uri)); it is beter to use uridecode?

How to use it with react templates?

help wanted

Implements the possibility exposed in the doc to use a default notfound image.

It is very small patch: ``` - getDirectory: function (fileInfo, formData) { + getDirectory: function (req, fileInfo, formData) { - getFileName: function (fileInfo, formData) { + getFileName: function (req, fileInfo,...

Hi, When I try to upload unicode filename like `กา.png` it will return ``` http://127.0.0.1:3000/upload//%E0%B8%81%E0%B8%B2.png ``` which is 404 (Not Found), but upload is successful and file is there. Any...

help wanted

hi, maybe it's is an issue: FileInfo.prototype.safeName = function () { // Prevent directory traversal and creating hidden system files: this.name = path.basename(this.name).replace(/^.+/, ''); // Prevent overwriting existing files: while...

bug
help wanted

Tomi, Great package thanks. I just came across this scenario where I build a custom directory path. Down the road, the URL the package computes internally wasn't correct since the...