Upgraded to 1.4.2, images won't show unless logged in

Hello,

After upgrading from 1.4.2 from 1.4.0.3, I noticed that my images were coming up right. In Gallery, I just get the default image placeholder. And in Albums, I don't get anything to show up at all.

Here is an example of the image links:

SIGNED IN:
http://adjenz.com/funnypics/cache/34 Reasons Not To Post Your Picture On The Web/34_w228_h155_cw228_ch155_thumb.jpg

LOGGED OUT:
http://adjenz.com/funnypics/cache/34 Reasons Not To Post Your Picture On The Web/_{zp-core}_{images}_imageDefault_w228_h155_cw228_ch155_thumb.png

I tried it across all browsers, same effect.

[code]

<div id="alt-galleries">
<ul class="alt-galleries">
<?php $lastcolnum=3;$listall=''; ?>
<?php $x=1; while (next_album($listall)): $lastcol="";
if ($x==$lastcolnum) {$lastcol="id='lastcol'"; $x=0;} ?>
<li class="alt-gallery" <?php echo $lastcol; ?>>
" title="<?php echo gettext('View album:'); ?> <?php echo getBareAlbumTitle();?>">
<?php printCustomAlbumThumbImage(getBareAlbumTitle(),NULL,228,155,228,155); ?>
<span class="album-gallery-bottom"><?php if (getNumAlbums() >= 1) { echo getNumAlbums() . " Sub-Albums "; }?><?php if (getNumImages() >= 1) { echo getNumImages() . " Images"; }?></span>

<h4>" title="<?php echo getBareAlbumTitle().' ('.getAlbumDate().')'; ?>"><?php echo getBareAlbumTitle(); ?></h4>

<?php $x++; endwhile; ?>

</div>
[/code]

Comments

Sign In or Register to comment.