You might have to escape the / character in your URL's query string. (The browser might see this as another path separator in the main part of the URL rather than as part of the query string.)
Try using index.php?route=product%2Fcategory&path=60 instead.
Also, make sure that if you hard-code a subdomain in your embedding code, you access the web site using that subdomain.
For example, if you use code such as the following (which uses the www subdomain), then the gallery will display only if you go to www.example.com/gallery/ and not example.com/gallery/. This is due to the JavaScript same-origin policy.
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="http://www.example.com/gallery/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.baseURL = 'http://www.example.com/gallery/';
simpleviewer.ready(function () {
simpleviewer.load('sv-container', '100%', '100%', '222222', true, flashvars);
});
</script>
<div id="sv-container"></div>
<!-- END SIMPLEVIEWER EMBED -->
If you continue to experience difficulties, please post the URL to your gallery so that I can take a look and help further.
Steven Speirs
SimpleViewer Support Team