Had changed the Joomla configuration file which made no difference but changed it again for this one :-

Link to default .htaccess file.
https://docs.joomla.org/Preconfigured_htaccess

problem solved.

Thanks for your help.

Zig

Seem to be getting somewhere but...

1   In Configuration, I changed 'Search Engine Friendly URLs' to YES
2   Changed 'Use URL Rewriting' to YES

Then got a 404 page when trying to access the config.xml file directly.

Decided to install sh404sef and still get a 404 page.

Can you point me in the right direction to be able to access the config.xml by the URL:-
      https://lizmuir.com.au/images/galleries … config.xml which is in that directory.

Zig

The file is named config.xml and it is in each of the galleries e.g. illumination, chanson etc.

It was working perfectly up until I changed to https and the only thing that I change after upgrading to latest JuiceBox Pro was jbcore as directed and when that did not work I changed the config.xml in each gallery to no effect.

Zig

Did all that already as well as using other machines that have not logged into the site.

Have uploaded a new config.xml to all galleries and the same happens.

the site is lizmuir.com.au and go to the Gallery - Illumination

Zig

Hi

I have had this problem before in my HTTP site and solved it by following the instructions for a Joomla site.

Changed my site to HTTPS and got this problem again.  Followed your instructions to update to the latest version of JuiceBox Pro and insert the latest 'jbcore' folder.  Still have the problem.

Below is the code that I believe is correct.  I have the 'jbcore' folder directly under the 'galleries' folder and my images and xml file are in the specific slideshow folder and in this case it is 'illumination' folder.

<!--START JUICEBOX EMBED-->
<script src="/images/galleries/jbcore/juicebox.js"></script>
<script>
         new juicebox({
         baseUrl : '/images/galleries/illumination/',
         containerId: 'juicebox-container',
         galleryWidth: "80%",
         galleryHeight: "80%",
         backgroundColor: "rgba(255,255,255,1)"
});
</script>
        <div id="juicebox-container">
<!-- Image gallery content for non-javascript devices -->
<noscript>

Would appreciate your help

Zig

When I view the produced gallery in a browser it looks great.

But when I place the code on a Joomla Article page the is an extra 100px approx at the top of the page.

Any suggestions

7

(3 replies, posted in Juicebox-Pro Support)

Fantastic!

The forward slash before the directory structure worked

Zig

I have read and used your support topic on embedding in Joomla 3 website using a YooTheme template.

Uploaded all files to a directory called Gallery in public_html.

Copied thew code and changed the two line as below to my Joomla Article page.

Used<!--START JUICEBOX EMBED-->
<script src="Gallery/jbcore/juicebox.js"></script>
<script>
  new juicebox({
    baseUrl : 'Gallery/',
    containerId : 'juicebox-container',
    galleryWidth : '800',
    galleryHeight : '600',
    backgroundColor: '#222222'
  });
  </script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

Got "Juicebox Error: Config XML file not found."

Any help would be appreciated.