May 7th, 2011, 12:32 PM
Same problem.
Fedora Core 14
MySQL 5.5.11
PHP 5.3.6
Here are some quick fixes from the Unix command line:
From formtools top directory
1) Determine if you have the problem:
find . -type f -exec grep -Hi type=myisam {} \;
(no results == no problem)
2) Fix the problem:
find . -type f -name '*.php' -exec perl -pi.bak -e 's/TYPE=MyISAM/ENGINE=MyISAM/gi;' {} \;
3) Delete the backup files after fixing:
find . -type f -name '*.bak' -exec /bin/rm {} \;
(then run 1 again)
--Dave
Fedora Core 14
MySQL 5.5.11
PHP 5.3.6
Here are some quick fixes from the Unix command line:
From formtools top directory
1) Determine if you have the problem:
find . -type f -exec grep -Hi type=myisam {} \;
(no results == no problem)
2) Fix the problem:
find . -type f -name '*.php' -exec perl -pi.bak -e 's/TYPE=MyISAM/ENGINE=MyISAM/gi;' {} \;
3) Delete the backup files after fixing:
find . -type f -name '*.bak' -exec /bin/rm {} \;
(then run 1 again)
--Dave