Running into this problem during install:
Specified key was too long; max key length is 767 bytes(1071)
Failed:
CREATE TABLE sU4contacts ( id mediumint(8) unsigned NOT NULL auto_increment, salutation varchar(1024), first_name varchar(1024), last_name varchar(1024), title varchar(1024), organization mediumint(8) unsigned NOT NULL default '0', department varchar(1024), do_not_call char(1) NOT NULL default '0', email_work varchar(1024), email_home varchar(1024), email_other varchar(1024), phone_work varchar(1024), phone_home varchar(1024), phone_other varchar(1024), mobile varchar(1024), fax varchar(1024), address_street text, address_city text, address_state text, address_postalcode varchar(32) NOT NULL, address_country text, alt_address_street text, alt_address_city text, alt_address_state text, alt_address_postalcode varchar(32) NOT NULL, alt_address_country text, assistant varchar(1024), assistant_phone varchar(1024), birthdate int NOT NULL default '0', description text, shared char(1) NOT NULL default '0', member mediumint(8) unsigned NOT NULL default '0', created int NOT NULL default '0', cuser mediumint(8) unsigned NOT NULL default '0', modified int NOT NULL default '0', muser mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (id), INDEX (first_name,last_name,member), INDEX (organization,last_name) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_unicode_ci
I downloaded an earlier version, and install went smoothly.
According to the following MySQL Issue:
http://bugs.mysql.com/bug.php?id=68453
InnoDB indexes no longer silently truncated to 767 bytes, produce error instead in MySQL 5.6
Please use MySQL 5.5 instead of 5.6 or higher version.
We'll fix this issue in the next release.
fixed in v1.7 alpha