3
Can't install 'profile' module.
After investigating I found that modules\profile\sql\mysql.sql file was having duplicate table creation script. And install was failing...
CREATE TABLE `profile_category` (
`catid` int(12) unsigned NOT NULL auto_increment,
`cat_name` varchar(255) NOT NULL default '',
`cat_title` varchar(255) NOT NULL default '',
`cat_description` text NOT NULL,
`cat_weight` tinyint(4) unsigned NOT NULL default '0',
`cat_moduleid` int(12) unsigned NOT NULL default '0',
PRIMARY KEY (`catid`)
) TYPE=MyISAM;
CREATE TABLE `profile_category` (
`fieldid` int(12) unsigned NOT NULL,
`catid` int(12) unsigned NOT NULL,
PRIMARY KEY (`fieldid`)
) TYPE=MyISAM;
---
I don't know how to tune the profile? Couldn't find anything in Admin Panel. Icon is not appearing in admin menu.