Thursday 15 May 2008 6:11:29 pm
After moving an EZ4 installation from development to production server (not in service yet), we are experiencing a problem with our image galleries. Everything else seems OK including other images (logos etc) on the new server. Basically, the gallery pages all function fine except that the images (thumbnails and full size) do not display. I have tracked the problem down to this template: extension/ezwebin/design/ezwebin/override/templates/galleryline/image.tpl which has the following content:
{* Image - Gallery line view *}
<div class="content-view-galleryline">
<div class="class-image">
<div class="attribute-image"{if is_set($#image_style)} style="{$#image_style}"{/if}>
<p>{attribute_view_gui attribute=$node.data_map.image image_class=gallerythumbnail
href=$node.url_alias|ezurl}</p>
</div>
<div class="attribute-name"{if is_set($#image_style)} style="{$#image_style|explode(';').0}"{/if}>
<p>{$node.name|shorten(14)|wash}</p>
</div>
</div>
</div>
The code between the first <p> tags is producing no output:
{attribute_view_gui attribute=$node.data_map.image image_class=gallerythumbnail
href=$node.url_alias|ezurl}
while the code between the second <p> tags does produce the correct output:
{$node.name|shorten(14)|wash}
Any suggestions as to what might be going on here or how to fix it? Thanks.
|