at least that what drupal 7.0 is telling me that "There are no images in this folder."

but i know there are 2 images in that folder ... so what could be wrong?

Comments

muitobem’s picture

I'm having the same problem.
I have images and folders in gallery folder and i got that error.
I look at mysql table fast_gallery_hierarchy and fast_gallery_file and they are empty.
I try to rescan images in config, but with no effect.

joerhoney’s picture

Component: Miscellaneous » Documentation
Category: support » bug
Priority: Normal » Major

Same here. Using D7, getting error: "There are no images in this folder."
Verified there is one image in the folder and that the path points to the right folder. Even tried with several images in the folder, to no avail.
Would love a solution for this.
Thanks!

hbblogger’s picture

I have the same problem in a clean version of DR7 but strangely not on another site where I have installed a number of other galleries and modules. It seems that in the clean version that the thumbnails are not being generated when rescan is operated. In addition the fast gallery file, fast gallery hierachy and cache fast gallery have no content. Problem could be with the connection to the db?

hbblogger’s picture

Possible solution is to install Shadowbox and set it up. Remember that you must also install the additional code from the shadowbox home page into all/libraries. Once shadowbox was installed and set up, fast gallery showed the images and they are displayed using shadowbox. Why? I think its because shadowbox comes from lightbox and in fact still recognizes some commands referring to light box.

Niubbo75’s picture

I have fast gallery + shadowbox on some websites using D7 (some installed single website, some installed multisites) but still no images were showing in it :-(
I can see the folders into the main path, I can see the subfolders, I can see "miniatures" of all the images into all folders and subfolders but when I click on any miniatures the only thing I get is a "Page not found" displayed into shadowbox.
Anyone can tell me how can I fix this issue?
Thanks in advance.

[EDIT] Problem solved enabling cleanurls. Now it work great![/EDIT]

ariro’s picture

The same problem here..

enabling cleanUrl dosn't work.

Anyone??

christiaan bollen’s picture

I have the same problem.

I created a test gallery. Title is "Test Gallery" and path galleries/test. The folder contains a few sample images. If I go to the page it says "There are no images in this folder." but it shows the title "Test Gallery".

Where does fast image save it's information? The fast_gallery_file and fast_gallery_hierarchy tables are empty. But the module still shows the title and paths.

I installed shadowbox but fast gallery still doesn't work. Cleanurls is enabled (otherwise it wouldn't show the right title).

cesar.brod@gmail.com’s picture

Same thing here. I am using D7 with Lightbox. Any help will be welcome!

isaac.el.cec@gmail.com’s picture

+1

Title of gallery is Ok.
Rest is the message ""There are no images in this folder."

- The tables "fast_gallery_file" and "fast_gallery_hierarchy" are empty after "Rescan"

kiwimind’s picture

Same here. Just installed fresh version of 7.7. Followed the installation steps (well, as much as possible using D7). No images showing but the pages are being created with the titles present.
Would be good to see this working as it seems like the best module to fit my requirements, unless someone else knows of one that will allow me to use approx. 50Gb of images already in folders easily in Drupal.
Thanks.

agerard’s picture

Same problem, fresh D7.7, shadowbox, no imageCache - mostly jpgs bit I tried a gif and still no luck.

commander_keen’s picture

Confirmed with fresh Drupal7.7 on IIS6

FastGallery
There are no images in this folder.

Installing Lightbox oder Shadowbox DOES NOT solve the issue.

bart.janssen’s picture

FastGallery
There are no images in this folder.
I had this problem also but in some folders there where pictures. So I copied the pictures who where working into some other folder with not working pictures and yes they still work. So I checkt the difference in files and saw a that the pictures who where not showing had .JPG and the one 's who where working had .jpg extenesion. So I supose it is not recomanded to use capitals in the file extension.

Also first run cron and after that run the DB options for fast gallery than they will show up.
I don 't know for shure that the DB options work. I have to check it out later.

kind regards

Vocabulo’s picture

Same problem here. Have tried all the solutions proposed above, but without any positive result.

bart.janssen’s picture

Hi, it seems this project has a lot of problems with permissions and also lightbox stuff etc maybe you have to try brilliant gallery even better is the fork from gilgabar it uses the image styles instead of custom code to resize images. It is a node based gallery so you can give the permissions really granular. Problem is that it is a sandbox project for the moment so you have to use git to take the files. But I know when more people are testing the project it wil become one of the better! (it is working very good for the moment)
Also it supports colorbox witch is available for D7.

pnick107’s picture

Running the cron after enabling the clean URLs (and every time you upload new images) solves the "no image" issue.
Still struggling to get lightbox2 working with this module .

pnick107’s picture

Not the best solution, but in fast_gallery-image.tpl.php
changing print $image; to

        print str_replace('href','rel="lightbox[fast_gallery]" href',$image) ; 
   

solves the lightbox problem.

A cleaner solution anyone?