Issue with Highslide and Zenphoto

Hi!

I'm working with a modified version of the Highslide theme. It's so weird, because I've got everything to work temporarily...but after a while it stops working. It's supposed to show a highslide gallery with controls, but the script won't get past the loading part of the highslide image.

What's wrong?

PHP version 4.4.8
PHP magic_quotes_gpc [is enabled]
Strict Permissions [is not in effect]

Here's the gallery:
http://mediamecca.se/sthlm/mingelbilder-sthlm/2009-06-25/

Here's my album.php
`

<?php<br />
if (!defined('WEBPATH')) die();

$themeResult = getTheme($zenCSS, $themeColor, 'light');

$firstPageImages = normalizeColumns('2', '6');

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">





<?php printGalleryTitle(); ?> | <?php echo getAlbumTitle();?>

" type="text/css" />



/highslide/highslide.css" />

<?php printRSSHeaderLink('Album',getAlbumTitle()); ?>

<?php zenJavascript(); ?>

/highslide/highslide-with-html.packed.js">



hs.graphicsDir = '<?= $_zp_themeroot ?>/highslide/graphics/';

hs.align = 'center';

hs.transitions = ['fade', 'crossfade'];

hs.transitionDuration = 10;

hs.outlineType = '';

hs.fadeInOut = true;

hs.numberPosition = 'caption';

hs.dimmingOpacity = 0.75;

// Add the controlbar

if (hs.addSlideshow) hs.addSlideshow({

//slideshowGroup: 'group1',

interval: 5000,

repeat: false,

useControls: true,

fixedControls: 'fit',

overlayOptions: {

opacity: .75,

position: 'bottom center',

hideOnMouseOut: true

}

});

window.onload = function() {

hs.preloadImages();

}











jQuery(document).ready(function($) {

$('.s1')

.before('

Sign In or Register to comment.