Results 1 to 3 of 3

Thread: Using lighbox java and missing image

  1. #1
    Join Date
    Oct 2007
    Location
    Sydney
    Posts
    652

    Default Using lighbox java and missing image

    Hi all,

    I am using the following code to load images with Lightbox javascript.

    <%if $photo !="$tpl_base/images/transparent.gif" %><A href="<%$photo%>" rel="lightbox"><%thumb file="$photo" width="170" height="120" crop="true" window="true" link="false" html='class="img float" border="0"'%> </a>
    <%/if%>
    I am using the “transparent.gif” so if users don’t have an image it uses that file, however I think since I installed 1.3.3 (I might be wrong) “transparent.gif” is not working and if user doesn’t upload an image I am getting a smarty error message on the detail page and in fact detail page doesn’t load at all.

    Any idea what the problem could be or why it is not working?

    Many thanks in advance
    Mitchell

  2. #2
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    does $tpl_base/images/transparent.gif exist? Check it with your browser.

    Some hosts will not display images that have write permissions on them. If that iamge comes up as a 404 make sure to set the file permissions to 644 and try viewing it again in the browser.

    Also as a tip, it might be easier to use the following

    <%if $photo|file_exists%><A href="<%$photo%>" rel="lightbox"><%thumb file="$photo" width="170" height="120" crop="true" window="true" link="false" html='class="img float" border="0"'%> </a>
    <%else%>
    <img src="<%$tpl_base%>/images/transparent.gif" />
    <%/if%>

  3. #3
    Join Date
    Oct 2007
    Location
    Sydney
    Posts
    652

    Default

    Thank you Bruce, that was great, it works perfectly now.

Similar Threads

  1. Missing Image
    By wslade in forum v5.x
    Replies: 1
    Last Post: 06-11-2008, 11:31 PM
  2. Replies: 0
    Last Post: 03-22-2003, 07:24 AM
  3. Links are missing!!!!!!!!
    By amanda in forum v5.x
    Replies: 0
    Last Post: 11-13-2001, 06:04 AM
  4. All links are missing
    By Nardus in forum v5.x
    Replies: 8
    Last Post: 11-05-2001, 11:10 PM
  5. Missing send_pwd.php
    By Noureddine in forum v5.x
    Replies: 1
    Last Post: 10-16-2001, 06:54 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •