Quoi? From a report of last weekend’s BarCamp:
Simon Willison: have you tried using Flash cookies? — doesn’t go away when clear browser cookies, also cross-browser
Don’t go away? – that’s bad. Can someone confirm this?
by Alec Muffett
Quoi? From a report of last weekend’s BarCamp:
Simon Willison: have you tried using Flash cookies? — doesn’t go away when clear browser cookies, also cross-browser
Don’t go away? – that’s bad. Can someone confirm this?
Nopes, flash cookies live in their own space, apart from browser cookies and they’re not integrated. You can delete them manually, as well as disabling the storage option for all sites or for specific sites. Details at http://kb.adobe.com/selfservice/viewContent.do?externalId=52697ee8&sliceId=2
You can edit your settings and cookies by going here:
http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager06.html
yes. There’s two relevant directories. This script is for a mac.
#!/bin/tcsh
# ok, so I’m lame for tcsh
cd “${HOME}/Library/Preferences/Macromedia/Flash Player/”
foreach d ( macromedia.com/support/flashplayer/sys/* \#SharedObjects/*/* )
rm -rf “$d” && touch “$d” && chmod 400 “$d”
end
> ok, so I’m lame for tcsh
if it was plain csh, i would laugh… but then i am a bourne-shell purist, and uprate to perl where necessary. 🙂
mmm, running code. 🙂
Leave a Reply