1. Home
  2. Companies
  3. Dropbox
Dropbox

Dropbox status: access issues and outage reports

No problems detected

If you are having issues, please submit a report below.

Full Outage Map

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.

Problems in the last 24 hours

The graph below depicts the number of Dropbox reports received over the last 24 hours by time of day. When the number of reports exceeds the baseline, represented by the red line, an outage is determined.

At the moment, we haven't detected any problems at Dropbox. Are you experiencing issues or an outage? Leave a message in the comments section!

Most Reported Problems

The following are the most recent problems reported by Dropbox users through our website.

  • 50% Errors (50%)
  • 38% Sign in (38%)
  • 13% Website Down (13%)

Live Outage Map

The most recent Dropbox outage reports came from the following cities:

CityProblem TypeReport Time
Bournemouth Sign in 6 days ago
Paramaribo Errors 1 month ago
Bogotá Website Down 1 month ago
Auxerre Errors 1 month ago
Salt Lake City Sign in 1 month ago
Madrid Errors 2 months ago
Full Outage Map

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:

  • BLollis
    Brent Lollis (@BLollis) reported

    @maebatsu @wimmiebear Is there a new link for this version? The Dropbox and Google drive ones are not working for me

  • VISportsTalk
    Isha (@VISportsTalk) reported

    @DropboxSupport Still not working. Is there an ETA for when your website and app will be operational again?

  • 2DoApp
    2Do (@2DoApp) reported

    @PhilipLeworthy The Android app is going to unfortunately remain on CalDAV + Dropbox sync for now. I'll be updating it to fix a few issues as well as Tablet related compatibility issues but not major features planned. It remains functional the way it is albeit with a few limitations.

  • AdrienMatray
    Adrien Matray (@AdrienMatray) reported

    The fix is simple: do not use one generic code/ folder for all long-lived branches. Use separate Dropbox folders whose names encode the intended branch: code_main/ code_experimentation_main/ code_experimentation_main_name1Sandbox/ code_experimentation_main_name2Sandbox/

  • ashmath34
    Ashley Mathieu (@ashmath34) reported

    @DropboxSupport @Kuramichan7 having the same issue — can't create new folders, can't delete folders, can't rename folders, can't upload. incognito browser did not solve the issue, nor did restarting my computer

  • dawedeveloper
    David Tereba (@dawedeveloper) reported

    @terryaidev @MihariOyama Your dropbox issue might be resolved, TesterBuddy is a platform where devs list their betas and chat with testers directly.

  • Yoshiwi2
    Orewin1990.bsky.social (@Yoshiwi2) reported

    Okay, I think I've settled for an idea. I'll probably create an Dropbox account and upload all NSFW stuff there. Everyone who's interested in getting a link, once it's there, drop an comment down here. Won't be free tho. Around 10ish € a month

  • Afinetheorem
    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.

  • Lzmrtn66
    Lazaro M. (@Lzmrtn66) reported

    @Dropbox I'm having trouble regaining access to my Dropbox account. I have access to the registered email. I request a password change, you send the password, I log in with the password, then you say you'll send an SMS to my cell phone, but that SMS never arrives.

  • onghu
    Mohit Sindhwani (@onghu) reported

    @ocornut @RichardKogelnig Actually, some times the new menu is faster and the classic menu is much slower... but then sometimes, the new menu shows 3 entries called "Loading..." and that's terrible, too! I think one of my W11 PCs has almost instant context menu - the Dropbox notes were from that one.

  • TheSuperEng
    Shubh (@TheSuperEng) reported

    For the past months, tech layoffs have tormented the internet. I studied the biggest layoffs and found the major reasons. Let's look at the layoffs first: 1. Meta: 11,000+ employees / 13% Meta admitted it overestimated post-Covid growth. Revenue slowed, costs were high, and the company moved toward becoming leaner. 2. Google: 12,000 employees / around 6% Google said it had hired for a different economic reality and needed to refocus resources toward its biggest priorities, especially AI. 3. Microsoft: 10,000 employees / less than 5% Microsoft said customers were optimizing digital spending after the pandemic boom, while the company shifted investment toward strategic areas like AI. 4. Amazon: around 30,000 roles / nearly 10% Amazon cut corporate jobs to reduce bureaucracy, improve efficiency, and restructure around AI and faster decision-making. 5. Salesforce: 10% of workforce Salesforce admitted it hired too aggressively during the pandemic and had to resize after customer spending slowed. 6. Spotify: 17% of workforce Spotify said growth had slowed, capital had become expensive, and the company needed to become more efficient after years of heavy investment. 7. Twitter/X: Around 3,700 employees / nearly 50% After Elon Musk’s takeover, Twitter cut roughly half its workforce to slash costs after a massive drop in ad revenue. 8. Snap — 20% of workforce Snap cut jobs after revenue growth slowed sharply. It also shut down non-core projects like games, Originals, and the Pixy drone. 9. Intel: 15,000 roles / around 15% Intel cut jobs because costs were too high, margins were weak, and the company needed a $10B cost-saving plan to stay competitive. 10. Dropbox: 528 employees / 20% Dropbox said demand had softened, the org had too many layers, and it needed to shift focus toward newer growth areas, like AI products. All these layoffs were majorly because of: 1. pandemic overhiring 2. slower revenue growth 3. higher interest rates 4. pressure to improve margins 5. companies cutting management layers 6. money shifting toward AI infrastructure This is majorly conflicting with the idea that AI automation is taking everyone's job. There is absolutely no evidence that AI has caused massive layoffs because of "automation."

  • 0xlelouch_
    Abhishek Singh (@0xlelouch_) reported

    A good system design interview question for a Senior/Staff Backend Engineer is: Design Dropbox. At first, Dropbox looks like a simple file upload and download system. User uploads a file, we store it, and later they can access it from another device. But the real complexity is not uploading one file. The real complexity is sync, conflict resolution, versioning, permissions, large file handling, offline changes, metadata consistency, deduplication, and making the system feel instant across laptops, phones, and web. I would start by breaking the system into two major parts: file content and file metadata. File content means the actual bytes of the file. Metadata means file name, folder path, owner, size, checksum, version, permissions, timestamps, and deleted/restored state. These two should not be stored together. File bytes should go to blob/object storage, while metadata should go to a database that supports fast lookups and strong correctness. For upload, the client should not send a large file as one big request. A 2GB video should not restart from zero because the Wi-Fi dropped at 95%. So we should split files into chunks, calculate checksum for each chunk, and upload chunks independently. Once all chunks are uploaded, the server creates a file version that points to those chunks. This gives us resumable uploads, retry safety, and better network usage. A very important optimization is deduplication. If 10,000 users upload the same popular PDF, we do not want to store 10,000 copies of the same bytes. We can hash file chunks and store only unique chunks. Metadata will point to the chunk list. This saves huge storage cost, but we must be careful with privacy and security. Dedup should happen in a controlled way, not leak whether another user already has a specific file. The metadata service becomes the source of truth. Every change like upload, rename, move, delete, restore, or share should create a new metadata version. This is important because Dropbox is not just storage, it is a timeline of changes. If the user deletes a file by mistake, we should be able to restore it. If two devices make changes offline, we should know exactly what changed and when. Sync is the heart of the system. Each client should maintain a local sync token. Whenever something changes, the server writes it into a change log. The client can ask, “give me all changes after token X.” This is much better than scanning every folder again and again. For near real-time sync, clients can use long polling, WebSockets, or push notifications to know when new changes are available. Conflict handling is where naive systems fail. Imagine a user edits the same file on laptop while offline, and also edits it from mobile. When both devices come online, which version wins? For normal files, the safest approach is to keep both versions and create a conflict copy. For collaborative documents, we need deeper merging logic, but for a Dropbox-like file system, versioning plus conflict copies is usually good enough. Permissions should be checked before every sensitive operation. Sharing a folder is not just adding one row in a table. If a folder has thousands of files, permission inheritance becomes tricky. We should model ownership, viewer/editor access, shared links, link expiry, team policies, and audit logs. Permission changes should be strongly consistent because users must trust that removing access actually removes access. Downloads should first go through metadata and permission checks. After that, the system can return a short-lived signed URL from blob storage or CDN. Public/shared files can be cached more aggressively. Private files need careful access control. Performance is important, but leaking private files for speed is not acceptable.

  • LagoonLabsMv
    Lagoon Labs (@LagoonLabsMv) reported

    Dropbox is doubling down on virtual-first while everyone else pushes return to office - their people chief says hybrid is the worst of all worlds.

  • marcinmoskala
    Marcin Moskała (@marcinmoskala) reported

    StrictMode is a developer tool which detects things you might be doing by accident and brings them to your attention so you can fix them. StrictMode.ThreadPolicy among others can detect: - slow (blocking) operations on UI thread (detectCustomSlowCalls()) - blocking disc reads/writes on UI thread (detectDiskReads()/detectDiskWrites()) - mismatches between defined resource types and getter calls (detectResourceMismatches()) StrictMode.VmPolicy among others can detect: - leaks of Activity subclasses (detectActivityLeaks()) - when an SQLiteCursor or other SQLite object is finalized without having been closed. (detectLeakedSqlLiteObjects()) - when your app is blocked from launching a background activity or a PendingIntent created by your app cannot be launched (detectBlockedBackgroundActivityLaunch()) - when the calling application exposes a file:// Uri to another app (detectFileUriExposure()) - attempts to invoke a method on a Context that is not suited for such operation (detectIncorrectContextUse()) For both of them, we can specify a penalty: - penaltyLog() - Logs detected violations to the system log. - penaltyDeath() - Crashes the whole process on violation. - penaltyDialog() - Shows an annoying dialog to the developer on detected violations, rate-limited to be only a little annoying. - penaltyDropBox() - Enables detected violations log a stacktrace and timing data to the DropBox on policy violation. - penaltyFlashScreen() - Flashes the screen during a violation. - penaltyListener(…) - Set specific listener on violation.

  • 0xAlternateGuy
    alt guy (@0xAlternateGuy) reported

    @antirez quite suspicious this happens immediately after the Dropbox CEO steps down…

  • blackboxrms
    Blackbox RMS (@blackboxrms) reported

    Running a record label in 2026 is pure chaos: spreadsheets, Dropbox, endless emails. We built Blackbox RMS to fix it. One desktop app for releases, artists, contracts, promo & royalties. Built by a label, for labels. Link in bio. What's your biggest headache? 👇

  • trade_news_cast
    TradeNewsCast (@trade_news_cast) reported

    Dropbox CEO Drew Houston to Step Down, CNBC Says

  • VISportsTalk
    Isha (@VISportsTalk) reported

    @Dropbox Is your website down? Can't create new folders. Is everyone getting this error?

  • Kuramichan7
    Kuramichan (@Kuramichan7) reported

    Is dropbox not working for anyone atm? I was JUST uploading some files and now it won't let me anymore, it keeps ending in "upload failed". It won't even let me delete folders either, it just gets stuck on a stupid endless spinning wheel or whatever. ******* hate this **** man

  • VISportsTalk
    Isha (@VISportsTalk) reported

    @DropboxSupport Still not working

  • LongLongInteger
    Long Long Int (@LongLongInteger) reported

    Topic 7: Checksum: ========= Input Data -> Cryptographic hash functions like MD5, SHA-1, SHA-256, SHA-512 -> fixed size string is called checksum Checksum is used for checking data corruption during data transfer/upload Can be done both client-side and server-side Advantages of client-side checksum: =========================== -Detect data corruption during transmission -Resumable downloads (only after checksum match for each chunk, we mark that chunk as uploaded) -Deduplication before upload -Companies that do: Youtube, Google Drive, S3(optional), Dropbox Advantages of server-side checksum: ============================ -Verify storage integrity (to check disk corruption, large systems periodically check files) -Deduplication inside storage -Replication verification -Companies that do: Local file backup software, Dropbox, Google Drive, Youtube

  • sourav12dutta
    Sourav Dutta (@sourav12dutta) reported

    @ishankbg @Siradhvaja @PhilipPanass Yes, shodhganga seems to be down. Can you suggest how I can post a folder with 10 pdf files here? Both dropbox and wetransfer are asking for email id.

  • Kalshi_Finance
    Kalshi Finance (@Kalshi_Finance) reported

    JUST IN: Dropbox CEO Drew Houston to step down

  • jozefmaxted
    Jozef Maxted (@jozefmaxted) reported

    terrible rate limits, and errors when your AI of choice hits its head up against their overcomplicated block API. All problems you don't have if you knowledge base is just files! Thats why we've started building Treehouse, its basically Notion + Dropbox combined with loads ...

  • Natan90850688
    Natan Hackbarth (@Natan90850688) reported

    @peterhowell I used the original pak0.pak. I tested both Dropbox and PixelDrain hosting and tested the exact URL format from the README The app reaches "Fetching PAK" but then fails with "Could not fetch PAK URL" and a 403 error. What hosting method did you use when testing your own pak0.pak?

  • Augustuskiefer
    PATRICK (@Augustuskiefer) reported

    @DropboxSupport We did not. The issue resolved around 12:45 cst

  • HowToAI_
    How To AI (@HowToAI_) reported

    Google, Dropbox, and Apple are in trouble.. Someone open-source a tool that gives you unlimited cloud storage for free by using Telegram as the backend. Just log in with your Telegram ID and start uploading. → UNLIMITED storage → NO file size limits → NO subscription → NO credit card → Login in 3 seconds Google charges $120/year for 2TB. Dropbox charges $144. Apple charges $120. Telegram has been giving away infinity this whole time and you didn't know. Nobody can shut this down. 100% Open Source.

  • preshing
    Jeff Preshing (@preshing) reported

    What's the point of using smarter models if "smarter" means 10% better at finding obscure bugs and having a sassy attitude? Most of the true productivity gains that coding agents have to offer, which are finite, can be obtained using open-weight models for literally 1/100 of the price. The catch is that you actually need to understand the code you are working on. At the same time, I still think there's a viable business serving proprietary models. People are willing to pay for Dropbox even though FTP is free, and it's nice to throw a tough problem at a stronger model occasionally (if intellectual property limitations allow it). Plus, there's a whole frontier productizing this stuff. Unfortunately, Anthropic is currently in the business of spreading tall tales about future improvements, then shaking down enterprise customers. Most of it is based on 2010s LessWrong posts full of category errors, some of which I remember reading back in those days. And their recent hostility toward users in the name of safety is a result of the same ideological recklessness.

  • pelicartza
    Pelicart (@pelicartza) reported

    @lukey_stephens @_avdept real also - dropbox??? why would you pay $5 and not just set up an sftp server

  • Timbitz01
    Timbitz (@Timbitz01) reported

    @TodayUpdates0 @RedLineReportt They can be if they want as far as I'm concerned. But the problem is.. that's not how they are voting. It's all the mail in and absentee voting and the anytime dropbox and the counting til they win that's the problem.