Topic: Config.xml not found - Dreamweaver [SOLVED]
I have a Dreamweaver design site with a Spry Menu structure for a large collection of photo galleries over the years (for friends). The menu connects to each gallery (currently most are TurningGate java galleries), and an "href<" call opens each gallery index.html as a new page. The gallery HOME button returns from gallery back to the DW site home page. The TTG galleries do not contain a separate config.xml file.
This is NOT an embed structure. I pass the Dreamweaver HOME page over to the gallery HOME page, the return with an href to the Dreamweaver HOME index.html through the JBX HOME button. I can't get the JBX galleries to load on the site.
I have begun rebuilding all these galleries in Jukebox Pro (much preferred for my purposes). I want to replicate the same menu structure, and simply substitute JBX gallery url in the menu code: see below example. BUT, all JBX galleries give the same error message: "Config.xml cannot be found." Each JBX gallery is fully functional on my local drive from its own index.html before import. All galleries located in "LRGalleries" folder main website directory. Each url href call is functional in Spry Menu the website the the TTG galleries except for the JBX "Texan Sculpture" JBX gallery. It finds the index.html in JBX gallery folder, but it appears that the code in that file cannot find the config.xml file in the same folder.
Can anyone tell me what I am doing incorrectly here to suit JBX requirements?
Site: MOREthanSnapshots.com
Spry Menu example: menu and submenu list in cascade choice selections.
<li><a class="MenuBarItemSubmenu" href="#">Recent</a>
<ul>
<li><a href="../LRGalleries/crestoneTTG/index.html">Crestone Mtns, CO</a></li>
<li><a href="../LRGalleries/bartoncrkTTG/index.html">Barton Creek, Austin</a></li>
<li><a href="../LRGalleries/TxCapSculptureJBX/index.html">Texan Sculpture</a></li>
<li><a href="../LRGalleries/grandtetonsTTG/index.html">Grand Tetons</a></li>
JBX index.html code for Texan Sculpture gallery:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Texas Pioneers, State Capitol Grounds</title>
<meta charset="utf-8" />
<meta name="description" content="" />
<meta name="viewport" id="jb-viewport" content="minimal-ui" />
<!--START OPEN GRAPH TAGS-->
<meta property="og:description" content="" />
<meta property="og:image" content="/images/TxSculpture-9.jpg" />
<meta property="og:title" content="Texas Pioneers, State Capitol Grounds" />
<meta property="og:type" content="website" />
<meta property="og:url" content="/" />
<!--END OPEN GRAPH TAGS-->
<style type="text/css">
body {
margin: 0px;
}
</style>
</head>
<body>
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
backgroundColor: "rgba(0,0,0,1)",
containerId: "juicebox-container",
galleryHeight: "100%",
galleryWidth: "100%"
});
</script>
<div id="juicebox-container">
<noscript>
<h1>Texas Pioneers, State Capitol Grounds</h1>
<p><img src="images/TxSculpture-9.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-7.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-8.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-14.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-10.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-12.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-13.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-19.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-16.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-19_1.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-19_2.jpg" title="" alt="" /><br /></p>
<p><img src="images/TxSculpture-15.jpg" title="" alt="" /><br /></p>
</noscript>
</div>
<!--END JUICEBOX EMBED-->
</body>
</html>