Io non parlo italiano, ma io parlo di PHP.
I've you're on a server which properly conforms to RFC stuff, putting a raw URL in a query string will cause the server to respond with a 403.
When I changed
components/com_oziogallery2/views/06accordion/view.html.php
lines 121 and 123
to
case '0': $xml_moder = JURI::root(true).'/components/com_oziogallery2/skin/accordion/xml/accordion_'. $xmlname .'.xml';
(add the true parameter so we don't have to put all of the url in the query string and change
components/com_oziogallery2/views/06accordion/tmpl/default.php
line 27
var so = new SWFObject("<?php echo $this->accordiontitle . urlencode($this->xml_moder)?><?php echo '&keepSelected='?><?php if( $this->tuttochiuso == 1 ) echo "f"; else echo "t";?><?php echo '&selectedWindow='?><?php echo $this->fotoiniziale;?><?php echo '&imageWidth='?><?php echo $this->larghezzaimmagine;?><?php echo '&imageHeight='?><?php echo $this->altezzaimmagine;?><?php echo '&sWidth='?><?php echo $this->larghezza;?><?php echo '&sHeigh...
(add the urlencode)
it worked on my server.