Jun 11th, 2013, 1:32 PM
(This post was last modified: Jun 11th, 2013, 1:48 PM by leeburstroghm.)
Ok the issue for ME was that my db name is all numbers. and sql has issues with this. so you have to encapsulate the tablename var in ` `
on line 939 of code/general.php ad the ` ` as in the following
$result = mysql_query("SHOW TABLES FROM `$g_db_name`");
NOT apostrophe, I am talking the ` below the tilda ~ its a sql thing.. I did NOT try putting it in the config.php as the actuall global var.. that should work.. but to fix all future issues. FormTool should ads the fix to keep this from happening.. The install script must have been written by someone else, with a little more fore site. Kudos!
I also found another entry around line 529. Another Show Tables Query.
on line 939 of code/general.php ad the ` ` as in the following
$result = mysql_query("SHOW TABLES FROM `$g_db_name`");
NOT apostrophe, I am talking the ` below the tilda ~ its a sql thing.. I did NOT try putting it in the config.php as the actuall global var.. that should work.. but to fix all future issues. FormTool should ads the fix to keep this from happening.. The install script must have been written by someone else, with a little more fore site. Kudos!
I also found another entry around line 529. Another Show Tables Query.