Installed 2.0-alpha1 and ran through set up (note we had been running 1.0-alpha8 prior to this). Upon creating a new gallery we see several errors like this:

user warning: Table 'server.node_galleries' doesn't exist query: SELECT n.nid, n.vid, n.title, n.type, n.created, nr.body, ng.*, f.* FROM node n INNER JOIN node_revisions nr ON n.vid = nr.vid INNER JOIN node_galleries ng ON n.nid = ng.nid INNER JOIN files f ON ng.fid = f.fid WHERE n.nid IN (SELECT g.nid FROM node_galleries g WHERE g.gid = 98) AND n.status = 1 ORDER BY ng.weight, ng.nid in path/sites/all/modules/node_gallery/node_gallery.inc on line 106.

though the gallery is created successfully. When attempting to add images to the new gallery we see an error like this for each image:

# user warning: Table 'server.node_galleries' doesn't exist query: SELECT nid FROM node_galleries WHERE gid = 98 AND nid = 99 in path/sites/all/modules/node_gallery/node_gallery.inc on line 194.
# user warning: Table 'server.node_galleries' doesn't exist query: SELECT nid FROM node_galleries WHERE gid = 98 in path/sites/all/modules/node_gallery/node_gallery.inc on line 199.
# user warning: Table 'sandweb1.node_galleries' doesn't exist query: INSERT INTO node_galleries (gid, nid, fid, weight, is_cover) VALUES (98, 99, 137, 0, 1) in path/includes/common.inc on line 3418.

The image is not uploaded and we still see the message:

There are no photos in this gallery currently. Upload Some!

We checked the db schema in the module file and it doesn't appear to align with the errors above. Is this a module issue or potential installation / configuration issue on our end?

Thanks.

Comments

cjohn112’s picture

Component: Code » Miscellaneous
Status: Active » Closed (fixed)

Nevermind - had to do a full uninstall from the module uninstall tab (vs just disabling & deleting) before uploading the new module.