do you have an ETA for the new version?

There is no set time-frame for releases and no release date scheduled for the next version.
However, you can be notified of new releases by joining our mailing list and following us on Twitter (@juiceboxgallery).
Please scroll down to the bottom of our home page for details.

you're right, using another Theme for wordpress helps to make the gallery / website scalable on my iPhone. Even displaying the gallery on another post / page then the start page helps. I have no clue what's the actual issue, so you might have a pointer where I can start searching for the problem with the starting page

It may (or may not) have something to do with your theme using a <meta> tag such as:

<meta name="viewport" content="width=device-width" />

... which, for example, the WordPress theme 'Twenty Eleven' uses (but 'Twenty Ten' does not).
For more information on the <meta> 'viewport' tag, please see here.

5,727

(6 replies, posted in Juicebox-Pro Support)

Maybe because I'm running it with python.  Did you use Java?

No. I used Python v2.7.3 and Google App Engine SDK for Python v1.6.6 (Windows).
The contents of my 'app.yaml' file were as follows:

application: juiceboxgallery 
version: 1
runtime: python
api_version: 1

handlers:
- url: /(.*\.(gif|png|jpeg|jpg|js|css|xml))
  static_files: \1
  upload: (.*\.(gif|png|jpeg|jpg|js|css|xml))

- url: .*
  script: main.py

The 'main.py' file remained unchanged from the 'website.zip' file referenced in the link I posted.

Also, make sure that you are using the latest version of Juicebox (v1.0.2) to ensure that bugs present in earlier versions (which have since been fixed) are not contributing to your problem.
Please see the Upgrading Juicebox section of the Juicebox support pages for details if necessary.

If you continue to experience difficulties, please post the URL to your gallery so that I can take a look.

5,728

(8 replies, posted in Juicebox-Pro Support)

The backgroundColor can be set in either the XML file ('config.xml') or the embedding code (in the 'index.html' file). If set in both, Juicebox will use the value set in the embedding code.

5,729

(11 replies, posted in Juicebox-Lite Support)

1. Sort images from metadata fields?

You could use a Flickr account as a source of images by using the following settings in your gallery's XML file:

useFlickr="TRUE"
flickrUserName="your_flickr_username"

Then, you could use the flickrSort Pro Option which gives you some control over the order in which the images are displayed.
The Juicebox Flickr options can be found here.

2. Display select metadata: captions, filenames et al?

It is not yet possible to extract metadata for use as the image's <title> or <caption>.
Currently, it is possible to use the image's File Name for the <title> and/or <caption> and, additionally, the linkURL for the <caption> (via JuiceboxBuilder's 'Images -> Titles' and 'Images -> Captions' drop-down options at the top).

3. Update a site on the fly by adding images to a folder/directory, without entire re-export?

If using Flickr as a source of images, you could upload new images to your Flickr account and they would be displayed in your Juicebox gallery next time it is viewed without having to modify any gallery files.
Alternatively, you could use the following PHP code as your gallery's XML file. It will read and display all images in a folder named 'images'.

<?php
header("Content-type: application/xml");
function GetDirArray($folder)
{
    $handle=opendir($folder);
    while ($file=readdir($handle))
    {
        if ($file!="." && $file!="..")
        {
            $ret[]=$file;
        }
    }
    closedir($handle);
    sort($ret);
    return $ret;
}
$gallery=GetDirArray('images');
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<juiceboxgallery galleryTitle="Juicebox Gallery">';
for ($i=0; $i<sizeof($gallery); $i++)
{
    echo '<image imageURL="images/'.$gallery[$i].'" thumbURL="images/'.$gallery[$i].'" linkURL="" linkTarget="">';
    echo '<title></title>';
    echo '<caption></caption>';
    echo '</image>';
}
echo '</juiceboxgallery>';
?>

Place the above code in a file named 'config.php', place the file in your gallery folder and add the following to your gallery's embedding code:

configUrl : 'config.php'

(You may wish to modify the code to handle thumbnails in a similar fashion.)
Each time you upload images to the 'images' folder, they will automatically be displayed in the gallery when the gallery is viewed.

5,730

(8 replies, posted in Juicebox-Pro Support)

Yes. You could open the plugin's 'juicebox.lrwebengine/config.xml' file in a plain text editor and add your preset's XML options to the opening <juiceboxgallery> tag.
Then, each time you create a gallery using the plugin, your options will be used.

5,731

(5 replies, posted in Juicebox-Pro Support)

There is no set time-frame for releases and no release date scheduled for the next version.
However, you can be notified of new releases by joining our mailing list and following us on Twitter (@juiceboxgallery).
Please scroll down to the bottom of our home page for details.

5,732

(9 replies, posted in Juicebox-Pro Support)

@bobpatrick

Please post the URL to your gallery so that I can take a look.

5,733

(6 replies, posted in Juicebox-Pro Support)

It is possible to host a Juicebox gallery on Google App Engine.
Here is a test gallery I uploaded earlier: http://juiceboxgallery.appspot.com/
I followed the instructions here: http://www.labnol.org/internet/host-web … ine/18801/
The only variation to these instructions was to make sure I had XML files specified in the list of accepted file extensions in the 'app.yaml' file.

I don't want an Overview to be shown even not for 1 second.

This plain screen with the 'loading' spinner is displayed whilst Juicebox loads the first image. The slight delay is inevitable but you can make the initial loading of your gallery less noticeable by setting the gallery's background color to the same color as the background of your page (#eeeeee) and setting showPreloader="FALSE" in the Pro Options text area.

Furthermore I want the second the actual first picture to show as set in the "display time" option (which is set to 5 seconds)

This is a known bug which has been addressed and will be fixed in the next version of Juicebox.
Thank you for reporting.

On the iPhone 4s the gallery shows in full size and seems to be too large for the little screen, so I can only see a part of the gallery at once.

This may be related to the WordPress theme you use. Try temporarily reverting to the default WordPress theme to see if this makes a difference.

Although I have set the transition mode to FADE the gallery slides.

The imageTransitionType Pro Option applies only to Large Screen Mode (as documented here).
When the gallery is displayed on an iPhone, the gallery automatically uses Small Screen Mode by default.
You can force the gallery to be displayed in Large Screen Mode by setting screenMode="LARGE" in the Pro Options text area.
For more information about Screen Modes, please see here.

5,735

(5 replies, posted in Juicebox-Pro Support)

This is a known bug (linkTarget is not respected) which has been addressed and will be fixed in the next version of Juicebox.
Thank you for reporting.

5,736

(7 replies, posted in Juicebox-Pro Support)

@Anton

Should it be in /wp-content/uploads in case of WordPress?

When creating galleries with WP-Juicebox, the XML files are stored in the 'wp-content/uploads/juicebox/' folder.
The XML files take the form '[gallery_id].xml'.
Make sure that your WordPress installation has a 'wp-content/uploads/juicebox/' folder and that it has been given full access permissions (777).
Also, make sure that all the other requirements for WP-Juicebox are met.

If you continue to experience difficulties, please post the URL to your gallery so that I can take a look.

5,737

(2 replies, posted in Juicebox-Pro Support)

I think both these issues are related to the goNextOnAutoPlay="true" setting in your gallery's XML file.
I will log a bug report. However, in the meantime, a workaround would be to set goNextOnAutoPlay="false" in your gallery's XML file.

The 'Expand Button' will be shown only if the gallery's dimensions are less than 100% x 100% or if the gallery is embedded in a web page alongside other content. Otherwise, the gallery will already be displayed as large as possible (filling the browser window) and cannot be made any larger so the 'Expand Button' would be redundant and is automatically disabled.

5,739

(1 replies, posted in Juicebox-Pro Support)

This is possibly due to the default setting of screenMode="AUTO".
On a small screen device (such as the iPhone), the screen mode will be set to SMALL.
On a large screen device (with a resolution of greater than 1024 px x 768 px, such as the iPad), the screen mode will be set to LARGE.
Try setting screenMode="SMALL" in your gallery's XML file to force Small Screen Mode to see what happens when you next view your gallery on your iPad (after clearing your browser's cache).
Please see here for more information on screen modes: http://www.juicebox.net/tour/gallery/#screen-modes

In order to display your gallery without the address bar on your iPad, try selecting 'Add To Home Screen' from the gallery URL and then opening the gallery from the home screen icon.

Thank you for reporting. I have logged a bug report.

5,741

(1 replies, posted in Juicebox-Pro Support)

Please take a look at this FAQ to see if it helps:
My images show locally, but not when I upload them to my website. Why?

If you continue to experience difficulties, please post the URL to your gallery so that I can take a look.

5,742

(4 replies, posted in Juicebox-Pro Support)

Make sure that the checkbox labelled 'Suppress Internet Explorer warnings' is not selected (on jAlbum's 'Advanced -> Metadata' settings tab).
The resulting album will then be able to be previewed locally in IE9 as well as in Firefox and Safari (though not in Chrome or Opera due to a security restriction preventing these browsers from loading local XML files).

5,743

(7 replies, posted in Juicebox-Pro Support)

The 'Loading jQuery breaks gallery in IE9' bug was fixed in v1.0.1. (See the Juicebox - Version History for details.)
Instructions for 'Upgrading Juicebox' can be found here.

5,744

(4 replies, posted in Juicebox-Pro Support)

Please post the URL to your album created by jAlbum and the Juicebox skin so that I can take a look.

5,745

(4 replies, posted in Juicebox-Pro Support)

Can someone walk me through adding the music option and auto play button in Lightroom?

Can this be done in Lightroom or only post gallery creation

This can be done only after the gallery has been created in Lightroom.
Open and edit the published gallery using JuiceboxBuilder-Pro.
Alternatively, you could manually add the relevant Pro Options to your gallery's XML file by opening the 'config.xml' file in a plain text editor.

5,746

(4 replies, posted in Juicebox-Pro Support)

This seems to be somewhat browser specific. Firefox 12, Chrome 19 and Safari 5.1.7 open a new tab/window (no matter what the linkTarget is set to) but IE9 does not.
I have logged a bug report to see if it is possible to suppress the opening of a new tab/window when using a 'mailto' link in the linkURL across all browsers.

Fixed Internet Explorer issue. I use Atahualpa 3.4.4. which i believe is very popular. I upgraded to 3.7.7 (although Atahualpa said version changes were minimal) and now Juicebox appears to work properly on IE.

That is good news. Thank you for reporting.
Hopefully, we can find out what plugins are causing your other problem (see other thread) and find a suitable solution or workaround.

I deactivated all plugins too see if any corrected conflict, there was no change. I reverted to a standard wordpress theme, and the menu bars appeared exactly the same way.

Did you try clearing your iPhone browser's cache after deactivating your plugins, reverting to the default theme and before reloading your gallery?

Is this an issue with the iframe idea?

I suggested the <iframe> idea as it keeps all the gallery's own CSS and JavaScript separate from that which is on your main page and will avoid any possible conflicts.

Is there a chance in near future Juicebox will work through these bugs

Yes. With your help, we can hopefully find out which plugins/themes are causing the conflicts and work towards fixing them.
In the meantime, the <iframe> solution should work fine and should be relatively quick and easy to implement.
(1) Create your gallery using JuiceboxBuilder
(2) Upload your entire gallery folder (not just the contents) to your web server using FTP
(3) Embed the gallery in a post using an <iframe> (a single line of code)

5,749

(5 replies, posted in Juicebox-Pro Support)

Great stuff! Your website looks good.
I'm glad you have achieved what you were looking to do.

I also notice that, when viewing your page in IE9, there are several (non-Juicebox-related) links displayed at the bottom of the page (in very small text, too small to read) which are not visible when viewing the page in Firefox, Chrome or Safari.
I would start by trying my suggestions in this post which might help diagnose the problem.