Helllo
got someone to ix this problem, here s the modifications he has done :
I did 2 changes in components admin folder
/// ****In administrator\components\com_rsgallery2\includes\items\image.php$thumb = $rsgConfig->get('imgPath_thumb') . $gallery_path . "/" . imgUtils::getImgNameThumb( $this->name );
$display = $rsgConfig->get('imgPath_display') . $gallery_path . "/" . imgUtils::getImgNameDisplay( $this->name );
$original = $rsgConfig->get('imgPath_original') . $gallery_path . "/" . $this->name;
replaced with/// ****In administrator\components\com_rsgallery2\includes\items\image.php
$thumb = $rsgConfig->get('imgPath_thumb') . $gallery_path . "" . imgUtils::getImgNameThumb( $this->name );
$display = $rsgConfig->get('imgPath_display') . $gallery_path . "" . imgUtils::getImgNameDisplay( $this->name );
$original = $rsgConfig->get('imgPath_original') . $gallery_path . "" . $this->name;
Second was ugly hack... but i could not found another way to do this (of course we can do this with joomla core code.... but it's 5-6 lines code
)/// ****In C:\wamp\www\joomla1.5\administrator\components\com_rsgallery2\init.rsgallery2.phpdefine('JURI_SITE', $app->isSite() ? JURI::base() : $mainframe->getSiteURL());
replaced with/// ****In C:\wamp\www\joomla1.5\administrator\components\com_rsgallery2\init.rsgallery2.php
define('JURI_SITE', $app->isSite() ? "http://www.vincentlecuyer.com" : $mainframe->getSiteURL());
Hope this helps