Dynadot โ€” .com Registration $8.99

AOL and viewing a revised web page

Spaceship Spaceship
Watch
Impact
0
Can anyone help me with this? I make changes on a web site and AOL users can't see the changes. Even after they refresh their page, it doesn't show. Is there a secret here? Do I just need to add a statement on the pages for AOL viewers to use Internet Explorer?

I'll be grateful for any help.

Thanks,
Paula Sue
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
.US domains.US domains
AOL uses a network of caching proxy servers. use the Cache-control directive to disable caching, and hope the proxy respects that.

I should mention that you shouldn't do this in the browser via META tags. Use the php header() call or whatever language-specific alternatives at your disposal.
 
0
•••
Just don't use AOL...simple as that.
 
0
•••
I second that! AOL users need to be put in a box and thrown into the sun IMO...
Every IRC chan im +o in has a perm *!*@*.ipt.aol.com ban :hehe:
 
0
•••
TheComputerGeek247 said:
Just don't use AOL...simple as that.

you can't control what your visitors use, and if you start redirecting aol users to somewhere else your just throwing away a lot of traffic
 
0
•••
That's ok.../dev/null is a very big place. The AOLers will be in fine company :D
 
0
•••
I've never used Cache-control

monaco said:
AOL uses a network of caching proxy servers. use the Cache-control directive to disable caching, and hope the proxy respects that.

I should mention that you shouldn't do this in the browser via META tags. Use the php header() call or whatever language-specific alternatives at your disposal.


Can you give me some more info here? Or, send me someplace that gives me a step-by-step tutorial or something? I think this is the right direction, I just need to learn how to use it.

Thanks,
Paula Sue
 
0
•••
paulasue said:
Can you give me some more info here? Or, send me someplace that gives me a step-by-step tutorial or something? I think this is the right direction, I just need to learn how to use it.

Thanks,
Paula Sue

From the PHP manual, the following will prevent caching in all forms:
PHP:
<?php
// Date in the past
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

// always modified
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
 
// HTTP/1.1
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);

// HTTP/1.0
header("Pragma: no-cache");
?>

Remember that headers need to be sent before anything else in the page, even the <!DOCTYPE> statement.
 
0
•••
Thank you, thank you, thank you!!!

Paula Sue
 
0
•••
Any time...we're all here to help :)
 
0
•••
Brian said:
you can't control what your visitors use, and if you start redirecting aol users to somewhere else your just throwing away a lot of traffic
I'd be alright with that. :p
 
0
•••
One more dumb question

Remember that headers need to be sent before anything else in the page, even the <!DOCTYPE> statement.[/QUOTE]


I was going to put this in the <head></head> section and then second guessed myself. You said before everything else in the page. So, does that mean it goes before the <html> tag also?

Thanks,
Paula Sue
 
0
•••
paulasue said:
Remember that headers need to be sent before anything else in the page, even the <!DOCTYPE> statement.


I was going to put this in the <head></head> section and then second guessed myself. You said before everything else in the page. So, does that mean it goes before the <html> tag also?

Thanks,
Paula Sue
It goes before EVERYTHING.
 
Last edited:
0
•••
Dynadot โ€” .com Registration $8.99Dynadot โ€” .com Registration $8.99
Appraise.net
Unstoppable Domains
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back