Posted by johnhorning on September 12, 2009 at 10:04pm
Jump to:
| Project: | Fast Gallery |
| Version: | 6.x-4.0-beta7 |
| Component: | Miscellaneous |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (won't fix) |
Issue Summary
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
#1
you don't have the write to create temporary tables
#2
I have similiar problem, but in cpanel I have created user with all priviliges including temporary tables. What's the problem?
#3
#4
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
#5
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.
#6
same here, subscribing
#7
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.
#8
this version is not supported anymore