File Transfer

Large File Uploads Timing Out at 80-90% on Travel Wifi

Samad Mokrini Updated July 21, 2026 8 min read Worldwide
A traveling freelancer watching a large video file upload progress bar stall near 90 percent on a laptop in a hotel room
Quick answer:

Large uploads fail more than downloads on unstable connections because most browser-based upload flows send your file as one continuous stream with no automatic resume — if the connection blips even once near the end, the whole transfer restarts from zero, not from where it stopped. Downloads don't have this problem as often because many download managers and browsers already support range requests (resuming a partial file) by default, while consumer upload tools like a basic drag-and-drop into Drive or WeTransfer frequently don't. The real fix is switching to a genuinely resumable/chunked upload method (Google Drive's desktop sync client, rclone, or a dedicated resumable-upload tool), which breaks the file into pieces and only re-sends the piece that failed. Where that's not available, compressing the file, splitting it into smaller archives, and uploading during low-traffic hours cut the odds of hitting a failure at all.

What this guide covers

Why Uploads Are More Fragile Than Downloads on the Same Connection

It feels backwards that uploading a file should be less reliable than downloading one of the same size, but the asymmetry is real and comes down to how each direction is typically implemented, not just raw bandwidth. Most consumer internet connections are already asymmetric, with upload speeds a fraction of download speeds, which means an upload simply takes longer and has more time inside which a connection blip can land. But the bigger factor is software: browsers, operating systems, and many download managers have supported resumable downloads (via HTTP range requests) for decades, so if a download drops at 90%, most tools quietly pick up from that point. Basic browser-based upload forms — the kind behind a lot of consumer tools' "drag your file here" boxes — frequently don't implement the equivalent resumable protocol, so the entire multi-gigabyte stream has to complete in one unbroken attempt.

Add travel wifi's specific failure pattern on top of that: hotel and airport networks often use captive portals and traffic shaping that deprioritize long-held connections in favor of many short ones (web browsing, streaming), and some networks silently cut idle or long-duration TCP connections after a fixed time window regardless of whether data is still moving. A four-hour video upload is exactly the kind of connection those networks are least built to sustain, which is why the failure so reliably lands late in the transfer rather than early — early on there's still buffer and goodwill in the connection, and by 80-90% you've been running long enough to hit whatever the network's tolerance limit actually is.

Resumable and Chunked Upload Tools That Actually Prevent This

The single highest-impact change is moving off basic browser drag-and-drop uploads and onto a tool built around chunked, resumable transfer. Google Drive's and Dropbox's desktop sync applications (not the website) both implement genuine chunked upload with automatic resume — if the connection drops, the app retries the failed chunk rather than restarting the whole file, and you can watch this by intentionally killing wifi mid-upload in either app and seeing it pick back up rather than reset to 0%. This alone eliminates most of the pain for Drive- or Dropbox-bound files, and it's worth installing the desktop client specifically for travel even if you normally just use the website.

For anything going to an FTP server, a client transfer target, or when you want more control, rclone is the tool worth learning — it's a free command-line utility that supports true chunked, resumable transfers to dozens of cloud storage backends and plain FTP/SFTP, and its --retries and --low-level-retries flags let you tell it to keep attempting a failed chunk almost indefinitely rather than giving up. WeTransfer's standard free tier does not support resumable upload and is genuinely one of the worst options for large files on unstable connections; WeTransfer Pro and dedicated tools like Filemail or MASV are built specifically around large media files and chunked resumable transfer, which is why many video professionals switch to them specifically for travel delivery rather than general convenience.

Practical Workarounds When a Resumable Tool Isn't an Option

Sometimes the client or platform dictates the destination and you can't switch tools — an FTP server that only takes a browser upload, or a client portal with no desktop sync option. In those cases, reducing the file size and the transfer's duration directly reduces how much time the connection has to fail during. Compressing video with a faster codec preset (even a modest size reduction matters more than it seems, since a 20% smaller file is 20% less time exposed to a drop) and using standard ZIP or 7z compression on design assets and archives both shrink the exposure window meaningfully.

Splitting a large archive into several smaller pieces (most archive tools support multi-part ZIP or RAR output at a size you choose, commonly 500MB-1GB chunks) turns one long fragile transfer into several shorter, more survivable ones — if one part fails, you're only re-uploading that part, not the whole archive, even without a resumable tool. Timing also matters more than people expect: hotel and shared wifi networks are measurably more congested in the evening when everyone in the building is streaming, and running a large upload at 5-6am local time or right after checking in, before the network fills up, meaningfully improves the odds of a clean transfer.

When the Wifi Itself Is the Real Bottleneck, Not the Upload Tool

All of the above assumes the connection is merely unstable, not fundamentally too weak or too congested to sustain any large transfer. If tethering to a phone's mobile hotspot gives a noticeably more stable (even if slower) upload than the venue's wifi, that's a sign the wifi itself — not your tool choice — is the limiting factor, and no amount of chunking will fully fix a connection that drops every few minutes regardless of what's using it. In that situation, mobile data as the primary transfer path, even at a data cost, is often the more reliable option purely because it doesn't share the same congestion and captive-portal quirks as public wifi.

It's also worth ruling out that the problem isn't specific to the tool but to how the local network is configured — some hotel and corporate networks throttle or actively block large outbound transfers as a bandwidth-management policy, which no client-side setting can work around. If uploads to every destination consistently fail at a similar point regardless of tool, file type, or destination, that's the pattern worth diagnosing directly rather than continuing to try different upload apps. For general connectivity troubleshooting beyond just uploads, see our wifi abroad guide, and for keeping other cloud-synced files consistent while traveling, see our cloud storage sync issues guide.

When It's Worth Getting This Fixed Instead of Retrying All Night

If you've already tried the obvious things — different browser, different time of day, restarting the router — and a deadline-critical file still won't complete, that's a good point to stop burning hours on trial and error. We can set up a properly resumable transfer method for your specific file and destination, configure rclone or a dedicated large-file tool if that's the right fit, and in many cases get the file delivered in that same session rather than after another night of failed attempts.

Deadline file stuck at 90% again?

We'll get on a call, set up a transfer method that actually survives your connection, and get the file delivered — not just diagnose the problem and leave you to retry it. If we can't get it delivered, you get 50% back under our no-fix, no-fee policy.

Book a remote fix — $149.99

Frequently asked questions

Why does my upload always fail near the end instead of at the start?

Public and hotel wifi networks often tolerate short connections fine but deprioritize or cut long-held ones after a time threshold, and by 80-90% into a large upload you've usually been connected long enough to hit that limit. It's rarely about file content and almost always about connection duration.

Does using a VPN help or hurt large file uploads on unstable wifi?

It depends on the network. A VPN can sometimes stabilize a connection that's being throttled or shaped by the local network, but it also adds encryption overhead that can slightly reduce effective speed. Test both ways; see our VPN setup guide for remote workers for configuration details.

Is Dropbox or Google Drive's website better than their desktop app for large uploads?

The desktop sync app is almost always better for large files because it implements genuine chunked, resumable upload, while the website's drag-and-drop interface historically has weaker resume behavior. Install the desktop client before traveling if you expect to send large files.

Why does WeTransfer keep failing for large video files specifically?

WeTransfer's free tier doesn't support resumable chunked upload, so any interruption on a large file means starting completely over. For large media files on unreliable connections, a resumable-upload tool like rclone or a service built for large media (WeTransfer Pro, MASV, Filemail) performs meaningfully better.

Will splitting my file into smaller pieces actually help if I don't have a resumable tool?

Yes — even without a resumable upload tool, splitting a large archive into smaller chunks (500MB-1GB pieces) means a failed transfer only costs you that one piece, not the entire file, which is a meaningful improvement over one long unbroken upload.

How do I tell if the problem is my upload tool or the wifi itself?

Tether to your phone's mobile hotspot and try the same upload. If it's noticeably more stable there even at a lower speed, the venue's wifi is the actual bottleneck, not your tool choice, and no client-side setting will fully fix that.

SM

Samad Mokrini

Founder of IT Cares Canada (est. 2014) and RemoteFix 24/7. Two decades fixing computers for people who can't get to a shop — now for remote workers, expats, and nomads in 130+ cities worldwide.