I created a small node gallery of 3 images. I installed Node Gallery Slideshow and I can now see a link and a tab for that in my gallery. But when I try to display the slideshow it doesn't show any images. The main image is not there and the small thumbnails below show only as placeholders. See the attached screenshot.

Thanks for your help!

CommentFileSizeAuthor
empty_slideshow.jpg3.57 KBkirilius

Comments

MIT88’s picture

Hi please did you find solution for this probleme. because i have the same. i will be thankful if you help me :)

kirilius’s picture

Not yet

MIT88’s picture

i finally find the solution; you have juste to activet the Clean URLs:
in .htaccess make sure the following lines exist otherwise copy paste them , make sure to replace /drupal6 by your site's directory otherwise it won't work. Save changes.

# Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
RewriteEngine on
RewriteBase /drupal6
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ /drupal6/index.php?q=$1 [L,QSA]

and in httpd.conf:

Change line 194
#LoadModule rewrite_module modules/mod_rewrite.so
to
LoadModule rewrite_module modules/mod_rewrite.so

change the AllowOverride directive from None (default) to All :
AllowOverride All
reload your appche and go to admin/settings/clean-urls you can activate it ;)

good luck

kirilius’s picture

Yes, I think that was the problem. My D6 installaiton got messed up and clean URLs were not enabled.

Thanks!