Closed (won't fix)
Project:
Fast Gallery
Version:
6.x-4.0-beta7
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
12 Sep 2009 at 22:04 UTC
Updated:
28 Aug 2010 at 09:37 UTC
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
Comment #1
rapsli commentedyou don't have the write to create temporary tables
Comment #2
Toktik commentedI have similiar problem, but in cpanel I have created user with all priviliges including temporary tables. What's the problem?
Comment #3
Toktik commentedComment #4
drupal_jon commentedI 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
Comment #5
albertalpha commentedI have the same problem too, but using 6.x-4.0-beta5 works OK. There is no need to rollback to 3.x version.
Comment #6
bserem commentedsame here, subscribing
Comment #7
stleis commentedI 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.
Comment #8
rapsli commentedthis version is not supported anymore