Any idea why I might get this error when loading the page that's supposed to show the images?

# user warning: Table 'rivulcom_kirtlandsaconference.fast_gallery_folders' doesn't exist query: CREATE TEMPORARY TABLE fast_gallery_all_folders Engine=HEAP SELECT * FROM fast_gallery_folders UNION SELECT * FROM fast_gallery_folders_noexif in /home/rivulcom/public_html/sites/all/modules/fast_gallery/fast_gallery.class.php on line 575.

Comments

rapsli’s picture

Status: Active » Fixed

you don't have the write to create temporary tables

Toktik’s picture

I have similiar problem, but in cpanel I have created user with all priviliges including temporary tables. What's the problem?

Toktik’s picture

Status: Fixed » Active
drupal_jon’s picture

I have this problem too, but MySQL reports that the user has all privileges on that database. Rolling back to 6.x-3.3-beta1 this problem no longer occurs

albertalpha’s picture

I have the same problem too, but using 6.x-4.0-beta5 works OK. There is no need to rollback to 3.x version.

bserem’s picture

same here, subscribing

stleis’s picture

I had the same problem. In my case the solution was as followed:

In "fast_gallery.class.php" in lines 470 till 490 is checked which type of database connection is used. There are covered only two cases "mysql" and "pgsql". On my drupal installation i use "mysqli", which is quiet similar to "mysql". So i just extended line 470 "if ($db_type == 'mysql') {" to "if ($db_type == 'mysqli' or $db_type == 'mysqli') {" and it worked.

Perhapst this will help someone.

rapsli’s picture

Status: Active » Closed (won't fix)

this version is not supported anymore