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('
')
.cycle({
fx: 'fade',
speed: '500',
timeout: 8000,
next: '.s1'
});
});
$(document).ready(function () {
$("ul.menu_body li:even").addClass("alt");
$('img.menu_head').click(function () {
$('ul.menu_body').slideToggle('fast');
});
$('ul.menu_body li a').mouseover(function () {
$(this).animate({ fontSize: "12px"}, 50 );
});
$('ul.menu_body li a').mouseout(function () {
$(this).animate({ fontSize: "12px"}, 50 );
});
});
<?php printAdminToolbox(); ?>
<?php include '../../inc/top-sthlm.php'; ?>
<?php if (getOption('Allow_search')) { printSearchForm(); } ?>
<?php while (next_album()): ?>
<?php printAlbumDate(""); ?>
<?php printAlbumDesc(); ?>
<?php endwhile; ?>
<?php while (next_image(false, $firstPageImages)): ?>
<?php endwhile; ?>
This caption can be styled using CSS.
.
<?php include '../../inc/sponsors-sthlm.php'; ?>
`