Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Removing History but not Bookmarks (Local files)

more options

Hello,

I am a computer technician currently trying to write a small python script that will clear a users cache, cookies, and history in Firefox on a Mac.

From what I can tell, both the history and bookmarks for a user is saved in one file named "places" (specifically under "/Users/[username]/Library/Application Support/Firefox/Profiles/[jargon].default-release/places.sqlite")

Is there a way to clear just the history for a user, that doesn't go through the browser GUI? I would really like to avoid mixing CLT with Selenium or something of that sort with python.

Any information is welcome!

Thank you,

Hello, I am a computer technician currently trying to write a small python script that will clear a users cache, cookies, and history in Firefox on a Mac. From what I can tell, both the history and bookmarks for a user is saved in one file named "places" (specifically under "/Users/[username]/Library/Application Support/Firefox/Profiles/[jargon].default-release/places.sqlite") Is there a way to clear just the history for a user, that doesn't go through the browser GUI? I would really like to avoid mixing CLT with Selenium or something of that sort with python. Any information is welcome! Thank you,

Vybrané riešenie

Ah thank you for the information, seems like I have some more things to learn!

EDIT: With that information as some direction, I was able to use a method from an Ubuntu forum where they navigated to the "places.sqlite" file in the terminal. Opened the file with Sqlite3 and removed the history table with "DELETE FROM moz_historyvisits;"

Seems like it worked like a charm!

Čítať túto odpoveď v kontexte 👍 0

Všetky odpovede (2)

more options

You can only remove history properly by running the appropriate SQLite statements.

Pomohla vám táto odpoveď?

more options

Vybrané riešenie

Ah thank you for the information, seems like I have some more things to learn!

EDIT: With that information as some direction, I was able to use a method from an Ubuntu forum where they navigated to the "places.sqlite" file in the terminal. Opened the file with Sqlite3 and removed the history table with "DELETE FROM moz_historyvisits;"

Seems like it worked like a charm!

Upravil(a) Griffin Chastain dňa

Pomohla vám táto odpoveď?

Položiť otázku

Ak chcete odpovedať na príspevky, musíte sa prihlásiť do svojho účtu. Ak ešte nemáte účet, položte novú otázku.