1 (edited by cforino77 2013-02-10 16:39:52)

Topic: tried every which way and cannot see the gallery once i emebed...help!

here is the html

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

here is my ftp:

html
[Apache Logs]
[Error Logs]
assets
ccassociates
cgi
css
globelistings
images
miaforino
onelouder
onelouderdesign
scripts
stellarwines
v3magazine
vthree
12 Directories and Files (1 Selected)
   
Page Size:          Page of 1
    Filename    Size    Date Modified    File Type    Permissions
    [miaforino]                  
   
    3month    --    2/10/2013 8:14:31 am    Directory   
   
    css    --    2/9/2013 7:36:41 pm    Directory   
   
    images    --    2/9/2013 7:36:48 pm    Directory   
   
    scripts    --    2/6/2013 9:05:15 pm    Directory   
   
    1-month.html    30.5 KB    2/9/2013 7:36:46 pm    HTML File   
   
    2-months.html    26.3 KB    2/9/2013 7:36:46 pm    HTML File   
   
    3-months.html    13.1 KB    2/9/2013 8:27:16 pm    HTML File   
   
    index.html    4.85 KB    2/9/2013 7:36:45 pm    HTML File   
   
    muse_manifest.xml    23.5 KB    2/10/2013 8:30:16 am    File   
   
    my-1st-days.html    26.2 KB    2/9/2013 7:36:48 pm    HTML File   
   
    sitemap.xml    54.7 KB    2/10/2013 8:30:17 am    File   
   
    untitled-6.html    4.78 KB    2/10/2013 8:30:15 am    HTML File

2 (edited by cforino77 2013-02-10 16:41:56)

Re: tried every which way and cannot see the gallery once i emebed...help!

on another note....i can view that gallery at http://www.miaforino.com/3month/
but it will not pull up on my site

and i am using adobe muse

Re: tried every which way and cannot see the gallery once i emebed...help!

Your gallery includes the following code:

<script src="http://miaforino.com/miaforino/3month/jbcore/juicebox.js"></script>
baseUrl : 'http://www.miaforino.com/miaforino/3month/',

Please note that www.miaforino.com is a subdomain of miaforino.com and all gallery files must be on the same domain (or subdomain) due to the JavaScript same origin policy. Please see this web page for more information.

If you wish to access your web page using www.miaforino.com, then please use the 'www' subdomain in all absolute paths in your embedding code.

To have the gallery display when visiting both www.miaforino.com and miaforino.com, try using relative paths in your embedding code (relative to the HTML page containing the embedding code).

4 (edited by cforino77 2013-02-11 08:46:24)

Re: tried every which way and cannot see the gallery once i emebed...help!

Thanks for the response Steven.  I still can get the gallery to populate on a live page.  I dont get an xml error, just a large HTML blue screen that i can resize, but no image.  Did what you suggested but with no luck. 

Heres my code:

<!--START JUICEBOX EMBED-->
<script src="http://www.miaforino.com/miaforino/3month/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : "juicebox-container",
baseUrl : 'http://www.miaforino.com/miaforino/3month',
galleryWidth: "800",
galleryHeight: "500",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

Here is another way I tried it:

<!--START JUICEBOX EMBED-->
<script src="http://www.miaforino.com/miaforino/3month/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : "juicebox-container",
baseUrl : 'http://www.miaforino.com/3month',
galleryWidth: "800",
galleryHeight: "500",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

Still no luck.  My domain points to my hosting account and in my main directory I have my site folder as miaforino.  The sub folder is 3month where i uploaded the images and folders from the juicebox builder.

Just playing with this on my daughters site to see if it is viable for clients in the pro version. If you have any more insight I would appreciate it.

Thanks

This is my ftp folder:

miaforino


3month


images


jbcore


thumbs

Re: tried every which way and cannot see the gallery once i emebed...help!

It looks like your gallery folder is located at: http://www.miaforino.com/3month/
... so try the following embedding code:

<!--START JUICEBOX EMBED-->
<script src="http://www.miaforino.com/3month/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : "juicebox-container",
baseUrl : 'http://www.miaforino.com/3month/',
galleryWidth: "800",
galleryHeight: "500",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

Re: tried every which way and cannot see the gallery once i emebed...help!

Thx for the reply.  Still no luck.  get an xml error with that code.  Put the full directory address in again, which was www.miaforino.com/miaforino/3month, and get no error and the HTML box is back up and blue.  However, i still see nothing when I preview.  I dont know what im missing.  It is pointed directly at it.  Thx again for trying to help

Re: tried every which way and cannot see the gallery once i emebed...help!

Before posting my last reply, I checked that your gallery was located here: http://www.miaforino.com/3month/
... and going to that location in a browser displayed the gallery on its own page OK.
Now, this does not happen so it looks like you might have been moving files around on your web server.
All you should need to do to embed your gallery in a web page is upload a complete gallery folder (not just the contents) to your web server and follow the baseUrl embedding instructions as documented here.
It does not matter where on your web server you upload your gallery folder to as long as you know where it is and that the two paths in the embedding code (the path to the 'juicebox.js' file and the baseUrl itself) are correct.

Re: tried every which way and cannot see the gallery once i emebed...help!

thx again for the help.  will reset it and try again