Hi

I have just made en image node gallery (image.image_gallery). The gallery works great, but when I click on the image to show the "original" image with lightbox, the only thing i get is s "brokenimage.png.

As you can se in the attached images, i use the default "thumbnail" as trigger and the "orignal" as the target.

Any ideas on how to fix the issue ? I have tried with both the 5.x-2.x-dev and the 5.x-2.8 version, with the same result.

CommentFileSizeAuthor
lightboxsetting.PNG25.37 KBzerospin
gallery_error_preview.PNG32.44 KBzerospin

Comments

stella’s picture

Hmmm I'm not sure what the problem is. Other than do the files exist? Can you send me a link to your site? My contact form is enabled if you wish to do so privately.

Cheers,
Stella

gavacho’s picture

I have the same problem. The lightbox opens, but displays only the broken image symbol. Both the large image and the thumbnail are in the same folder, and the path to the thumbnail is correct. It was working OK a couple of days ago, but in the meantime, I did a lot of messing around attempting to get various slideshow modules to work. I have undone all the changes that I have made since installing Lightbox to the best of my recollection, but I still cannot get it to work. Can you offer any advice on troubleshooting this problem or narrow it down to possible causes? I am using Lightbox2 on a field created by the node_image module. I am running 5.11 and I tried reinstalling Lightbox2. Thanks.

stella’s picture

What version of lightbox2 are you using? Are you using the image module or something else?

gavacho’s picture

I am using Lightbox2 v. 5.x-2.8 and image 5.x-1.9. The Web developer error console for a page with the lightbox shows this message:

"Warning: Expected color but found 'http'. Error in parsing value for property 'background'. Declaration dropped.
Source File: http://localhost/saffron/admin/settings/lightbox2
Line: 0"

if that is any help.

stella’s picture

Hmmm, that's strange. Can you send me the link to your site? My contact form is enabled if you wish to do so privately. If it's a local site, then you'll need to use the Web developer toolbar to look at the generated html source and see where the above error may be coming from.

Cheers,
Stella

gavacho’s picture

Something I just noticed (sorry I didn't notice it earlier) is that the path to the large image that the thumbnail links to is incorrect:

http://localhost/saffron/node/files/images/node/img_1710.jpg

For some reason it is adding "node" into the path. The correct path should be:

http://localhost/saffron/files/images/node/img_1710.jpg

Any ideas?

gavacho’s picture

Thank you Stella. Here is the source code. I eliminated some irrelevant parts in the interest of condensing the code for the post. I have more modules enabled than need be, because I enabled everything having anything to do with images in the hope of fixing the problem. The script is a slideshow type script that I hard coded into page.tpl.php (I hadn't gotten around to changing it to an include).

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="xx" xml:lang="xx">

<head>
  <title>Tour Operator | Saffron Travel</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="/saffron/sites/all/themes/nirvana/favicon.ico" type="image/x-icon" />

  <style type="text/css" media="all">@import "/saffron/modules/openresort/accommodation/unit/unit.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/devel/devel.css";</style>

<style type="text/css" media="all">@import "/saffron/modules/ecommerce/cart/cart.css";</style>
<style type="text/css" media="all">@import "/saffron/modules/ecommerce/store/store.css";</style>
<style type="text/css" media="all">@import "/saffron/modules/node/node.css";</style>
<style type="text/css" media="all">@import "/saffron/modules/system/defaults.css";</style>
<style type="text/css" media="all">@import "/saffron/modules/system/system.css";</style>
<style type="text/css" media="all">@import "/saffron/modules/taxonomy_context/taxonomy_context.css";</style>
<style type="text/css" media="all">@import "/saffron/modules/user/user.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/cck/content.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/fckeditor/fckeditor.css";</style>

<style type="text/css" media="all">@import "/saffron/sites/all/modules/flickr/flickr.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/img_assist/img_assist.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/lightbox2/css/lightbox.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/themes/nirvana/primarynav.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/jstools/jscalendar/jscalendar.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/jstools/jscalendar/lib/skins/aqua/theme.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/themes/nirvana/style.css";</style>
<style type="text/css" media="all">@import "/saffron/sites/all/modules/jstools/activemenu/activemenu.css";</style>
  <!--[if lte IE 6]>
    <link type="text/css" rel="stylesheet" media="all" href="/saffron/sites/all/themes/nirvana/style-ie6.css" />
  <![endif]-->

  <!--[if IE 7]>
    <link type="text/css" rel="stylesheet" media="all" href="/saffron/sites/all/themes/nirvana/style-ie7.css" />
  <![endif]-->

  <script type="text/javascript" src="/saffron/misc/jquery.js"></script>
<script type="text/javascript" src="/saffron/misc/drupal.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/img_assist/img_assist.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/jquery_update/compat.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/jstools/jstools.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/jstools/activemenu/activemenu.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/lightbox2/js/lightbox.js"></script>

<script type="text/javascript" src="/saffron/sites/all/modules/worldclock/worldclock.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/devel/devel.js"></script>
<script type="text/javascript" src="/saffron/sites/all/themes/nirvana/primarynav.js"></script>
<script type="text/javascript" src="/saffron/misc/collapse.js"></script>
<script type="text/javascript" src="/saffron/misc/progress.js"></script>
<script type="text/javascript" src="/saffron/modules/openresort/accommodation/js/accommodation.js"></script>

<script type="text/javascript" src="/saffron/sites/all/modules/jstools/jscalendar/lib/calendar_stripped.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/jstools/jscalendar/lib/calendar-setup_stripped.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/jstools/jscalendar/lib/lang/calendar-en.js"></script>

<script type="text/javascript" src="/saffron/sites/all/modules/jstools/jscalendar/jscalendar.js"></script>
<script type="text/javascript" src="/saffron/sites/all/modules/jstools/collapse.js"></script>
<script type="text/javascript">Drupal.extend({ settings: { "jstools": { "cleanurls": true, "basePath": "/saffron/" }, "activemenu": { "#block-menu-1": "activemenu/menu", "#block-menu-2": "activemenu/menu", "#block-user-1": "activemenu/menu" }, "lightbox2": { "rtl": false, "file_path": "/saffron/(\\w\\w/)files", "base_path": "/saffron/", "default_image": "/saffron/sites/all/modules/lightbox2/images/brokenimage.jpg", "border_size": 10, "font_color": "000", "box_color": "fff", "top_position": "", "overlay_opacity": 0.8, "overlay_color": "000", "resize_sequence": 0, "resize_speed": 400, "fade_in_speed": 400, "slide_down_speed": 600, "use_alt_layout": false, "disable_resize": false, "disable_zoom": false, "force_show_nav": false, "loop_items": false, "node_link_text": "View Image Details", "node_link_target": false, "image_count": "Image !current of !total", "page_count": "Page !current of !total", "lite_press_x_close": "press \x3ca href=\"#\" onclick=\"hideLightbox(); return FALSE;\"\x3e\x3ckbd\x3ex\x3c/kbd\x3e\x3c/a\x3e to close", "display_image_size": "", "image_node_sizes": "()", "trigger_lightbox_classes": "", "trigger_lightbox_group_classes": "", "trigger_slideshow_classes": "", "trigger_lightframe_classes": "", "trigger_lightframe_group_classes": "", "custom_class_handler": 0, "custom_trigger_classes": "", "disable_for_gallery_lists": true, "disable_for_acidfree_gallery_lists": true, "enable_acidfree_videos": false, "slideshow_interval": 5000, "slideshow_automatic_exit": true, "show_play_pause": true, "pause_on_next_click": false, "pause_on_previous_click": true, "loop_slides": false, "iframe_width": 600, "iframe_height": 400, "iframe_border": 1, "enable_video": false } } });</script>
<script type="text/javascript">var BASE_URL = "/saffron/";</script>
  <!--[if lte IE 6]>
    <script defer type="text/javascript" src="/saffron/sites/all/themes/nirvana/js/pngfix.js"></script>
  <![endif]-->
  <!--[if IE]>
    <script type="text/javascript"></script>
  <![endif]-->
</head>

<body class="not-front logged-in both-sidebars admin">
<div id="outer">

<div id="page">


    <span style='float:left; padding-left:1px'><img src='http://localhost/saffron/files/images/slideshow/saffronlogo.gif' border='0'></span>
  <div align="right" style="background:url(http://localhost/saffron/files/images/slideshow/headerbg.jpg); margin-left:200px">
<script type="text/javascript">

//Specify the slider's width (in pixels)
var sliderwidth="700px"
//Specify the slider's height
var sliderheight="127px"
//Specify the slider's slide speed (larger is faster 1-10)
var slidespeed=2
//configure background color:
slidebg="http://localhost/saffron/files/images/slideshow/headerbg.jpg"

//Specify the slider's images
var leftrightslide=new Array()
var finalslide=''
leftrightslide[0]='<img src="http://localhost/saffron/files/images/slideshow/slide-1.gif" style="border-top:0px">'
leftrightslide[1]='<img src="http://localhost/saffron/files/images/slideshow/slide-1.gif" style="border-top:0px">'


//Specify gap between each image (use HTML):
var imagegap=" "

//Specify pixels gap between each slideshow rotation (use integer):
var slideshowgap=5


////NO NEED TO EDIT BELOW THIS LINE////////////

var copyspeed=slidespeed
leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
var iedom=document.all||document.getElementById
if (iedom)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
var actualwidth=''
var cross_slide, ns_slide

function fillup(){
if (iedom){
cross_slide=document.getElementById? document.getElementById("test2") : document.all.test2
cross_slide2=document.getElementById? document.getElementById("test3") : document.all.test3
cross_slide.innerHTML=cross_slide2.innerHTML=leftrightslide
actualwidth=document.all? cross_slide.offsetWidth : document.getElementById("temp").offsetWidth
cross_slide2.style.left=actualwidth+slideshowgap+"px"
}
else if (document.layers){
ns_slide=document.ns_slidemenu.document.ns_slidemenu2
ns_slide2=document.ns_slidemenu.document.ns_slidemenu3
ns_slide.document.write(leftrightslide)
ns_slide.document.close()
actualwidth=ns_slide.document.width
ns_slide2.left=actualwidth+slideshowgap
ns_slide2.document.write(leftrightslide)
ns_slide2.document.close()
}
lefttime=setInterval("slideleft()",30)
}
window.onload=fillup

function slideleft(){
if (iedom){
if (parseInt(cross_slide.style.left)>(actualwidth*(-1)+8))
cross_slide.style.left=parseInt(cross_slide.style.left)-copyspeed+"px"
else
cross_slide.style.left=parseInt(cross_slide2.style.left)+actualwidth+slideshowgap+"px"

if (parseInt(cross_slide2.style.left)>(actualwidth*(-1)+8))
cross_slide2.style.left=parseInt(cross_slide2.style.left)-copyspeed+"px"
else
cross_slide2.style.left=parseInt(cross_slide.style.left)+actualwidth+slideshowgap+"px"

}
else if (document.layers){
if (ns_slide.left>(actualwidth*(-1)+8))
ns_slide.left-=copyspeed
else
ns_slide.left=ns_slide2.left+actualwidth+slideshowgap

if (ns_slide2.left>(actualwidth*(-1)+8))
ns_slide2.left-=copyspeed
else
ns_slide2.left=ns_slide.left+actualwidth+slideshowgap
}
}


if (iedom||document.layers){
with (document){
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
if (iedom){
write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background:'+slidebg+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">')
write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>')
write('<div id="test3" style="position:absolute;left:-1000px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+sliderwidth+' height='+sliderheight+' name="ns_slidemenu" background='+slidebg+'>')
write('<layer name="ns_slidemenu2" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('<layer name="ns_slidemenu3" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('</ilayer>')
}
document.write('</td></table>')
}
}
</script>

</div>
<br />
    <div id="primarynav"><div id="block-menu-2" class="block block-menu">

  <div class="content"><ul class="menu">

<li class="leaf first"><a href="/saffron/admin">Administer</a></li>
<li class="expanded"><a href="/saffron/directory/1">Business Directory</a><ul class="menu">
<li class="leaf first"><a href="/saffron/directory/1/2">Phnom Penh</a></li>
<li class="collapsed"><a href="/saffron/directory/1/3">Siem Riep</a></li>
<li class="leaf last"><a href="/saffron/directory/1/1">Sihanoukville</a></li>

</ul>
</li>
<li class="leaf"><a href="/saffron//">Home</a></li>
<li class="leaf last"><a href="/saffron/blog/1">Travel Blog</a></li>

</ul>
</div>
</div><!-- /block -->
</div>
  
  <div id="navigation" class="menu withprimary">
          <div id="primary" class="clear-block"><ul class="links-menu">
<li class="first"><a href="/saffron/admin">Administer</a></li>
<li class=""><a href="/saffron/directory/1">Business Directory</a></li>
<li class=""><a href="/saffron//">Home</a></li>
<li class="last"><a href="/saffron/blog/1">Travel Blog</a></li>

</ul>
</div>
    
      </div><!-- /#navigation -->

  <div id="columns-wrapper">

    <div id="main" class="column">
      <div id="breadcrumb"><a href="/saffron/">Home</a> :: <a href="/saffron/directory/1">Business Directory</a> :: <a href="/saffron/directory/1/3">Siem Riep</a> :: <a href="/saffron/directory/1/3/4">Tours and Activities</a> :: <a href="/saffron/node/10" class="active">Tour Operator</a></div>

        
        
      <h1 id="page-title">Tour Operator</h1>      <div class="tabs"><ul class="tabs primary">
<li class="active"><a href="/saffron/node/10" class="active">View</a></li>
<li><a href="/saffron/node/10/devel/load">Dev load</a></li>
<li><a href="/saffron/node/10/devel/render">Dev render</a></li>
<li><a href="/saffron/node/10/edit">Edit</a></li>
<li><a href="/saffron/node/10/images">Images</a></li>
</ul>
</div>  
      <div id="main-inner">

                        <div class="node ntype-business" id="node-10">
    
  <div class="node-inner">
        <div class="busphoto">
    <a href="files/images/node/cartagena7.jpg" rel="lightbox"><img src="http://localhost/saffron/files/images/node/cartagena7_tn.jpg" alt="tour photo" /></a> </div>

    <div class="content">
      Located in Siem Riep. Offering tours to Angkor Wat and all of the best destinations of Cambodia<h3>Location</h3>
<div class="location vcard"><div class="adr">

<div class="street-address">B street 2</div><span class="locality">Siem Riep</span>, <span class="postal-code">90000</span><div class="country-name">Cambodia</div></div></div><div class="availability"></div><div class="details"><br><div class="special"><h4>Special features</h4><ul class="hotel"><li>Equipment</li><li>Lunch</li><li>Transportation</li></ul></div></div><div class="units">
<div class="node ntype-unit" id="node-11">
      <h2 class="title"><a href="/saffron/node/11">Angkor Wat Tour</a></h2>
    
  <div class="node-inner">
        <div class="busphoto">

    </div>

    <div class="content">
      One day tour of the magnificent ruins of Angkor Wat and other notable ruins in the Siem Riep area. Includes lunch, park entry fee, and transportation from Siem Riep hotel.<div class="unitdetail"><h4>Details</h4><ul class="unit"><li>Lunch</li><li>Transportation</li></ul><div id='unit_availability'><fieldset class='collapsible collapsed'><legend>Availability</legend><div class='accommodation availability'><div class="rowblock"><div class='tableblock'><h5>December 2008</h5>


    <div class="clear"></div><!-- clears floated picture (avatar) -->

      </div><!-- /node-inner -->

</div><!-- /node -->
<br class="clear-both"></div><!-- end units -->
<div class="businessdetails"><h4>Business details</h4><dl class="business"><dd>Address: B street 2, Siem Riep</dd><dd>Phone: 1112223333</dd><dd>Alternate phone: 2223334444</dd><dd>Fax: 2223334444</dd><dd>Homepage: <a href="http://tour.org">tour.org</a></dd><dd>Email: <a href="mailto:guide@tour.org">guide@tour.org</a></dd></dl></div>
              <div class="taxonomy">Posted in <ul class="links inline"><li class="first last taxonomy_term_4"><a href="/saffron/taxonomy/term/4" rel="tag" title="" class="taxonomy_term_4">Tours and Activities</a></li>
</ul></div>

          </div>

    <div class="clear"></div><!-- clears floated picture (avatar) -->

    <div class="links"><ul class="links inline"><li class="first last node_images_edit"><a href="/saffron/node/10/images" class="node_images_edit">Edit node images</a></li>
</ul></div>  </div><!-- /node-inner -->
</div><!-- /node -->
              </div><!-- /#main-inner -->
  
          </div><!-- /#main -->
  
          <div id="left-sidebar" class="sidebar column"><div id="left-sidebar-inner">

        <div id="block-user-1" class="block block-user">

  <div class="content"><ul class="menu">
<li class="leaf first"><a href="/saffron/devel/queries">Database queries</a></li>
<li class="leaf"><a href="/saffron/user/1">My account</a></li>
<li class="leaf"><a href="/saffron/product"></a></li>
<li class="leaf"><a href="/saffron/tracker">Recent posts</a></li>
<li class="leaf"><a href="/saffron/node/10/terms">Terms and conditions</a></li>
<li class="collapsed"><a href="/saffron/node/add">Create content</a></li>
<li class="collapsed"><a href="/saffron/admin">Administer</a></li>

<li class="leaf last"><a href="/saffron/logout">Log out</a></li>

</ul>
</div>
</div><!-- /block -->
      </div></div><!-- /#left-sidebar-inner /#left-sidebar -->
      
          <div id="right-sidebar" class="sidebar column"><div id="right-sidebar-inner">
        <div id="block-accommodation-0" class="block block-accommodation">

  <div class="content"><form action="/saffron/node/10"  method="post" id="accommodation-unit-block">
<div><input type="hidden" name="ajax" id="edit-ajax" value="true"  />
<div class="form-item">

 <label for="edit-arrive">Arrival: <span class="form-required" title="This field is required.">*</span></label>
 <input type="text" maxlength="10" name="arrive" id="edit-arrive"  size="10" value="12/12/2008" class="form-text required jscalendar" />
 <div class="description">dd/mm/yyyy</div>
</div>
<div class="form-item">
 <label for="edit-depart">Departure: <span class="form-required" title="This field is required.">*</span></label>
 <input type="text" maxlength="10" name="depart" id="edit-depart"  size="10" value="15/12/2008" class="form-text required jscalendar" />

 <div class="description">dd/mm/yyyy</div>
</div>
<div class="other-selection"><div class="form-item">
 <label for="edit-num-people">Number of people: </label>
 <select name="num_people" class="form-select" id="edit-num-people" ><option value="1">1</option><option value="2" selected="selected">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option></select>

</div>
</div><input type="submit" name="op" id="edit-op" value="Check Availability"  class="form-submit check" />
<input type="hidden" name="form_token" id="edit-accommodation-unit-block-form-token" value="7bd4a141b177dc9b38469e74dbe34ebd"  />
<input type="hidden" name="form_id" id="edit-accommodation-unit-block" value="accommodation_unit_block"  />
<input type="hidden" name="arrive_jscalendar[ifFormat]" id="edit-arrive-jscalendar-ifFormat" value="%d/%m/%Y"  />
<input type="hidden" name="arrive_jscalendar[showsTime]" id="edit-arrive-jscalendar-showsTime" value="false"  />
<input type="hidden" name="arrive_jscalendar[timeFormat]" id="edit-arrive-jscalendar-timeFormat" value="24"  />
<input type="hidden" name="depart_jscalendar[ifFormat]" id="edit-depart-jscalendar-ifFormat" value="%d/%m/%Y"  />
<input type="hidden" name="depart_jscalendar[showsTime]" id="edit-depart-jscalendar-showsTime" value="false"  />
<input type="hidden" name="depart_jscalendar[timeFormat]" id="edit-depart-jscalendar-timeFormat" value="24"  />

</div></form>
<div><a href="/saffron/node/10?formfilter_id=accommodation_unit_block" class="active">Filter this form</a></div></div>
</div><!-- /block -->
<div id="block-worldclock-0" class="block block-worldclock">

  <div class="content"><table id="wordclock" style="padding:7px; border:#F60 2px solid; width:180px; position:relative;left:-20px;"><tr><td align="left"><h3>&nbsp;WORLD&nbsp;TIME</h3></td></tr><tr class=""><td id="worldclock_location" >&nbsp;Cambodia</td><td id="worldclock_time"><span id="worldclock1"></span></td></tr><tr class=""><td id="worldclock_location" >&nbsp;Australia ET</td><td id="worldclock_time"><span id="worldclock2"></span></td></tr><tr class=""><td id="worldclock_location" >&nbsp;UK</td><td id="worldclock_time"><span id="worldclock3"></span></td></tr><tr class=""><td id="worldclock_location" >&nbsp;USA ET</td><td id="worldclock_time"><span id="worldclock4"></span></td></tr></table></div>
</div><!-- /block -->
      </div></div><!-- /#right-sidebar-inner /#right-sidebar -->
    
  </div><!-- /#columns-wrapper -->

</div><!-- /#page -->

<div id="clearfooter"></div>
<div id="footer-wrapper">

  <div id="footer">
          </div><!-- /#footer -->

</div><!-- /#footer-wrapper -->

</div><!-- /#outer -->



</body>
</html>
gavacho’s picture

I think I must be treating the symptom rather than the root problem with this fix, because it worked before without it, but what got it working for me now is:

Change in node_images.module, $image->filepath to base_path().$image->filepath. I hope this doesn't break something else.
Thanks so much for your help Stella. Lightbox2 is one of the few image related modules in Drupal that works like it is supposed to and is easy to install, and your attention to support requests is unmatched.

stella’s picture

Wait, are you using the Image module or Node Images module? You said earlier image 5.x-1.9, but you've just referred to node_images.module in your last post. The Image module is supported, but node_images isn't yet.

If you've detected a bug in the node_images module, then you should probably create a patch for it so others may avail of the same fix.

Cheers,
Stella

palmyto’s picture

i'm using image module 5.x-1.6 & Lightbox2 5.x-2.8 and have the same problem, if you can take a look to my site, www.palmyto.com.ar -> fotos

the site is in spanish

thanks

palmyto’s picture

no? thanks anyway...

gavacho’s picture

Sorry for the slow response. I didn't expect additional comments. I am using node_images. A problem I did have though, is that jquery update broke openresort and broke it badly. Uninstalling jquery update didn't undo the damage. I did a fresh install of the entire site due to this, and the second time, node_images worked fine without needing the fix. Maybe there was an incorrect path input somewhere? (there seems to be little standardization among Drupal modules regarding image folders and paths. This contributes to making working with most image modules in Drupal a real nightmare). This is certainly not a knock on lightbox2 because your module works well and is well maintained. I am using thickbox instead because it does not need jquery update. It works well also.

stella’s picture

Status: Active » Fixed

@gavacho: thanks for letting me know.

@palmyto: the current image module version is 5.x-1.9. The older 5.x-1.6 version which you have installed is no longer supported. I'd upgrade the module, run update.php and see if the problem still occurs. If it does, please open a separate support request. This issue is in relation to the "node images" module only.

Cheers,
Stella

Loic-1’s picture

Version: 5.x-2.x-dev » 5.x-2.8

Hey all !

I do have the same problem (broken image displayed), but only whith the basic lighthbox image nodes handling.
Indeed, when I use the ligthbox grouped or the slideshow handling, I do have the appropriate image displayed.
I decided to use the ligthbox grouped display, but would appreciate an hint on the basic lightbox handling issue...

Cheers

Loïc

hanskuiters’s picture

Same problem here as Loic. Used the same solution to make it work.

stella’s picture

@Loic, @capono: are you using the "image" module or "node_images" module? And which version? Does it happen on the image node or in the gallery? Can you provide a link to the site where it happens?My contact form is enabled if you wish to do so privately.

hanskuiters’s picture

I'm using:
Image module 5.x-1.9
Lightbox 5.x-2.8
Url: http://boerakker.bakelbos.nl/over-smederij-boerakker

stella’s picture

Hmmm I can't reproduce this issue on your site or mine, though I am using the latest dev version of Lightbox2, so that might be part of it.

hanskuiters’s picture

I've send you an email through the contact form, Stella.

stella’s picture

Upgrade to the dev version of the module. That's an old issue that has been fixed already, can't find the issue number right now though.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.