Hi Krishnmx,
Interesting... judging from the error, there's a couple of things it might be: the UTF8 charset isn't installed or you don't have the MyISAM engine type (this is just the way the database information is actually stored behind the scenes). Both of those are available in all out-the-box installations of MySQL.
Do you have phpMyAdmin access? If so, you could connect to your DB and run some queries on your database to find out what's available. Try running these queries one by one:
This would at least help identify the problem. But I should note: Form Tools *requires* the UTF-8 charset and the MyISAM engine.
- Ben
Interesting... judging from the error, there's a couple of things it might be: the UTF8 charset isn't installed or you don't have the MyISAM engine type (this is just the way the database information is actually stored behind the scenes). Both of those are available in all out-the-box installations of MySQL.
Do you have phpMyAdmin access? If so, you could connect to your DB and run some queries on your database to find out what's available. Try running these queries one by one:
Code:
SHOW ENGINE InnoDB STATUS
SHOW ENGINE MyISAM STATUS
SHOW CHARACTER SET
This would at least help identify the problem. But I should note: Form Tools *requires* the UTF-8 charset and the MyISAM engine.
- Ben