Topic: ipod Juicebox Error:Config XML file not found

Although my test gallery works fine on PC ipod reports ipod Juicebox Error:Config XML file not found

<script src="http://www.arunset.com/gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : 'juicebox-container',
baseUrl : 'http://www.arunset.com/gallery/'
});
</script>
<div id="juicebox-container"></div>

Re: ipod Juicebox Error:Config XML file not found

As you have hard-coded the 'www' subdomain into the URLs in your embedding code, make sure that you access your web page on your iPod using the 'www' subdomain, too. If you access your web page via http://arunset.com/ then you are likely to see the "Config XML file not found." error message.
All Juicebox gallery files must be on the same domain (or subdomain) as the web page containing the JavaScript embedding code due to the same-origin policy.

If you want to be able to view your gallery on both http://arunset.com/ and http://www.arunset.com/ then use relative URLs (rather than absolute URLs) in your gallery's embedding code:

<script src="/gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : 'juicebox-container',
baseUrl : '/gallery/'
});
</script>
<div id="juicebox-container"></div>

Re: ipod Juicebox Error:Config XML file not found

Thanks Steve, just need to get my head around size of gallery with my webpage and photo sizing.