Topic: Juicebox not showing

my windows 8.1 laptop lost a hard drive around the first week of January - it was re-installed. I have the program on my desktop now. I have the previous folder on my desktop too. My first jusicebox image gallery is on this page on the left column and is NOT showing. I do not understand why. the code seems right to me. I just re ran it and re copied it and reup loaded it.  It should display on the left side column but its not there. Help please.

Re: Juicebox not showing

Please post the URL to your gallery's web page so that I can take a look at the problem and hopefully help.
It would be much easier to troubleshoot your problem if I could see the problem for myself. Thank you.

In the meantime, please take a look at the Troubleshooting FAQs in case any of them describe your scenario and offer suggestions of help.

Re: Juicebox not showing

I posted this a couple days agao but I do not see it here. so I will try again
http://www.countyfairgrounds.net/findan … nevent.php
left column about three quarters of the way down.

Re: Juicebox not showing

Thank you for providing the URL to your gallery's web page.

Your gallery's 'jbcore' folder does not seem to be in the correct location on your web server.
According to your gallery's embedding code, the 'juicebox.js' file should be located here:
http://www.countyfairgrounds.net/findan … uicebox.js
... but it does not seem to be there. Going directly to that location in a browser results in an error 404 (file not found).
Please make sure that the contents of your gallery folder have been uploaded to your http://www.countyfairgrounds.net/findanevent/ directory.

Re: Juicebox not showing

Hi - I still need help
jusicebox.js is in the the currentgalleries folder. - please please help - I still do not get what you are saying

Re: Juicebox not showing

According to the current embedding code on your 'findanevent.php' web page, Juicebox is looking for the 'juicebox.js' file here: http://www.countyfairgrounds.net/findan … uicebox.js
... but it is not in that location on your web server.

You have two options:

(1) Leave the embedding code exactly as it is on your 'findanevent.php' web page and copy the contents of your gallery folder (not the folder itself) into the 'findanevent' directory on your web server.
The contents of the gallery folder are as follows:
images (folder)
thumbs (folder)
jbcore (folder)
config.xml (file)
index.html (file)

(If doing this, please check first that you do not have any files or folders with the same names in the 'findanevent' directory which may be overwritten.)

... or:

(2) As you have already uploaded your complete gallery folder ('currentgalleries') to your web server, then you can use a baseUrl in your embedding code (on your 'findanevent.php' web page) to point towards this gallery folder.
The baseUrl method of embedding is documented here.
Essentially, on your 'findanevent.php' web page, just change your gallery's embedding code from:

<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
galleryWidth: "300px",
galleryHeight: "550px",
backgroundColor: "rgba(128,0,0,1)"
});
</script>

... to:

<script src="/findanevent/currentgalleries/jbcore/juicebox.js"></script>
<script>
    new juicebox({
        baseUrl: "/findanevent/currentgalleries/",
        containerId: "juicebox-container",
        galleryWidth: "300px",
        galleryHeight: "550px",
        backgroundColor: "rgba(128,0,0,1)"
    });
</script>

I would recommend Option #2 above. It keeps all your gallery files together inside the gallery folder on your web server which will help to keep things organized.

Re: Juicebox not showing

Weel okay, I got it - the buttons need configured again on it but its fine. I just need to play with it more at least it is shows.  Where is the page on your website that tells what each of the options are for. I cannot find it.

Re: Juicebox not showing

ksrstuff wrote:

Weel okay, I got it - the buttons need configured again on it but its fine. I just need to play with it more at least it is shows.  Where is the page on your website that tells what each of the options are for. I cannot find it.

See http://www.juicebox.net/support/config_options/

Cheers,

Bill P.