from http://juicebox.net/forum/viewtopic.php?id=1863 (http://juicebox.net/forum/viewtopic.php?id=1863)
Quote
I have a similar problem
my Gallery is created using I match (photools.com)
I have rename gallery.html to index.html
on my computer it works in Firefox
as soon as I upload all files
firefox v(38.0.5) NOT working
IE(11.0.9600.1782) is working
Opera (30.0.1835.59) is working
Chrome( 43.0.2357.130 m) is working
http://www.carlssonspc.se/katt/slidesho ... index.html
why is not working on Firefox?
Sven Åke
I get this answer
Quote
The problem is likely to be due to the backslashes in your gallery's imageURL and thumbURL paths (in the 'config.xml' file). As these are relative paths, use slashes instead.
For example, change:
imageURL="images\0000029709.jpg"
... to:
imageURL="images/0000029709.jpg"
A couple of other things to check/try...
In your gallery's embedding code (in the 'index.html' page), change:
useThumbDots: "0"
... to:
useThumbDots: "TRUE"
This will probably not make a difference but possible values for the useThumbDots configuration option are TRUE and FALSE (rather than 1 and 0).
Also, try removing the comment from the top of the 'config.xml' file.
Hopefully this will solve your problem.
Then I change \ to / in my config.xml file it's working
in Firefox,Opera,IE and Chrome
How can I control this \ to / ?
how can I controll (have not tested this yet
QuoteuseThumbDots: "0"
... to:
useThumbDots: "TRUE"
Sven Åke
Easy change.
In the Juicebox script, line 649
change all \ to /
I will include this change in the next release. And also the fix for the UseThumbDots.
Quote from: Mario on June 25, 2015, 10:49:21 PM
Easy change.
In the Juicebox script, line 649
change all \ to /
I will include this change in the next release. And also the fix for the UseThumbDots.
Thanks also, I runned into the same problem today. Took a while to find out, but finally it works now.