/    Sign up×
Community /Pin to ProfileBookmark

ok so i have a site everything work 100% in FF. but when i start it up in IE
it will save the search data in IE and i have to clear the Temp Internet files for it to pick up the changes it just did..

is there a way i can force my site to tell IE not to save the data of the search to the temp files?

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@blue-eye-labsJul 03.2010 — Add a random number in the GET part of the request e.g.
[CODE]
http://mysite.com/mypage?rand=my_random_number
[/CODE]


Can be easily generated with the timestamp, for example in PHP:
[code=php]
$url = sprintf("http://mysite.com/mypage?rand=%s", time());
[/code]
Copy linkTweet thisAlerts:
@dk_zero-coolJul 03.2010 — Add some cache control.
[code=php]header("Expires: Sun, 19 Nov 1978 05:00:00 GMT", true);
header("Last-Modified: ". gmdate("D, d M Y H:i:s") ." GMT", true);
header("Cache-Control: store, no-cache, must-revalidate", true);
header("Cache-Control: post-check=0, pre-check=0", false);[/code]
×

Success!

Help @willmcinnis spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.19,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...