I’ve search and nothing seems to work at all. I need the best way to disabling .swf flash caching.
Is there something I can do inside the project file? .htaccess?...
Thanks Tim
- Microlancer Beta Tester
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 50 and 99 items
- Exclusive Author
- Has been a member for 3-4 years
- Item was Featured
- Sold between 100 000 and 250 000 dollars
1 – no cache header
header( ‘Expires: Sat, 26 Jul 1997 05:00:00 GMT ’ ); header( ‘Last-Modified: ’ . gmdate( ‘D, d M Y H :i:s’ ) . ’ GMT ’ ); header( ‘Cache-Control: no-store, no-cache, must-revalidate’ ); header( ‘Cache-Control: post-check=0, pre-check=0’, false ); header( ‘Pragma: no-cache’ );
2 – web developer bar in Firefox
https://addons.mozilla.org/en-US/firefox/addon/web-developer/3 – cache buster
http://swflocation.com/my.swf?cachebuster=5329052replace 5329052 with a generated random number
Thank you Zoom! I’ll give it a try.
- Attended a Community Meetup
- Community Moderator
- Has been a member for 5-6 years
- United Kingdom
- Contributed a Tutorial to a Tuts+ Site
- Won a Competition
- Contributed a Blog Post
- Beta Tester
- Bought between 50 and 99 items
ZoomIt said
3 – cache buster
http://swflocation.com/my.swf?cachebuster=5329052 replace 5329052 with a generated random number
+1
To disable the cache on any url request just add either the date / time or a random number to the url string and the cache will be broken, easy 
