http://vickikelner.co.uk/SimpleViewer/aboutVicki.php
This now works live on my hosting company and clients hosting account.
The folder SimpleViewer/ shown above is the name on my clients site where I have put your entire directory.
The aboutVicki.php page shown above lives in this directory. All works fine, but it is not HERE that I want the visitors of the site to view the album.
If you look at this path instead:
http://vickikelner.co.uk/aboutVicki.php
You will see her actual About Vicki website page. If you view the page source, you will notice that the embeded script is live on the page and should present the album, under all the text and above the yellow footer. It does not.
I have tried typing the site root/path in full as shown here:
<!--START SIMPLEVIEWER EMBED -->
<script type="text/javascript" src="http://www.vickikelner.co.uk/SimpleViewer/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
jQuery(document).ready(function () { SV.simpleviewer.load('sv-container', '100%', '100%', '352063', true , null, null, null, false); });
</script>
<div id="sv-container"></div>
<!--END SIMPLEVIEWER EMBED -->
However, if you test this in Firefox using the Firebug tool, it will clearly show you that not all the path directories are updating to use the path shown above.
PLEASE PLEASE solve this for me.
I have my own Portfolio website, a charity website and two other client websites all waiting to use this tool.
I choose to buy your Professional version as I loved the old free version and wanted a SIMPLER way of incorporating the viewer into the sites that I build.
FTP is done via FileZila (latest version), transfer type is set to binary.
Since writing above, I have now tried to drop the embed file shown above in another webpage incase any of my code was effecting it.
www.vickikelner.co.uk/test.php
When you view the source file, only the very first line of script has the entire path in full as I have put above.
The code that is built into the page at time of creation, does not pick up the full path and is trying to work as if the web page is in the same file directory as the source documents and code.
Your support forum tell me to update the path. I completely understand that this needs to be done and is the issue.
But I can not locate all the paths that need changing.
Assistance please.
Thanks
Angela
Making progress: I now have a XML Gallery Not Found showing in vickikelner.co.uk/test.php
I searched for the file svcore in the simpleviewer.js document and exchanged that for the entire path, which worked.
<!--START SIMPLEVIEWER EMBED -->
<script type="text/javascript" src="http://www.vickikelner.co.uk/SimpleViewer/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.baseURL = "http://www.vickiKelner.co.uk/simpleViewer/gallery.xml";
jQuery(document).ready(function () {
SV.simpleviewer.load('sv-container', '100%', '100%', '352063', true , null, null, null, false);
});
</script>
<div id="sv-container"></div>
<!--END SIMPLEVIEWER EMBED -->
www.vickikelner.co.uk/test3.php
Is this example:
http://simpleviewer.net/simpleviewer/su … l#external
as per point #1 on your support forum.