Topic: Need Help with a gallery.

HI I am trying to create gallery for my website but the pictures are not showing up. I tried million of different things but they never work out. The page opens up but instead of the pictures showing its just a icon rotating. I am writing this website via dreamweaver and it is a php
Here is my code

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Solus Project</title>
</head>
<body>
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container">
<!-- Image gallery content for non-javascript devices -->
<noscript>
<h1></h1>
<p></p>
<p><img src="images/5.jpg" title="5" alt="" /><br>5 </p>
<p><img src="images/6.jpg" title="6" alt="" /><br>6 </p>
<p><img src="images/8.jpg" title="8" alt="" /><br>8 </p>
<p><img src="images/unspecified.jpg" title="1" alt="" /><br>1 </p>
<p><img src="images/unspecified3.jpg" title="3" alt="" /><br>3 </p>
</noscript>
<div id="juicebox-container"></div>
</div>
<!--END JUICEBOX EMBED-->
</body>

</html>


Thank you

Re: Need Help with a gallery.

Please post the URL to your gallery's web page so that I can take a look at the problem for myself.

In the meantime, please check that your gallery's 'config.xml' file and 'images' and 'thumbs' folders have all been uploaded to the correct location on your web server. (According to the code you posted, they should all be in the same directory as the page containing the embedding code.)

Also, please check that the permissions of the 'config.xml' file and 'images' and 'thumbs' folders (and those of the image and thumbnail files themselves) are not too restrictive. Default permissions of 755 for folders and 644 for files should be fine.
You should be able to check and change file and folder permissions using an FTP program or your web hosting account's online file manager.

This FAQ may also help:
My images show locally, but not when I upload them to my website. Why?

If these suggestions do not help, then I should hopefully be able to determine the cause of the problem once I can see the gallery for myself.