This module is working great, but only a section of the pictures I have uploaded are showing up... I guess I need to configure CSS accordingly, but how? I don't know much about CSS (:
Thanks for the help!
Expat9

Comments

nvoyageur’s picture

Agreed. I just installed this and here is what I've uncovered.

1. Only a 60px high sliver of the image is being displayed. I'm sure javascript should be resizing something here.
2. It doesn't look like it's respecting the image cache size that I want. It looks like it's just using the full image size.
3. When I try to update the slide show settings I get this error

user warning: Duplicate entry 'cck_slideshow_puppet_slideshow_field_puppet_imag' for key 1 query: INSERT INTO mrhappyvariable (name, value) VALUES ('cck_slideshow_puppet_slideshow_field_puppet_image', 'a:12:{s:9:\"node_type\";s:16:\"puppet_slideshow\";s:10:\"field_name\";s:18:\"field_puppet_image\";s:6:\"preset\";s:7:\"400wide\";s:8:\"auto_css\";i:1;s:13:\"custom_loader\";i:0;s:18:\"custom_loader_path\";s:0:\"\";s:14:\"links_position\";s:0:\"\";s:16:\"caption_position\";s:0:\"\";s:15:\"links_seperator\";s:3:\" | \";s:13:\"fade_duration\";s:3:\"500\";s:9:\"auto_play\";s:1:\"5\";s:11:\"destination\";s:28:\"admin/content/cck-slideshows\";}') in /var/www/leif/community/drupal/includes/database.mysql.inc on line 172.

This is a great module and hopefully can shake these bugs soon. I'll start poking around to figure it out, but still learning the ins/outs of drupal myself. I really like this slideshow way because it's easy for an end user to figure out.

nvoyageur’s picture

I guess I should mention that I was using this as part of slideshow as CCK display and using the latest dev snapshot.

hanskuiters’s picture

I have also a problem with the image size. In the module there is this piece of code:

  $width = $image['width'];
  $height = $image['height'] + 60;
  
  $style = "
  <style type=\"text/css\" media=\"all\">
    .$slideshow_class {
      width: ${width}px;
      height: ${height}px;
      border: 0px; /* IE MUST have a border set for slideshow to work */
    }
  </style>";

  return $style;

Only width and height stay empty. Seems like a bug to me, but I am not an php programmer.

hanskuiters’s picture

Issue reported as bug in http://drupal.org/node/178767. With solution.

quicksketch’s picture

Status: Active » Closed (duplicate)

Thanks capono, I'm marking this one as a duplicate since your new issue has been resolved. Please reopen if the latest CVS (soon to be 1.2, does not correct the problem).