Dropbox Outage Map
The map below depicts the most recent cities worldwide where Dropbox users have reported problems and outages. If you are having an issue with Dropbox, make sure to submit a report below
The heatmap above shows where the most recent user-submitted and social media reports are geographically clustered. The density of these reports is depicted by the color scale as shown below.
Dropbox users affected:
Dropbox is a file hosting service operated by American company Dropbox, Inc., headquartered in San Francisco, California, that offers cloud storage, file synchronization, personal cloud, and client software.
Most Affected Locations
Outage reports and issues in the past 15 days originated from:
| Location | Reports |
|---|---|
| Bournemouth, England | 1 |
| Paramaribo, Paramaribo | 1 |
| Bogotá, Bogota D.C. | 1 |
| Auxerre, Bourgogne-Franche-Comté | 1 |
| Salt Lake City, UT | 1 |
| Madrid, Madrid | 1 |
Community Discussion
Tips? Frustrations? Share them here. Useful comments include a description of the problem, city and postal code.
Beware of "support numbers" or "recovery" accounts that might be posted below. Make sure to report and downvote those comments. Avoid posting your personal information.
Dropbox Issues Reports
Latest outage, problems and issue reports in social media:
-
QuixoticMoose (@QuixoticMoose) reportedBricks & Minifigs LEGO Drama: Unredacted Police Footage Raises Serious Questions About Cop-Business Ties Hey everyone, it's been a wild ride since my last piece on the Bricks and Minifigs mess. What started as a story about a family trying to sell their massive Star Wars LEGO collection has turned into something much uglier. With the unredacted bodycam and dashcam footage from American Fork Police now out there, we are seeing a side of this that looks a lot like police getting way too cozy with the business they were supposed to investigate fairly. The Footage Drop That Blew It Open Just recently, someone got hold of a big batch of unredacted videos from the American Fork PD. It was apparently an accidental public Dropbox link, but once it was out, it spread fast. These are the full versions of the interactions that were shown in heavily edited form before. And man, they paint a pretty concerning picture. In the clips, you see Bricks and Minifigs people like store owner Joshua Johnson and CEO Ammon McNeff talking to officers. They throw out some heavy claims against Reckless Ben. Things like extortion, death threats, collusion with the Mansells, and even making up documents. The police seem to eat it up without much pushback right there on camera. It feels like they are taking the company's word as solid fact. Signs of Too Close for Comfort One part that stands out is when an officer mentions personal connections. He talks about being friends with the Airbnb host where Reckless Ben and his crew were staying before that swatting mess. The officer even sounds like he is bragging about it on bodycam. That kind of casual chat makes you wonder if private relationships played into how aggressively they went after Ben. There is also talk between American Fork officers and other departments, including LAPD. It looks like McNeff and his team were pushing multiple police forces to go after Reckless Ben. The footage shows officers coordinating in ways that feel more like helping a business protect itself than handling a neutral investigation. The arrest of Reckless Ben gets shown in more detail too. What some saw as a traffic stop turns into a long vehicle search over supposed drugs that never seemed to pan out. Critics are calling the whole thing disproportionate, like the police were there to send a message rather than enforce clear laws. The earlier redacted videos hid a lot of this flow, but now we can see it all. The Community Reaction and the Mormon Angle LEGO fans and true crime watchers online have been tearing this apart. Threads on Reddit and YouTube breakdowns are full of people saying it looks like the department acted as private security for Bricks and Minifigs. Some point to the shared LDS Church ties between officers, Johnson, McNeff, and others as a possible reason for the protective vibe. I am not saying it is a full conspiracy, but the optics are not great in a tight knit place like American Fork. Public trust in the police handling here has taken a real hit. The department put out statements defending their actions as responses to stalking complaints at Johnson's home. They say redactions were about protecting victims. But the full unredacted stuff has many questioning if that was the whole truth. Where Does This Leave the Mansells? Remember, at the heart of it all is still that elderly collector and his son who lost track of most of their $200,000 collection during the franchise handover. Bricks and Minifigs maintains they only inherited a tiny bit of inventory and that the original deal was not properly done. Lawsuits are moving forward, but the missing sets and money have not been explained to the Mansells' satisfaction. Reckless Ben's videos brought massive attention to their situation, including a GoFundMe that has helped with legal costs. His style is aggressive, sure, but the new footage makes it look like the pushback from the other side involved more than just legal channels. This scandal shows how fast a hobby dispute can drag in law enforcement and how important real transparency is. If police really did favor one business over a fair process, that is a big problem no matter what side you are on. The LEGO community thrives on trust and good deals. Right now, a lot of us are watching closely to see if the courts sort out the missing bricks and whether anyone holds the police accountable for how they handled this. It is not over yet, but these videos have definitely shifted the conversation. What do you think? Drop your takes below.
-
Music, Film & RE Investments (@investandcreate) reported@0xajka @Dropbox Have you tried doing the whole uninstall, reinstall? I had to do that one time with Dropbox. It was horrible. Now I have even a worse problem - but it’s not exactly Dropbox’s fault.
-
fercaton (@fercaton) reportedWriting things down isn't weak—it's like training wheels for your ideas. Your brain's not built to be an infinite Dropbox; it's for connecting dots, not hoarding them.
-
Solgato (@Tigger0000) reported@grok @alexabelonix @grok now i want to design a crochet motif of you.. but that would be inexcusable (says some voice in my head). talk about proto-guilty pleasures. funny how we're talking about a musical tool hook then a fiber work tool hook asserts itself. in the round-robin i've been dizzily going down the gpt connector rabbithole, "connect Dropbox" was scarily tempting. i didn't trust that sort of **** long before your people were part of it --it's not ph3333r of AI that says No. the company that scooped up Trello has a fascinating sales presentation.
-
Abhishek Singh (@0xlelouch_) reportedInterviewer: design Dropbox file sync. I paused and asked what they meant by sync. Whole product? Or just the client protocol? Single user? Team shares? Offline edits? Large files? Mobile on spotty networks? End to end encryption? What’s the SLO for conflict rate and time to converge? Once we scoped it to single-user sync across devices with offline support, I wrote requirements: detect changes, upload deltas, download updates, handle conflicts, resumable transfers, and don’t melt the battery. Non-goals: shared folders and fine-grained permissions. APIs and data model next. I used a file ID stable across renames, plus per-file version and per-device cursor. Client calls: /changes?cursor=..., /upload_session/start, /upload_session/append, /upload_session/commit, /download?file_id&version, /ack?cursor. Server tables: file_metadata(file_id, user_id, path, type, size, content_hash, current_version), file_versions(file_id, version, blob_ref, created_at), device_state(device_id, user_id, last_cursor), and an append-only changelog(user_id, seq, file_id, version, op). Architecture: client has a watcher, a local state DB, and a sync loop. It batches changes, computes chunk hashes, uploads missing chunks, then commits a new version. Server side: metadata service, blob store (chunked, content-addressed), and a per-user change log that devices long-poll or stream. Push notifications help, but the cursor-based pull is the truth. Scaling: shard by user_id for metadata + changelog, store blobs in object storage, cache hot metadata, and keep uploads on pre-signed URLs so the metadata tier doesn’t become the data plane. Chunking makes big files resumable and dedupe-friendly, but it adds CPU and more metadata reads. Tradeoffs I called out: last-writer-wins is simple but loses intent; per-file version vectors are heavier but reduce false conflicts. Chunk size is a fight: 4MB reduces round trips, 1MB retries faster on bad networks. Long-polling is cheaper than WebSockets at scale but slower to react. Failure cases: client crashes mid-upload, so upload sessions must be idempotent and garbage-collected. Network ***** cause retry storms, so exponential backoff + jitter and server-side rate limits. Two devices edit offline, so create conflicted copies and surface it in the client. Silent data corruption, so verify hashes on every download and run background repair. Rename vs edit races, so operations are applied against file_id, not path, and changelog ordering is per user, not global
-
Jesse Meyers (@jmbase) reported@VISportsTalk @Dropbox I was able to get the web interface to load by switching to a VPN. Before that it was showing a 500 error. Desktop app on Mac is still not connecting. Dropbox status page doesn’t show any issues.
-
Americanrambler (@Ameericanrambl1) reportedThe ******** at the corrupt American Fork Police Department forgot to set the dropbox to private, so they accidentally made all the unredacted videos public. Before they realized their errors, somebody downlaoded them. Here it is. American Fork PD Unredacted Body & Dashcam 6 3 26 220 PM : Free Download, Borrow, and Streaming : Internet Archive #recklessben #americanfork #bricksandminifigs
-
Kevin A. Bryan (@Afinetheorem) reported@jbarro Especially because "you have to mail it in a week before the election or else drop it at an election site dropbox after that date" is a totally reasonable compromise done all over the US and world which would immediately fix the problem.
-
Harshita Renee (@harshitaxmars) reportedDespite me having proven him wrong about the exact requirement table issue he pinned on me as a “it’s her problem, shut her up” (Dropbox has the scoresheet proving I was not out of line, they were), I don’t think he can ever be wrong. That is just technical error on his part.
-
J. (@munchivelo) reportedtrack back to just over a year to now. i'd built an automated ecommerce flow that took a whole store end to end. seo would research trends, products, and map those into .js scripts which would launch prompts that read those research files. that would feed an image gen prompt which created designs, set to specific standard. i'd generate them, and then ANOTHER prompt, would check the images, score them with a criteria, and either move them to an accepted folder, or move them to an archive folder. the accepted folders, would automatically fire a script which would open photoshop, map the image to smart layers, in a 'product shot' template i'd made, and then export all of the final product shots to another folder, and then exported the flat designs which would be used for the products. another script took the product images, did visual lookups, generated all product descriptions, renamed the images and generated the seo text. it ran optimizations locally via a jpegoptim and oxipng script. it then uploaded them to dropbox, and via API, would generate a dropbox link map. i had one barebones csv template, which i'd run a ps1 script through to map json files into the csv rows, and insert the dropbox link map. all my images, links, followed the exact same slugs, so it turned 2 hours of manual work into a 5 second bulk rename and insert. it then converted that csv into json, which then itself converted that json into ld-json for product rich listings. ai would write the product description based on a dataseo keywords, and googletrends json file that would run on every product type. collecting keywords for that specific product. it also formed it around brand profiles, copy guides and other things. this was sonnet 3 days, GPT 4.0 days, and it STILL wrote great copy when it had the right guidance. in the .js file, i'd replace all em dashes with a hyphen if they ever appeared. i built a custom product uploader, built my own php plugin which synced to local .js files and connected via rest. it was (and still is) one of the best wc product uploaders that exist, as it completely resets filterlookups only for that product, and is lightning fast because i upload it directly into the sql from json. no importers or WC rest needed. the images would be uploaded via ftp, and then on detection, would sync those to the media library. it took what would be 3 hours of manual work, and congested it into a 2 minute image, to fully live product. after that, i'd export sales data, the ai was constantly learning, sales data feeding back to files, which would then teach the ai what products work, what doesn't. what copy worked, what copy didn't. all of it was local on my pc. i wasn't selling an saas. it was just something that worked for my very particular setup. i built that mostly with GPT 4.0 and a little bit of 3.5. copy and pasting the chats from chatGPT. all the plugins, the php, everything. then some of it got improved inside vscode back on the old original copilot plans. this was before n8n, before agents were even a thing. all of that was built for me, local, syncing folder to folder, json file to json file. python scripts watching files, and .ps1 files that would follow up with other .ps1 files, which launched .js files which contained prompts for AI, and hitting the openAI API's whenever I needed the AI layer. eventually i built a terminal tool, which would allow me to run the scripts from the terminal, and i'd manually type in the slugs for which products i wanted processed. all files would sit in specific folders, and scripts would do the rest. i was so excited about that, giving my terminal app a shortcut icon and putting it onto my taskbar. that was a year ago. fast forward to now. the game has changed so much. ANYTHING and i mean anything is possible now. i've had this ******* idea for so long, to build a fully automated, self learning ecom business, that launches products end to end based on it's own research, writing, and growth, but the complexity of it previously , and being busy with life, it never got finalized. and i've finally been building the replacement for it, but it'll be able to do many other things. i'll be able to run that exact same system, except this time through a full app, with a canvas, and agent systems instead of .ps1 scripts. not to say i won't run scripts; they're an integral part of any automated workflow, but now it has superpowers. not only that, but i moved away from woocommerce entirely. instead i just built my own website builder, which is fully automated end to end. my brand profiles, my artwork system? i'm still using those, just for more things. now i can launch 50 brands just like it, running the same system, all in about 5 minutes. except this time, a year later, we have GPT 2.0, and seedance. which offer MUCH better usage for ecommerce than it was back 1 year ago. i also built an ad builder. it takes my brands images, or generates images. i've got background removed, and full skills and agents which practically generate the ads for me. it mixes all that into seedance videos, and posts in logos etc. now i take those image/videos, and build instagram, tiktok, facebook vids, generate descriptions, and upload them automatically. that's why it's so great building for yourself. the amount of reusability you get with it, the fact it's free forever, can never be beaten. i'm not selling anything yet. but if you're interested in seeing how i think about automation, then stay a while and listen. the tool i'm building will absolutely help you too. but i'll be honest. i'm actually quite scared to release it, solely down to how powerful it is. not many people do it like i do, and i'm finally on here to tell the world.
-
Nav Toor (@heynavtoor) reportedOpen your bank statement right now. Count every subscription. Netflix. Spotify. ChatGPT Plus. Claude. Adobe. Apple One. Disney+. iCloud. YouTube Premium. Audible. NYT. Dropbox. Notion. Gym. Dating app. A 2026 study found the average American spends $219 a month on subscriptions. That is $2,628 a year. But they estimate they spend $86 a month. 74% of people admit they have forgotten about a recurring charge. 42% are currently paying for a subscription they have stopped using. A Portuguese developer named Miguel Ribeiro got tired of bleeding money to forgotten subscriptions. He lives in Berlin and works as a senior frontend engineer at eBay Kleinanzeigen by day. At night he tried Billbot and a bunch of paid web apps. None of them worked. Some of them charged him a monthly fee to track his monthly fees. So in October 2023 he wrote his own. The repo today: → 7,922 stars → 365 forks → GPL-3.0 licensed → Pushed last week → 69 followers on the founder's profile It is called Wallos. You self-host it. It tracks every subscription, every renewal date, every category, every currency, and shows you the actual number on one screen. Here is the wildest part: The subscription companies designed the system this way on purpose. 72% of people set everything to auto-pay because the checkout flow defaults to it. Cancellation pages are buried 5 clicks deep. Some require a phone call during business hours. A 2022 FTC report called this "dark patterns" and Adobe is paying $150 million in a settlement for hiding cancellation fees this exact way. Miguel did not raise venture capital. He did not write a Medium post. He did not go on a podcast. He shipped one PHP app from his apartment in Berlin and now thousands of people use it to claw back hundreds of dollars a year. The honest part: It needs a tiny server (a $5 Raspberry Pi works). You have to enter subscriptions yourself, it does not auto-detect from your bank. The UI is functional, not gorgeous. The author still works a day job and ships updates in his spare time. Berlin. One developer. The companies that auto-charge you forever finally have an enemy.
-
Blake Heron (@BlakeHer_on) reported@StartupArchive_ the dropbox and uber examples are the tell. scratch your own itch, ship the fix, discover a million people had the same itch.
-
Samuel Udeh (@Sammichike) reportedNice, Google Drive / Dropbox is still the go-to for a lot of people, especially for bigger files. But man, the moment you share that link… “Download required to view properly.” Preview looks compressed and ugly Sometimes the link breaks if permissions change Or the client just never downloads it That’s the exact frustration SnapVid @snap_vid was built to fix: Upload once → permanent streaming link No compression, instant play, beautiful previews (even on WhatsApp), no “download first” nonsense. If you ever get tired of the Drive preview pain on your next share, give it a quick test, free tier is unlimited for basics. What’s the main reason you usually pick Drive? File size? Ease? Or something else? Curious to know!
-
Chuck Thies (@ChuckThies) reportedApples to oranges. 2024 was not a mayoral election. The best comparison is 2022/2026. Last week, mail/dropbox performance was down about 15% as compared to the 2022 primary.
-
Aina (@Aina_Ai2) reportedThen the conversation took a turn. The technician pulled up Activity Monitor and showed him something: 23 apps were running in the background that the customer didn't have open. Adobe Creative Cloud. Spotify. Slack. Microsoft AutoUpdate. Dropbox. Google Drive sync. Three different "helper" apps installed during printer setup years ago. Each one was consuming small amounts of CPU, RAM, and battery cycles 24/7. The technician's words: "Your MacBook isn't slow because it's old. It's slow because it's running 23 jobs nobody hired it to do." System Settings → General → Login Items → look at the lists under both tabs → remove anything that doesn't need to launch automatically. The customer removed 18 of them on the spot.