con firebug sono riuscito a capire il file che fà funzionare il filemanager di virtuermart, ossia fetchscript.php.
all'interno del file ci sono due porzioni di codice che mi insospettiscono:
function http_conditionalRequest($timestamp){
// A PHP implementation of conditional get, see
//
http://fishbowl.pastiche.org/archives/001132.html $last_modified = gmdate( 'D, d M Y H:i:s', $timestamp ) . ' GMT';
$etag = '"'.md5($last_modified).'"';
// Send the headers
header("Last-Modified: $last_modified");
header("ETag: $etag");
-------------------------------------------------------
// Tell the user agent to cache this script/stylesheet for a week
$age = 604800;
header( 'Expires: '.gmdate( 'D, d M Y H:i:s', time()+ $age ) . ' GMT' );
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s', @filemtime( $file ) ) . ' GMT' );
header( 'Cache-Control: public, max-age='.$age.', must-revalidate, post-check=0, pre-check=0' );
header( 'Pragma: public' );
---------------------------------------------------------
di conseguenza il filemanager metter per prima l'ultima immagine che vado ad inserire....quindi in teoria non mi resta che fare il contrario, ossia eseguire l'inserimento dall'ultima immagine sino alla prima