• Joined on 2025-07-20
michael commented on issue dutchcoders/transfer.sh#395 2026-01-19 18:30:10 +00:00
File names are converted to lower case

@nl5887 commented on GitHub:

Good point, will work on this. Filenames are sanitized now, but sanitize means also lowercase now.

michael commented on issue dutchcoders/transfer.sh#395 2026-01-19 18:30:10 +00:00
File names are converted to lower case

@nl5887 commented on GitHub:

Still waiting. I'll wait just a few days and otherwise use my fork.

michael commented on issue dutchcoders/transfer.sh#395 2026-01-19 18:30:10 +00:00
File names are converted to lower case

@cristian0 commented on GitHub:

+1

michael opened issue dutchcoders/transfer.sh#397 2026-01-19 18:30:10 +00:00
Not uploading files when filename has Spaces
michael opened issue dutchcoders/transfer.sh#398 2026-01-19 18:30:10 +00:00
add timers and stats
michael commented on issue dutchcoders/transfer.sh#399 2026-01-19 18:30:10 +00:00
mktemp fails on Peppermint 4 Linux

@CalumJEadie commented on GitHub:

You're welcome! Thanks for looking into it so quickly!

michael commented on issue dutchcoders/transfer.sh#391 2026-01-19 18:30:09 +00:00
upload a file to local host returns 301

@mapio commented on GitHub:

I did it like https://github.com/mapio/transfer.sh/blob/master/transfersh-server/main.go#L172 and it now works!

[But I had to clean the browser caches to force it to…

michael commented on issue dutchcoders/transfer.sh#393 2026-01-19 18:30:09 +00:00
problem with the link of uploaded amr file

@melmi commented on GitHub:

I don't now why github does not show quoted text. I repeat it without quotation:

</html> <html class="no-js"> <head>
michael commented on issue dutchcoders/transfer.sh#393 2026-01-19 18:30:09 +00:00
problem with the link of uploaded amr file

@nl5887 commented on GitHub:

The content / link seems to be still missing. What browser or curl version are you using?

michael commented on issue dutchcoders/transfer.sh#392 2026-01-19 18:30:09 +00:00
Support for mkv video files

@paolafrancesca commented on GitHub:

@orschiro is this still an issue?

michael commented on issue dutchcoders/transfer.sh#390 2026-01-19 18:30:09 +00:00
Add raw link to the file

@nl5887 commented on GitHub:

When we had links to the raw url, the service was abused by phishers which included the raw images and scripts within their phishing sites. We've chosen for a…

michael commented on issue dutchcoders/transfer.sh#391 2026-01-19 18:30:09 +00:00
upload a file to local host returns 301

@acepsaepudin commented on GitHub:

thanks @jasonyost +1

michael commented on issue dutchcoders/transfer.sh#392 2026-01-19 18:30:09 +00:00
Support for mkv video files

@orschiro commented on GitHub:

@aspacca not anymore. Thanks for the reminder! Closing...

michael opened issue dutchcoders/transfer.sh#396 2026-01-19 18:30:09 +00:00
Implement S3 uploading parts
michael commented on issue dutchcoders/transfer.sh#392 2026-01-19 18:30:09 +00:00
Support for mkv video files

@johnko commented on GitHub:

According to http://www.matroska.org/news/webm-matroska.html

webm is a subset of mkv

So what might work is serving *.mkv files with a Content-Type video/webm as…

michael commented on issue dutchcoders/transfer.sh#389 2026-01-19 18:30:09 +00:00
Opening uploaded html file link to browser causes browser to execute the javascript in the file

@nl5887 commented on GitHub:

Good one, will fix this.

michael closed issue dutchcoders/transfer.sh#391 2026-01-19 18:30:09 +00:00
upload a file to local host returns 301
michael commented on issue dutchcoders/transfer.sh#391 2026-01-19 18:30:09 +00:00
upload a file to local host returns 301

@nl5887 commented on GitHub:

Currently there is a redirect checking if the connection is secure. If not then it will redirect to https://transfer.sh/. Will work on a solution to disable the check.

michael commented on issue dutchcoders/transfer.sh#391 2026-01-19 18:30:09 +00:00
upload a file to local host returns 301

@nl5887 commented on GitHub:

In the mean time, you can workaround this issue by removing the RedirectHandler in main.go, by changing:

Handler: handlers.PanicHandler(LoveHandler(RedirectHandle…
michael commented on issue dutchcoders/transfer.sh#391 2026-01-19 18:30:09 +00:00
upload a file to local host returns 301

@jasonyost commented on GitHub:

Just ran into this issue myself, the code for the redirect handler is looking for a host of 127.0.0.1 in handlers.go

func RedirectHandler(h http.Handler)