Your gallery's embedding code contains the following line:
<script src="http://wizofozphotography.com/wedslide/jbcore/juicebox.js"></script>This hard-codes the wizofozphotography.com domain in the path so your gallery may display correctly only if you visit your web site via wizofozphotography.com and not www.wizofozphotography.com.
I suspect that when users see the "Config XML file not found" message, they are probably viewing your gallery on www.wizofozphotography.com (using the 'www' subdomain).
All gallery files must be on the same domain or subdomain as the HTML page containing the gallery's embedding code (due to the same origin policy: https://developer.mozilla.org/en-US/doc … gin_policy.)
Try using relative rather than absolute paths in your gallery's embedding code.
Change the line above to the following:
<script src="/wedslide/jbcore/juicebox.js"></script>The leading slash in the path above denotes yuor root directory and this should work on both wizofozphotography.com and www.wizofozphotography.com
This should hopefully solve your problem.