[GH-ISSUE #875] Bug: Unable to delete snapshots via UI button on Safari #2048

Open
opened 2026-03-01 17:56:04 +03:00 by kerem · 10 comments
Owner

Originally created by @dotfrankruan on GitHub (Oct 9, 2021).
Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/875

I am using archivebox the latest version web client, when I try to delete a snapshot, it always says ‘no actions selected’
How could this happen?
By the way, I am using archivebox on arm64(aarch64) platform

Originally created by @dotfrankruan on GitHub (Oct 9, 2021). Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/875 I am using archivebox the latest version web client, when I try to delete a snapshot, it always says ‘no actions selected’ How could this happen? By the way, I am using archivebox on arm64(aarch64) platform
Author
Owner

@pirate commented on GitHub (Oct 10, 2021):

Can you screenshot the screen where you click delete

<!-- gh-comment-id:939386020 --> @pirate commented on GitHub (Oct 10, 2021): Can you screenshot the screen where you click delete
Author
Owner

@cdzombak commented on GitHub (Nov 15, 2021):

Also running into this. Screenshot, showing "no actions selected" at the top, since I already tried to delete these:

Screen Shot 2021-11-15 at 4 22 17 PM
<!-- gh-comment-id:969334882 --> @cdzombak commented on GitHub (Nov 15, 2021): Also running into this. Screenshot, showing "no actions selected" at the top, since I already tried to delete these: <img width="1621" alt="Screen Shot 2021-11-15 at 4 22 17 PM" src="https://user-images.githubusercontent.com/102904/141855760-7927f093-0565-4e34-8549-d13e93721ed4.png">
Author
Owner

@pirate commented on GitHub (Nov 16, 2021):

We recently pushed a fix for this. Please upgrade to the dev branch pre-release version and see if it's still happening https://github.com/ArchiveBox/ArchiveBox#install-and-run-a-specific-github-branch

<!-- gh-comment-id:969480133 --> @pirate commented on GitHub (Nov 16, 2021): We recently pushed a fix for this. Please upgrade to the `dev` branch pre-release version and see if it's still happening https://github.com/ArchiveBox/ArchiveBox#install-and-run-a-specific-github-branch
Author
Owner

@hrwtech commented on GitHub (Apr 28, 2022):

This is still a problem. Can't delete a snapshot that keeps throwing errors. So I can't even archive past this point now. Great Idea but I have found that I now just have 15gb of data thats mostly unusable because the ui doesn't successfully perform ANY actions.

<!-- gh-comment-id:1112458422 --> @hrwtech commented on GitHub (Apr 28, 2022): This is still a problem. Can't delete a snapshot that keeps throwing errors. So I can't even archive past this point now. Great Idea but I have found that I now just have 15gb of data thats mostly unusable because the ui doesn't successfully perform ANY actions.
Author
Owner

@pirate commented on GitHub (May 3, 2022):

What browser?

<!-- gh-comment-id:1115556979 --> @pirate commented on GitHub (May 3, 2022): What browser?
Author
Owner

@kennir commented on GitHub (May 20, 2022):

I have the same problem on the Safari, Chrome is ok

<!-- gh-comment-id:1132427559 --> @kennir commented on GitHub (May 20, 2022): I have the same problem on the Safari, Chrome is ok
Author
Owner

@fuomag9 commented on GitHub (Jan 26, 2023):

This is still a problem on safari, chrome is fine

<!-- gh-comment-id:1405288861 --> @fuomag9 commented on GitHub (Jan 26, 2023): This is still a problem on safari, chrome is fine
Author
Owner

@pirate commented on GitHub (Jan 31, 2023):

That makes sense, Safari often doesn't like how we form-encode the button action + checked row IDs during submission (see related issues below).

Because I'm going to tear out all those buttons and rewrite them in the next 0.7 0.8 release anyway, I'm going to delay fixing this myself (the buttons are stuck using old Django 3.1 internal templates that are blocking the upgrade to >3.2 https://github.com/ArchiveBox/ArchiveBox/issues/988).

I apologize for the inconvenience/delay, those buttons and the 3.1 templates they use have caused a bunch of trouble over the last few years and it's time for them to be rewritten anyway. ArchiveBox development pace is slow, I can't promise this will be fixed soon but I promise it wont be forgotten because I do test big releases on Safari and care about Safari UX still long-term.

In the meantime you should still be able to delete snapshots via the CLI archivebox remove --help and other browsers in the UI.

Related issues:

If this is critical to you or you feel particularly motivated and want to contribute a quick fix before I get around to the rewrite, I'd be happy to review a PR. You can see how we solved similar Safari action button issues in the past with JS workarounds (in the above issues) for inspiration.

<!-- gh-comment-id:1409594596 --> @pirate commented on GitHub (Jan 31, 2023): That makes sense, Safari often doesn't like how we form-encode the button action + checked row IDs during submission (see related issues below). Because I'm going to tear out all those buttons and rewrite them in the next ~~0.7~~ 0.8 release anyway, I'm going to delay fixing this myself (the buttons are stuck using old Django 3.1 internal templates that are blocking the upgrade to >3.2 https://github.com/ArchiveBox/ArchiveBox/issues/988). I apologize for the inconvenience/delay, those buttons and the 3.1 templates they use have caused a bunch of trouble over the last few years and it's time for them to be rewritten anyway. ArchiveBox development pace is slow, I can't promise this will be fixed soon but I promise it wont be forgotten because I do test big releases on Safari and care about Safari UX still long-term. In the meantime you should still be able to delete snapshots via the CLI `archivebox remove --help` and other browsers in the UI. Related issues: - https://github.com/ArchiveBox/ArchiveBox/pull/886 - https://github.com/ArchiveBox/ArchiveBox/pull/885 - https://github.com/ArchiveBox/ArchiveBox/issues/658 - https://github.com/ArchiveBox/ArchiveBox/issues/988 If this is critical to you or you feel particularly motivated and want to contribute a quick fix before I get around to the rewrite, I'd be happy to review a PR. You can see how we solved similar Safari action button issues in the past with JS workarounds (in the above issues) for inspiration.
Author
Owner

@rmohns commented on GitHub (Sep 1, 2023):

Workaround:
For anyone who comes across this: you can delete one snapshot at a time by going to the Admin listing, click the timestamp of the snapshot you wish to delete. This takes you to the edit screen. Scroll down, the Delete button is in the bottom left corner.

@pirate thank you so much for taking this bug seriously. An awful lot of web developers who didn’t live through the IE6 era have no idea why they should care about anything other than Chrome. Thanks for not being one of them ❤️

<!-- gh-comment-id:1702112634 --> @rmohns commented on GitHub (Sep 1, 2023): **Workaround:** For anyone who comes across this: you can delete one snapshot at a time by going to the Admin listing, click the timestamp of the snapshot you wish to delete. This takes you to the edit screen. Scroll down, the Delete button is in the bottom left corner. @pirate **thank you so much for taking this bug seriously.** An awful lot of web developers who didn’t live through the IE6 era have no idea why they should care about anything other than Chrome. Thanks for not being one of them ❤️
Author
Owner

@pirate commented on GitHub (Jan 19, 2024):

Sorry I didn't get around to this yet in the v0.7.2 release. Haven't forgotten about it! (PR's welcome if anyone beats me to it)

<!-- gh-comment-id:1899765617 --> @pirate commented on GitHub (Jan 19, 2024): Sorry I didn't get around to this yet in the v0.7.2 release. Haven't forgotten about it! (PR's welcome if anyone beats me to it)
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ArchiveBox#2048
No description provided.