Error 1146 Database Problem - Joomla! Forum - community, help and support
i cloned site work on , error in extension manger database tab.
1146 table 'cpaneluser_ab4j1.qvjb_user_profiles' doesn't exist sql=show columns in `qvjb_user_profiles` field = 'profile_value' , type = 'text'
anyone know how fix it? server plugin developer claim it's extension issue. don't error on site cloned from.
i need tab work can see future issues.
1146 table 'cpaneluser_ab4j1.qvjb_user_profiles' doesn't exist sql=show columns in `qvjb_user_profiles` field = 'profile_value' , type = 'text'
anyone know how fix it? server plugin developer claim it's extension issue. don't error on site cloned from.
i need tab work can see future issues.
a dirty fix create table
you can grab joomla.sql file
code: select all
#_user_profilesyou can grab joomla.sql file
code: select all
create table if not exists `#__user_profiles` (
`user_id` int(11) not null,
`profile_key` varchar(100) not null,
`profile_value` text not null,
`ordering` int(11) not null default 0,
unique key `idx_user_id_profile_key` (`user_id`,`profile_key`)
) engine=innodb default charset=utf8 comment='simple user profile storage table';
Comments
Post a Comment