There must be some kind of server side cache on my server...
Every time when I am requesting content using jquery ajax i get the same data, even if I replace server side code with
echo('hello, world!');
Used configuration:
- SuSE Linux
- Apache Server
- PHP 5
What kind of caching could be active?
As you can see, I have implemented two codes to prevent browser caching within the javascript below. The problem is definitely on the server side.
Just for information:
Client side code:
// Add a timestamp to url to prevent browser from caching ajax content
var date = new Date();
var timestamp = date.getTime();
var nocache = '&nocache=' + timestamp;
// Ajax call: get entries, add to entries div
$.ajax({
type: "POST",
url: "jsfeed.php",
//data: "lastmsg="+ ID,
data: "<?php echo("key=$api_key&fc=$collection_ident&offset="); ?>" + (ID+1) + "<?php echo("&showmax=$showmax&nocontainer" . $jstaggedonly); ?>" + nocache,
cache: false,
success: function(html) {
$("div#updates").append(html);
$("#more"+ID).remove();
}
});
Server side code:
if( isSet($_POST['offset']) && isSet($_POST['showmax']) )
{
$offset = $_POST['offset'];
$showmax = $_POST['showmax'];
$new_offset = $offset + $showmax;
$call = $api_url . 'jsfeed.php?' . $_SERVER['QUERY_STRING'];
$html = file_get_contents($call);
echo($html);
// ...
}
Edit:
If you want to have a look - the page where I'm testing (online for a limited time)... Search for a "Show more" button below updates list. This is where the ajax call is triggered.
Edit:
I solved this. There was an error in my script. There is no need to append a timestamp manually, like I did above. jQuery option cache: false is enough. So, it just looks like this:
// Ajax call: get entries, add to entries div
$.ajax({
type: "POST",
url: "jsfeed.php",
data: "<?php echo("key=$api_key&fc=$collection_ident&offset="); ?>" + (ID+1) + "<?php echo("&showmax=$showmax&nocontainer" . $jstaggedonly); ?>",
cache: false,
success: function(html) {
$("div#updates").append(html);
$("#more"+ID).remove();
}
});

"jsfeed.php"with"jsfeed.php?" + Math.random()... that will disable any cache for sure. If it is still happening, make sure you are actually requesting from the file you think you are requesting from. – Andreas Sep 5 '11 at 20:04