I did a backup of current database, trying to create the tables on a new server.
Error
SQL query:
#
# Table structure for table 'configuration'
#
CREATE TABLE configuration(
configuration_id INT( 11 ) AUTO_INCREMENT ,
configuration_title TEXT,
configuration_key VARCHAR( 255 ) DEFAULT '',
configuration_value TEXT,
configuration_description TEXT,
configuration_group_id INT( 11 ) DEFAULT '0',
sort_order INT( 5 ) ,
last_modified DATETIME,
date_added DATETIME DEFAULT '0001-01-01 00:00:00',
use_function TEXT,
set_function TEXT,
PRIMARY KEY ( configuration_id ) ,
UNIQUE unq_config_key_zen( configuration_key ) ,
KEY idx_key_value_zen( configuration_key, configuration_value ) ,
KEY idx_cfg_grp_id_zen( configuration_group_id )
);
MySQL said:
#1170 - BLOB/TEXT column 'configuration_value' used in key specification without a key length
I have no idea, it creates 9 tables then hits this error and fails
this is zen cart version 1.3.8
and mysql v. 5.0



