IMHO.WS

IMHO.WS (https://www.imho.ws/index.php)
-   Веб-программирование (https://www.imho.ws/forumdisplay.php?f=29)
-   -   Как сделать обновление страницы? (https://www.imho.ws/showthread.php?t=90436)

Naked 04.08.2005 20:25

Как сделать обновление страницы?
 
Как на PHP сделать так, чтобы страничка не кэшировалась
Pragma: no-cache не помогает...:(

SergoZD 04.08.2005 20:34

Попробуй добавить одно из этих (или все вместе, там где я нашел, они рядом стояли как раз)
Код:

<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="no-cache" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />


Naked 04.08.2005 20:38

что-то не помогает...

aoxyz_30330 05.08.2005 17:28

header ("Cache-Control: no-store, no-cache, must-revalidate");
header ('Pragma: no-cache');

BorLase 05.08.2005 18:05

попробуй еще <META http-equiv="expires" content="0">

Face 09.08.2005 13:16

Попробуй так:

Header("Expire: Mon, 26 Jul 1997 05:00:00 GMT");
Header("Cache-Control: no-cache, must-revalidate");
Header("Pragma: no-cache");
Header("Last-Modified: ".gmdate("D, d M Y H:i:s")."GMT");


Часовой пояс GMT +4, время: 11:38.

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.