Hi there,
I found OzioGallery 2.6 very impressive, and I use it on my site with Cooliris Skin (
www.gemms.fr).
By the way, automatic settings are not good for me, because I wanted to manage thumbnails.
In manual mode, it works bu editing XML file, but I found out that some settings don't work in manual.
Investigating code, I modified default.php in components\com_oziogallery2\views\10cooliris\tmpl\:
<?php if ( $this->xml_mode == 0 ) : ?>
feed: "<?php echo JURI::root() ?>components/com_oziogallery2/skin/cooliris/xml/cooliris_<?php echo $this->nomexml ?>.ozio?<?php echo $randval; ?>&numRows=<?php echo $this->rows ?>&backgroundColor=0x<?php echo $this->bkgndretro ?>&backgroundImage=<?php echo $this->immaginesfondo ?>&showEmbed=false&glowColor=0x<?php echo $this->framecolor ?>&showDescription=<?php echo $this->download ?>&cellWidth=<?php echo $this->larghezzaant ?>&cellHeight=<?php echo $this->altezzaant ?>&cellSpacingX=<?php echo $this->distanzaoriz ?>&cellSpacingY=<?php echo $this->distanzavert ?>"};
<?php else: ?>
/* Cas de chargement manuel traite au moins l'image de fond*/
feed: "<?php echo JURI::root() ?><?php echo $this->manualxmlname ?>&numRows=<?php echo $this->rows ?>&backgroundColor=0x<?php echo $this->bkgndretro ?>&backgroundImage=<?php echo $this->immaginesfondo ?>"};
This works, might be useful to make some update?