Jump to content
  • 0

Проблема с кэшированием.


Николай 2357
 Share

Question

Здравствуйте.

Вот такая у меня ситуация:

<? 
header("Expires: 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");
$rand=date('U');//Это я уже от безисходности изгалялся...
if(copy($HTTP_POST_FILES["file_name"] ["tmp_name"],$_SERVER['DOCUMENT_ROOT']."/tmp/pic001.gif")){
header("Location: test.php?rand=$rand");
}
?>
<html>
<body >
<img src="tmp/pic001.gif">

<form action="test.php" method="post" enctype="multipart/form-data">
<input name="file_name" type="file">
<input type="submit" />
</form>

Вобщем картинка закачивается, все хорошо и все видно. А если загрузить другую картинку, то файл перезаписывается, опять все хорошо, но IE (не проверял в других) упорно показывает старую картинку, как я понимаю откудато из глубин кэша.

Как избежать этого?

Спасибо.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Это почему еще? Файл то пишется с названием pic001.gif, так его и увидят все, кому не лень. Другие увидят то, что записано, а тот, кто пишет видит кэш. А вот так все нормально.

Link to comment
Share on other sites

  • 0
Вот так можно, оказывается:

<?
$r=date('U');

echo "<img src="tmp/pic001.gif?r=$r">";
?>

Дополнительный псевдо-параметр называется.

Супер! Не верю глазам. РАБОТАЕТ!

Пол-года назад ТАКОГО ПОНАВЕРТЕЛ (каждый раз новый путь к изображению, вначале скрипта куча проверок и удаление всех изображений кроме двух, т.к. при перезагрузке страницы изображения размножались и т.д. и т.п.) - сейчас обхохотаться можно, а, оказывается, можно было так просто.

В общем - спасибо.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy