Topic: Getting Config XML error on previously working gallery

It was working, although hit or miss... mostly was... now mostly isn't. 

Getting this error:
Juicebox Error: Config XML file not found

Site is:  http://fastlanetravel.com/flt-gallery.php

I filed a support ticket and forgot to include the url... :(

Hope it's an easy fix!

Thanks!
Christine

Re: Getting Config XML error on previously working gallery

Your gallery uses a baseUrl of http://www.fastlanetravel.com/flt-gallery/ but you quoted your web site address as http://fastlanetravel.com/flt-gallery.php (note the use of the 'www' subdomain in the baseUrl).
Your gallery will display fine if you visit your web page using the 'www' subdomain: http://www.fastlanetravel.com/flt-gallery.php

All the Juicebox gallery files must be on the same domain or subdomain as the JavaScript embedding code due to the same-origin policy. Please see this web page for further information.

Changing your baseUrl to use a leading slash to denote your root directory (rather than using an absolute URL with the 'www' subdomain) will work for both fastlanetravel.com and www.fastlanetravel.com.

baseUrl : '/flt-gallery/',

Re: Getting Config XML error on previously working gallery

Thanks... I changed it and it now looks like this:

<!--START JUICEBOX EMBED-->
<script src="http://www.fastlanetravel.com/flt-gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : "juicebox-container",
baseUrl : '/flt-gallery/',
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

In looking at it more closely, however, do I need to do anything to the <script src="...."   which is pointing at http://www?

thanks for your prompt reply.  :)
Christine

Re: Getting Config XML error on previously working gallery

Yes. Do the same for the path to the 'juicebox.js' file.
Change:

<script src="http://www.fastlanetravel.com/flt-gallery/jbcore/juicebox.js"></script>

... to:

<script src="/flt-gallery/jbcore/juicebox.js"></script>