1 (edited by p00674605 2013-02-26 12:24:02)

Topic: Muse issue with linking

I have added a few galleries to my site that work fine when I am working with the muse temporary address such as
http://meowcreative.businesscatalyst.co … esign.html but when I added my new domain to Muse, none of my galleries work anymore such as http://www.peterotoole.me/phone/design.html

Any ideas how to fix this? thanks

Re: Muse issue with linking

Your gallery at http://www.peterotoole.me/phone/design.html includes the following code:

<script src="http://meowcreative.businesscatalyst.com/phone/home_page_mobile/jbcore/juicebox.js"></script>
baseUrl : 'http://meowcreative.businesscatalyst.com/phone/home_page_mobile/',

All gallery files should be on the same domain or subdomain as the page into which the gallery is being embedded due to the JavaScript same origin policy.
It looks like you have uploaded your gallery folder to your www.peterotoole.me domain so just change the paths in your embedding code as follows and your gallery should display fine.

<script src="http://www.peterotoole.me/phone/home_page_mobile/jbcore/juicebox.js"></script>
baseUrl : 'http://www.peterotoole.me/phone/home_page_mobile/',

Alternatively, you could use relative paths within your embedding code as follows:

<script src="home_page_mobile/jbcore/juicebox.js"></script>
baseUrl : 'home_page_mobile/',