<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Juicebox Support Forum — How to update gallery through web? [SOLVED]]]></title>
		<link>https://juicebox.net/forum/viewtopic.php?id=2598</link>
		<atom:link href="https://juicebox.net/forum/extern.php?action=feed&amp;tid=2598&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in How to update gallery through web? [SOLVED].]]></description>
		<lastBuildDate>Sat, 16 Dec 2017 08:48:45 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11532#p11532</link>
			<description><![CDATA[<p>You&#039;re welcome!<br />I&#039;m glad you&#039;ve now got a PHP script which works as you like.<br />I hope you have a great Christmas, too!</p>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Sat, 16 Dec 2017 08:48:45 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11532#p11532</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11530#p11530</link>
			<description><![CDATA[<p>EXCELLENT! Exact how I want it! Thx for all your help! This case is now solved =) Have a nice christmas!</p>]]></description>
			<author><![CDATA[null@example.com (movietajm)]]></author>
			<pubDate>Sat, 16 Dec 2017 07:41:01 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11530#p11530</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11525#p11525</link>
			<description><![CDATA[<p>If you just want to use the filename for the image title (and have no image caption), then, in the original code, change:<br /></p><div class="codebox"><pre><code>echo &#039;&lt;title&gt;&lt;/title&gt;&#039;;
echo &#039;&lt;caption&gt;&lt;/caption&gt;&#039;;</code></pre></div><p>... to:<br /></p><div class="codebox"><pre><code>echo &#039;&lt;title&gt;&lt;![CDATA[&#039; . pathinfo($gallery[$i], PATHINFO_FILENAME) . &#039;]]&gt;&lt;/title&gt;&#039;;
echo &#039;&lt;caption&gt;&lt;/caption&gt;&#039;;</code></pre></div><p>Here&#039;s the complete code:<br /></p><div class="codebox"><pre><code>&lt;?php
header(&quot;Content-type: application/xml&quot;);
function GetDirArray($folder)
{
    $handle=opendir($folder);
    while ($file=readdir($handle))
    {
        if ($file!=&quot;.&quot; &amp;&amp; $file!=&quot;..&quot;)
        {
            $ret[count($ret)]=$file;
        }
    }
    closedir($handle);
    sort($ret);
    return $ret;
}
$gallery=GetDirArray(&#039;images&#039;);
$gallery=array_reverse($gallery);
echo &#039;&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#039;;
echo &#039;&lt;juiceboxgallery useFlickr=&quot;false&quot; maxThumbColumns=&quot;7&quot; captionPosition=&quot;BELOW_IMAGE&quot; buttonBarPosition=&quot;OVERLAY_IMAGE&quot; galleryTitlePosition=&quot;NONE&quot; backgroundColor=&quot;rgba(18,18,18,1)&quot; topBackColor=&quot;rgba(0,0,0,0.5)&quot; thumbFrameColor=&quot;rgba(204,204,204,1)&quot; thumbHoverFrameWidth=&quot;3&quot; thumbSelectedFrameWidth=&quot;5&quot; topAreaHeight=&quot;5&quot; stagePadding=&quot;10&quot; showOpenButton=&quot;true&quot; showExpandButton=&quot;false&quot; showThumbsButton=&quot;true&quot; showImageOverlay=&quot;ALWAYS&quot; showOverlayOnLoad=&quot;true&quot; showImageNumber=&quot;false&quot; maxCaptionHeight=&quot;50&quot; captionHAlign=&quot;CENTER&quot; showSplashPage=&quot;NEVER&quot; showInfoButton=&quot;false&quot; screenMode=&quot;LARGE&quot; showSmallPagingText=&quot;false&quot; showSmallThumbsButton=&quot;false&quot; showSmallThumbsOnLoad=&quot;false&quot; backButtonUseIcon=&quot;true&quot; showImageNav=&quot;ALWAYS&quot; captionBackColor=&quot;rgba(0,0,0,0.4)&quot; useLargeImages=&quot;false&quot; resizeOnImport=&quot;true&quot; maxImageWidth=&quot;2048&quot; maxImageHeight=&quot;1536&quot; showNavButtons=&quot;false&quot; flickrShowTitle=&quot;false&quot; showAutoPlayButton=&quot;false&quot; useFullscreenExpand=&quot;false&quot; useThumbDots=&quot;false&quot; expandInNewPage=&quot;TRUE&quot; showThumbsOnLoad=&quot;true&quot; galleryTitle=&quot;The Neighbourhood Gallery&quot; enableDirectLinks=&quot;false&quot; imageNavPosition=&quot;IMAGE&quot; thumbNavPosition=&quot;CENTER&quot; buttonBarHAlign=&quot;RIGHT&quot;&gt;&#039;;
for ($i=0; $i&lt;sizeof($gallery); $i++)
{
    echo &#039;&lt;image imageURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; thumbURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; linkURL=&quot;&quot; linkTarget=&quot;&quot;&gt;&#039;;
    echo &#039;&lt;title&gt;&lt;![CDATA[&#039; . pathinfo($gallery[$i], PATHINFO_FILENAME) . &#039;]]&gt;&lt;/title&gt;&#039;;
    echo &#039;&lt;caption&gt;&lt;/caption&gt;&#039;;
    echo &#039;&lt;/image&gt;&#039;;
}
echo &#039;&lt;/juiceboxgallery&gt;&#039;;
?&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Fri, 15 Dec 2017 21:37:15 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11525#p11525</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11524#p11524</link>
			<description><![CDATA[<p>Ah nice. But its enough with the title from the filename since its datebased. What code can I use the if I only want imagetitel <br />? (filename without extension) thx again!</p>]]></description>
			<author><![CDATA[null@example.com (movietajm)]]></author>
			<pubDate>Fri, 15 Dec 2017 08:21:02 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11524#p11524</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11523#p11523</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>and that worked a bit..</p></blockquote></div><p>If you still want to reverse the order of the images, replace:<br /></p><div class="codebox"><pre><code>$gallery=GetDirArray(&#039;images&#039;);</code></pre></div><p>... with:<br /></p><div class="codebox"><pre><code>$gallery = GetDirArray(&#039;images&#039;);
$gallery = array_reverse($gallery);</code></pre></div><div class="quotebox"><blockquote><p>but I cant see the caption at all?</p></blockquote></div><p>Your PHP script does not populate the image titles or captions with anything at all. They are currently empty.<br />As an example, if you want to display the filename (without the file extension) as the image title and the IPTC Description (embedded within the image) as the image caption, then replace:<br /></p><div class="codebox"><pre><code>echo &#039;&lt;title&gt;&lt;/title&gt;&#039;;
echo &#039;&lt;caption&gt;&lt;/caption&gt;&#039;;</code></pre></div><p>... with:<br /></p><div class="codebox"><pre><code>echo &#039;&lt;title&gt;&lt;![CDATA[&#039; . pathinfo($gallery[$i], PATHINFO_FILENAME) . &#039;]]&gt;&lt;/title&gt;&#039;; // Extract and use filename without file extension for image title
$caption = &#039;&#039;;
$size = getimagesize(&#039;images/&#039; . $gallery[$i], $info); // Puts image info into $info array
if(isset($info[&#039;APP13&#039;])) { // If IPTC data is present in image info...
    $iptc = iptcparse($info[&#039;APP13&#039;]); // Put IPTC data into $iptc array
    $caption = $iptc[&#039;2#120&#039;]; // Use IPTC Description as image caption
    $caption = preg_replace(&#039;/\r\n|\r|\n/&#039;, &#039;&lt;br /&gt;&#039;, $caption); // Ensure line feeds and carriage returns from IPTC Description are respected
    $caption = preg_replace(&#039;/\p{Cc}+/u&#039;, &#039;&#039;, $caption); // Strip control characters from image caption
}
echo &#039;&lt;caption&gt;&lt;![CDATA[&#039; . $caption[0] . &#039;]]&gt;&lt;/caption&gt;&#039;; // Display image caption</code></pre></div><p>With your current gallery settings, you&#039;ll likely need to increase the <strong>maxCaptionHeight </strong>value (from 50 to something larger, such as the default value of 120) to accommodate both an image title and an image caption (for both to be visible).</p><p>I hope this helps.</p>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Thu, 14 Dec 2017 23:00:19 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11523#p11523</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11520#p11520</link>
			<description><![CDATA[<p>I used this code:</p><div class="codebox"><pre><code>&lt;?php
header(&quot;Content-type: application/xml&quot;);
function GetDirArray($folder)
{
    $handle=opendir($folder);
    while ($file=readdir($handle))
    {
        if ($file!=&quot;.&quot; &amp;&amp; $file!=&quot;..&quot;)
        {
            $ret[count($ret)]=$file;
        }
    }
    closedir($handle);
    sort($ret);
    return $ret;
}
$gallery=GetDirArray(&#039;images&#039;);
echo &#039;&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#039;;
echo &#039;&lt;juiceboxgallery useFlickr=&quot;false&quot; maxThumbColumns=&quot;7&quot; captionPosition=&quot;BELOW_IMAGE&quot; buttonBarPosition=&quot;OVERLAY_IMAGE&quot; galleryTitlePosition=&quot;NONE&quot; backgroundColor=&quot;rgba(18,18,18,1)&quot; topBackColor=&quot;rgba(0,0,0,0.5)&quot; thumbFrameColor=&quot;rgba(204,204,204,1)&quot; thumbHoverFrameWidth=&quot;3&quot; thumbSelectedFrameWidth=&quot;5&quot; topAreaHeight=&quot;10&quot; stagePadding=&quot;10&quot; showOpenButton=&quot;true&quot; showExpandButton=&quot;false&quot; showThumbsButton=&quot;true&quot; showImageOverlay=&quot;ALWAYS&quot; showOverlayOnLoad=&quot;true&quot; showImageNumber=&quot;false&quot; maxCaptionHeight=&quot;50&quot; captionHAlign=&quot;CENTER&quot; showSplashPage=&quot;NEVER&quot; showInfoButton=&quot;false&quot; screenMode=&quot;LARGE&quot; showSmallPagingText=&quot;false&quot; showSmallThumbsButton=&quot;false&quot; showSmallThumbsOnLoad=&quot;false&quot; backButtonUseIcon=&quot;true&quot; showImageNav=&quot;ALWAYS&quot; captionBackColor=&quot;rgba(0,0,0,0.4)&quot; useLargeImages=&quot;false&quot; resizeOnImport=&quot;true&quot; maxImageWidth=&quot;2048&quot; maxImageHeight=&quot;1536&quot; showNavButtons=&quot;false&quot; flickrShowTitle=&quot;false&quot; showAutoPlayButton=&quot;false&quot; useFullscreenExpand=&quot;false&quot; useThumbDots=&quot;false&quot; expandInNewPage=&quot;TRUE&quot; showThumbsOnLoad=&quot;true&quot; galleryTitle=&quot;The Neighbourhood Gallery&quot; enableDirectLinks=&quot;false&quot; imageNavPosition=&quot;IMAGE&quot; thumbNavPosition=&quot;CENTER&quot; buttonBarHAlign=&quot;RIGHT&quot;&gt;&#039;;
for ($i=0; $i&lt;sizeof($gallery); $i++)
{
    echo &#039;&lt;image imageURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; thumbURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; linkURL=&quot;&quot; linkTarget=&quot;&quot;&gt;&#039;;
    echo &#039;&lt;title&gt;&lt;/title&gt;&#039;;
    echo &#039;&lt;caption&gt;&lt;/caption&gt;&#039;;
    echo &#039;&lt;/image&gt;&#039;;
}
echo &#039;&lt;/juiceboxgallery&gt;&#039;;
?&gt;</code></pre></div><p>and that worked a bit.. but I cant see the caption at all?</p>]]></description>
			<author><![CDATA[null@example.com (movietajm)]]></author>
			<pubDate>Thu, 14 Dec 2017 19:00:28 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11520#p11520</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11516#p11516</link>
			<description><![CDATA[<p>(1) As you are using a PHP file to dynamically generate the gallery&#039;s XML content (<strong>configUrl : &#039;config.php&#039;,</strong>) Juicebox does not use your &#039;config.xml&#039; file at all.<br />If you want the configuration options from your &#039;config.xml&#039; file to be used in your gallery, you&#039;l need to copy them across into your &#039;config.php&#039; file (as attributes to the opening &lt;juiceboxgallery&gt; tag).</p><p>(2) The PHP script will read the directory and display the images in alphabetical order.<br />If you would like to reverse this order, use PHP&#039;s <a href="http://php.net/manual/en/function.array-reverse.php">array_reverse</a> function on the array of images before the loop which outputs the &lt;image&gt; tags.<br />You can manipulate the array using other functions (built-in PHP functions or custom functions) to sort the images in any order you like.</p><p>Try something like the following (which incorporates both of my suggestions above):<br /></p><div class="codebox"><pre><code>&lt;?php
header(&quot;Content-type: application/xml&quot;);
function GetDirArray($folder)
{
    $handle=opendir($folder);
    while ($file=readdir($handle))
    {
        if ($file!=&quot;.&quot; &amp;&amp; $file!=&quot;..&quot;)
        {
            $ret[count($ret)]=$file;
        }
    }
    closedir($handle);
    sort($ret);
    return $ret;
}
$gallery=GetDirArray(&#039;images&#039;);
$gallery=array_reverse($gallery);
echo &#039;&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#039;;
echo &#039;&lt;juiceboxgallery useFlickr=&quot;false&quot; maxThumbColumns=&quot;7&quot; captionPosition=&quot;BELOW_IMAGE&quot; buttonBarPosition=&quot;OVERLAY_IMAGE&quot; galleryTitlePosition=&quot;NONE&quot; backgroundColor=&quot;rgba(18,18,18,1)&quot; topBackColor=&quot;rgba(0,0,0,0.5)&quot; thumbFrameColor=&quot;rgba(204,204,204,1)&quot; thumbHoverFrameWidth=&quot;3&quot; thumbSelectedFrameWidth=&quot;5&quot; topAreaHeight=&quot;5&quot; stagePadding=&quot;10&quot; showOpenButton=&quot;true&quot; showExpandButton=&quot;false&quot; showThumbsButton=&quot;true&quot; showImageOverlay=&quot;ALWAYS&quot; showOverlayOnLoad=&quot;true&quot; showImageNumber=&quot;false&quot; maxCaptionHeight=&quot;50&quot; captionHAlign=&quot;CENTER&quot; showSplashPage=&quot;NEVER&quot; showInfoButton=&quot;false&quot; screenMode=&quot;LARGE&quot; showSmallPagingText=&quot;false&quot; showSmallThumbsButton=&quot;false&quot; showSmallThumbsOnLoad=&quot;false&quot; backButtonUseIcon=&quot;true&quot; showImageNav=&quot;ALWAYS&quot; captionBackColor=&quot;rgba(0,0,0,0.4)&quot; useLargeImages=&quot;false&quot; resizeOnImport=&quot;true&quot; maxImageWidth=&quot;2048&quot; maxImageHeight=&quot;1536&quot; showNavButtons=&quot;false&quot; flickrShowTitle=&quot;false&quot; showAutoPlayButton=&quot;false&quot; useFullscreenExpand=&quot;false&quot; useThumbDots=&quot;false&quot; expandInNewPage=&quot;TRUE&quot; showThumbsOnLoad=&quot;true&quot; galleryTitle=&quot;The Neighbourhood Gallery&quot; enableDirectLinks=&quot;false&quot; imageNavPosition=&quot;IMAGE&quot; thumbNavPosition=&quot;CENTER&quot; buttonBarHAlign=&quot;RIGHT&quot;&gt;&#039;;
for ($i=0; $i&lt;sizeof($gallery); $i++)
{
    echo &#039;&lt;image imageURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; thumbURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; linkURL=&quot;&quot; linkTarget=&quot;&quot;&gt;&#039;;
    echo &#039;&lt;title&gt;&lt;/title&gt;&#039;;
    echo &#039;&lt;caption&gt;&lt;/caption&gt;&#039;;
    echo &#039;&lt;/image&gt;&#039;;
}
echo &#039;&lt;/juiceboxgallery&gt;&#039;;
?&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Wed, 13 Dec 2017 21:59:06 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11516#p11516</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11514#p11514</link>
			<description><![CDATA[<p>Ive got it to work but I have several problems.</p><p>1. If you check <a href="http://zeerux.com/galleri/">http://zeerux.com/galleri/</a> you can see the following problems that has something to do with the config.php file:</p><p>1.1 The title of the gallery is visible and the buttons float both over image and beside it. The galleryfile got the buttons over the image and caption from the image under the image. <br />1.2. It seems like something overwrites my settings?</p><p>2. If I upload a image, it lands as thumb nr2? I want new images to get as first image.</p><p>this is my config.php:</p><div class="codebox"><pre><code>&lt;?php
header(&quot;Content-type: application/xml&quot;);
function GetDirArray($folder)
{
    $handle=opendir($folder);
    while ($file=readdir($handle))
    {
        if ($file!=&quot;.&quot; &amp;&amp; $file!=&quot;..&quot;)
        {
            $ret[count($ret)]=$file;
        }
    }
    closedir($handle);
    sort($ret);
    return $ret;
}
$gallery=GetDirArray(&#039;images&#039;);
echo &#039;&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#039;;
echo &#039;&lt;juiceboxgallery galleryTitle=&quot;The Neighbourhood Gallery&quot;&gt;&#039;;
for ($i=0; $i&lt;sizeof($gallery); $i++)
{
    echo &#039;&lt;image imageURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; thumbURL=&quot;images/&#039;.$gallery[$i].&#039;&quot; linkURL=&quot;&quot; linkTarget=&quot;&quot;&gt;&#039;;
    echo &#039;&lt;title&gt;&lt;/title&gt;&#039;;
    echo &#039;&lt;caption&gt;&lt;/caption&gt;&#039;;
    echo &#039;&lt;/image&gt;&#039;;
}
echo &#039;&lt;/juiceboxgallery&gt;&#039;;
?&gt;</code></pre></div><p>this is my index.html</p><div class="codebox"><pre><code>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;title&gt;The Neighbourhood Gallery&lt;/title&gt;
    &lt;meta charset=&quot;utf-8&quot; /&gt;
    &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;

    &lt;!-- START OPEN GRAPH TAGS--&gt;
    &lt;meta property=&quot;og:title&quot; content=&quot;The Neighbourhood Gallery&quot; /&gt;
    &lt;meta property=&quot;og:type&quot; content=&quot;website&quot; /&gt;
    &lt;meta property=&quot;og:url&quot; content=&quot;&quot; /&gt;
    &lt;meta property=&quot;og:image&quot; content=&quot;&quot; /&gt;
    &lt;meta property=&quot;og:description&quot; content=&quot;&quot; /&gt;
    &lt;!-- END OPEN GRAPH TAGS--&gt;

    &lt;style type=&quot;text/css&quot;&gt;
    body {
        margin: 0px;
    }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;!--START JUICEBOX EMBED--&gt;
    &lt;script src=&quot;jbcore/juicebox.js&quot;&gt;&lt;/script&gt;
    &lt;script&gt;
    new juicebox({
        configUrl : &#039;config.php&#039;,
        containerId: &#039;juicebox-container&#039;,
        galleryWidth: &#039;100%&#039;,
        galleryHeight: &#039;100%&#039;,
        backgroundColor: &#039;rgba(18,18,18,1)&#039;
    });
    &lt;/script&gt;
    &lt;div id=&quot;juicebox-container&quot;&gt;
            &lt;!-- Image gallery content for non-javascript devices --&gt;
            &lt;noscript&gt;
                &lt;h1&gt;The Neighbourhood Gallery&lt;/h1&gt;
                &lt;p&gt;&lt;/p&gt;

            &lt;/noscript&gt;
        &lt;/div&gt;
    &lt;!--END JUICEBOX EMBED--&gt;
&lt;/body&gt;
&lt;/html&gt;</code></pre></div><p>and this is my config.xml</p><div class="codebox"><pre><code>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;

&lt;juiceboxgallery 

    useFlickr=&quot;false&quot;
    maxThumbColumns=&quot;7&quot;
    captionPosition=&quot;BELOW_IMAGE&quot;
    buttonBarPosition=&quot;OVERLAY_IMAGE&quot;
    galleryTitlePosition=&quot;NONE&quot;
    backgroundColor=&quot;rgba(18,18,18,1)&quot;
    topBackColor=&quot;rgba(0,0,0,0.5)&quot;
    thumbFrameColor=&quot;rgba(204,204,204,1)&quot;
    thumbHoverFrameWidth=&quot;3&quot;
    thumbSelectedFrameWidth=&quot;5&quot;
    topAreaHeight=&quot;5&quot;
    stagePadding=&quot;10&quot;
    showOpenButton=&quot;true&quot;
    showExpandButton=&quot;false&quot;
    showThumbsButton=&quot;true&quot;
    showImageOverlay=&quot;ALWAYS&quot;
    showOverlayOnLoad=&quot;true&quot;
    showImageNumber=&quot;false&quot;
    maxCaptionHeight=&quot;50&quot;
    captionHAlign=&quot;CENTER&quot;
    showSplashPage=&quot;NEVER&quot;
    showInfoButton=&quot;false&quot;
    screenMode=&quot;LARGE&quot;
    showSmallPagingText=&quot;false&quot;
    showSmallThumbsButton=&quot;false&quot;
    showSmallThumbsOnLoad=&quot;false&quot;
    backButtonUseIcon=&quot;true&quot;
    showImageNav=&quot;ALWAYS&quot;
    captionBackColor=&quot;rgba(0,0,0,0.4)&quot;
    useLargeImages=&quot;false&quot;
    resizeOnImport=&quot;true&quot;
    maxImageWidth=&quot;2048&quot;
    maxImageHeight=&quot;1536&quot;
    showNavButtons=&quot;false&quot;
    flickrShowTitle=&quot;false&quot;
    showAutoPlayButton=&quot;false&quot;
    useFullscreenExpand=&quot;false&quot;
    useThumbDots=&quot;false&quot;
    expandInNewPage=&quot;TRUE&quot;
    showThumbsOnLoad=&quot;true&quot;
    galleryTitle=&quot;The Neighbourhood Gallery&quot;
    enableDirectLinks=&quot;false&quot;
    imageNavPosition=&quot;IMAGE&quot;
    thumbNavPosition=&quot;CENTER&quot;
    buttonBarHAlign=&quot;RIGHT&quot;/&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (movietajm)]]></author>
			<pubDate>Wed, 13 Dec 2017 11:05:20 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11514#p11514</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11504#p11504</link>
			<description><![CDATA[<p>I do not know how your Flickr descriptions have been populated (maybe generated automatically by Flickr or entered manually by yourself) but Juicebox will just display whatever the Flickr descriptions are.<br />It sounds like you might need to change the Flickr descriptions for your images in the Flickr interface.<br />Juicebox will display only the Flickr titles (for the image titles) and the Flickr descriptions (for the image captions).<br />It is not possible for Juicebox to extract information from any other Flickr field for use in the Juicebox caption area.</p><p>If you used the PHP suggestion (instead of using Flickr as a source for your gallery), then you could use PHP to extract certain embedded IPTC metadata from the images (such as the &#039;CreationDate&#039;) and then use this information as image titles or captions.<br />Knowledge of PHP would be required but it should certainly be possible.<br />If you&#039;d like to look into this further, please see the PHP support page for the <a href="http://php.net/manual/en/function.iptcparse.php"> iptcparse </a>function.<br />It might be a bit of work initially to write the script but it might prevent you from having to manually edit the Flickr descriptions for all your images.</p>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Fri, 08 Dec 2017 21:37:44 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11504#p11504</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11503#p11503</link>
			<description><![CDATA[<p>Yeah, but then it only shows the date for the upload, not the date that the picture was taken</p>]]></description>
			<author><![CDATA[null@example.com (movietajm)]]></author>
			<pubDate>Fri, 08 Dec 2017 08:18:00 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11503#p11503</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11501#p11501</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>... from android it says below thumbs (1 of 1), can I get rid of this?</p></blockquote></div><p>You can disable the thumbnail paging text (e.g. &quot;1 of 1&quot;) in Small Screen Mode by setting <strong>showSmallPagingText=&quot;FALSE&quot;</strong> in JuiceboxBuilder-Pro&#039;s &#039;Customize -&gt; Thumbnails&#039; section.<br /></p><div class="quotebox"><blockquote><p>I actually would have captions from flickr but for some reason only the uploaded date would show, not the imagedate?</p></blockquote></div><p>I&#039;m not sure how you have entered your Flickr titles and descriptions but you might need to set <strong>flickrShowDescription=&quot;TRUE&quot;</strong> in JuiceboxBuilder-Pro&#039;s &#039;Customize -&gt; Flickr&#039; section.<br />(The default value for <strong>flickrShowTitle </strong>is TRUE but the default value for <strong>flickrShowDescription </strong>is FALSE.)</p>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Thu, 07 Dec 2017 21:48:55 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11501#p11501</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11498#p11498</link>
			<description><![CDATA[<p>Excellent! Thx! I will give php one more try.</p><p>Btw. If you check <a href="http://zeerux.com/galleri/index.html">http://zeerux.com/galleri/index.html</a> the gallery seems fine from pc but from android it says below thumbs (1 of 1), can I get rid of this? I actually would have captions from flickr but for some reason only the uploaded date would show, not the imagedate?</p>]]></description>
			<author><![CDATA[null@example.com (movietajm)]]></author>
			<pubDate>Thu, 07 Dec 2017 11:26:27 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11498#p11498</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11496#p11496</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>The php didnt work.</p></blockquote></div><p>Using a PHP file to dynamically generate a gallery&#039;s XML configuration file is a tried and tested method which should work fine. In fact, <a href="https://www.juicebox.net/support/wp-juicebox/">WP-Juicebox</a> (the dedicated Juicebox plugin for WordPress) uses this method to display all galleries created by the&nbsp; plugin. It&#039;s also mentioned in this FAQ:<br /><a href="https://www.juicebox.net/support/faq/#misc-5">Can Juicebox handle a custom data source, for example RSS or Instagram?</a></p><p>When adding the <strong>configUrl </strong>entry to your gallery&#039;s embedding code, make sure that you separate all your embedding code parameters with commas, for example:<br /></p><div class="codebox"><pre><code>&lt;!--START JUICEBOX EMBED--&gt;
&lt;script src=&quot;jbcore/juicebox.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
    new juicebox({
        containerId: &quot;juicebox-container&quot;,
        configUrl: &quot;config.php&quot;,
        galleryWidth: &quot;100%&quot;,
        galleryHeight: &quot;100%&quot;,
        backgroundColor: &quot;#222222&quot;
    });
&lt;/script&gt;
&lt;div id=&quot;juicebox-container&quot;&gt;&lt;/div&gt;
&lt;!--END JUICEBOX EMBED--&gt;</code></pre></div><p>Also, please note that the <strong>configUrl</strong> value is a path to a file. It can be a relative path (relative to the web page containing the embedding code) or an absolute path. For example, if you use:<br /></p><div class="codebox"><pre><code>configUrl: &quot;config.php&quot;,</code></pre></div><p>... then your PHP script should be named &quot;config.php&quot; and located in the same directory as the web page containing the embedding code.<br /></p><div class="quotebox"><blockquote><p>Flickr worked excellent but do you know if there is any way to get the image in fullsize WITHOUT open the Flickr-page? Or a download button for fullsize image?</p></blockquote></div><p>This is just the way that Juicebox works and it cannot be changed: the Open Image button redirects to the Flick page containing the image and the Download Button is disabled for Flickr galleries (as Flickr does not seem to like images hosted on their servers from being downloaded via PHP).<br />If you want to be able to open an image in a new tab or have the Download Button active (to allow users to download the images), then you&#039;ll need to host the images yourself.</p><p>Maybe you could give the PHP suggestion another try. It should work fine. If you run into any difficulties, just let me know and I&#039;ll try to help you further. (If possible, please provide the PHP code you are using and post the URL to your gallery&#039;s web page on your web server. Thank you.)</p>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Wed, 06 Dec 2017 21:19:46 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11496#p11496</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11495#p11495</link>
			<description><![CDATA[<p>Flickr worked excellent but do you know if there is any way to get the image in fullsize WITHOUT open the Flickr-page? Or a download button for fullsize image?</p>]]></description>
			<author><![CDATA[null@example.com (movietajm)]]></author>
			<pubDate>Wed, 06 Dec 2017 07:59:43 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11495#p11495</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to update gallery through web? [SOLVED]]]></title>
			<link>https://juicebox.net/forum/viewtopic.php?pid=11493#p11493</link>
			<description><![CDATA[<p>You&#039;re welcome! I hope you&#039;re able to use one of these ideas.</p>]]></description>
			<author><![CDATA[null@example.com (Steven @ Juicebox)]]></author>
			<pubDate>Wed, 06 Dec 2017 07:10:50 +0000</pubDate>
			<guid>https://juicebox.net/forum/viewtopic.php?pid=11493#p11493</guid>
		</item>
	</channel>
</rss>
