Hello
It seems that there is a problem in the javascript code generated by "cache cleaner" in case of a wamp server on a windows localhost.
A // appears in the generated paths and the paths are therefore breaked. It works perfectly on an unix system.
It seems that the code does not take into account the running O.S.
Extract of generated code:
-------------------------------------------
{
cachecleaner_show_start();
var myXHR = new XHR( {
method: 'get',
onSuccess: function( data ) {
$( 'cachecleaner_msg' ).addClass( 'success' );
$( 'cachecleaner_msg' ).setText( 'Cache nettoyé' );
cachecleaner_show_end( 2000 );
},
onFailure: function() {
$( 'cachecleaner_msg' ).addClass( 'failure' );
$( 'cachecleaner_msg' ).setText( 'Le cache n'a pas pu être nettoyé' );
cachecleaner_show_end( 2000 );
}
} );
myXHR.send( '
localhost/joomla//administrator/index.php?cleancache=1' );
}
var cachecleaner_show_start = function() {
$( 'cachecleaner_msg' )
.setHTML( '<img src="
localhost/joomla//administrator/modules/...es/loading.gif" alt="" /> Cache en cours de nettoyage' )
.removeClass( 'success' ).removeClass( 'failure' )
.addClass( 'visible' );
$clear( cachecleaner_delay );
cachecleaner_fx.stop();
cachecleaner_fx.start({
'opacity': 0.8,
duration: 400
});
};
----------------------------------------------
Regards
Daniel