Hello folks. I seem to have run across a problem. I consistently get this error on various pages in the admin interface and have checked the mysql db and verified it doesn't exist:
user warning: Table 'newsprouts.cache_swftools' doesn't exist query: SELECT data, created, headers, expire, serialized FROM cache_swftools WHERE cid = 'swf:36b450b6fa923b412c8e3b60a8271da0' in /home/content/13/3900913/html/includes/cache.inc on line 26.
user warning: Table 'newsprouts.cache_swftools' doesn't exist query: UPDATE cache_swftools SET data = '
', created = 1299161147, expire = 0, headers = '', serialized = 0 WHERE cid = 'swf:36b450b6fa923b412c8e3b60a8271da0' in /home/content/13/3900913/html/includes/cache.inc on line 109.
Has anyone come across this before? Any ideas on how I can get this table in there?
Comments
Comment #1
Stuart Greenfield commentedDid you run
update.phpif you came from an earlier version of SWF Tools? The cache table is new and would not be installed by earlier versions.If you installed from scratch can you let me know what, if anything, you did out of the ordinary as it means the module didn't create the table properly.
You can create the table manually by copying the schema from
swftools.installand looking forswftools_scheme().Comment #2
ko_chin commentedHi,
I did install it from scratch but didn't do anything out of the ordinary. Copied the files over, enabled the module and got the error. Not quite sure why or for what reason. But thanks for the info, I'll create the table by hand then. Thanks!
Comment #3
ronline commentedThe same here.
Installed from scratch and found the same error.
update.php fixed all
Comment #4
vm commentedI can't reproduce the reported issue 6.x-3.0 beta 5 or the 3.x-dev
@#3 which version did you install? as this report was filed against 3.0-beta4 and the latest release is 3.0-beta5 and you didn't shift the version. If installing beta 4, then I'd suggest using the latest release and testing on a fresh drupal install.
This reads a bit like the module was implemented at one time, then removed, then added back in.
Comment #5
ronline commented@VM the module is 6.x-3.0-beta5.
Yes it has been implemented, then removed, then added back in
Comment #6
vm commentedThat is likely why update.php had to be run to force the new table to be created in the DB.