Hello,

I have created a gallery using the node gallery module, beta-3 and I have confirmed that a file is uploaded to "sites/default/files/node_gallery/".

That is however all that seems to happen. There are no files in "sites/default/files/styles/node_gallery_display" or "sites/default/files/styles/node_gallery_thumbnail", which I think there should have been. I can see in my access logs that the server attempts to find files in those directories. Whatever the issue may be, I cannot see any images in my gallery.

I have been using latest stable views module, and drupal 7.15, but I will do some more testing after I get some sleep.

Thank you.

Best regards,
Ao

Comments

Aonoa’s picture

I installed a clean drupal 7.19 with all the latest stable module requirements for node_gallery and it still behaves the same. The image files I upload into galleries are nowhere to be seen in the galleries, with the only trace of the files being in the files/node_gallery directory.

This seems like a very nice gallery module, and I would very much like it to work. :-)

Chaos tool suite (ctools) 7.x-1.2
Entity API 7.x-1.0
Entity reference 7.x-1.0
File entity (fieldable files) 7.x-2.0-unstable7
Node Gallery 7.x-1.0-beta3
Views 7.x-3.5

Best regards,
Ao

Aonoa’s picture

It seems as though it may be lighttpd's fault, but I am not yet sure how. I am using lighttpd instead of apache for this site. I did a little testing with another system that has apache, and node gallery worked there. Using the working database from the apache system even worked with the lighttpd server. Strange.

Aonoa’s picture

Priority: Major » Normal
Status: Active » Closed (works as designed)

Sorry for the bother with my issue here, I hope it has not caused any distress. I'm closing it now.

It was indeed lighttpd's fault, and thanks to this I was able to get a better lighttpd+drupal configuration. Prior to this it had seemed as if the lighttpd and drupal setup I had was working perfectly.

Thanks to this site: http://goodworkaround.com/node/45

And this rewrite code:

        url.rewrite-if-not-file += (
                "^/([^.?]*)\?(.*)$" => "/index.php?q=$1&$2",
                "^/([^.?]*)$" => "/index.php?q=$1",
                "([a-zA-Z\-\.\/\?\=\&]*)" => "/index.php"
        )

Best regards,
Ao