joomla3.4 - Joomla 3.4.1 error message 'Table 'joomla3.o6fqu_updates' doesn't exist' -


when try , install new extensions receive error:

'table 'joomla3.o6fqu_updates' doesn't exist sql=show full columns 'o6fqu_updates'

can help?

seem table missing installation. have run query via phpmyadmin:

create table if not exists `o6fqu_updates` (   `update_id` int(11) not null auto_increment,   `update_site_id` int(11) default 0,   `extension_id` int(11) default 0,   `name` varchar(100) default '',   `description` text not null,   `element` varchar(100) default '',   `type` varchar(20) default '',   `folder` varchar(20) default '',   `client_id` tinyint(3) default 0,   `version` varchar(32) default '',   `data` text not null,   `detailsurl` text not null,   `infourl` text not null,   `extra_query` varchar(1000) default '',   primary key (`update_id`) ) engine=innodb default charset=utf8 comment='available updates'; 

above query copied 3.4.1 installation file. not sure if has compatibility previous versions. have added o6fqu table prefix used joomla3 database.


Comments

Popular posts from this blog

IF statement in MySQL trigger -

c++ - What does MSC in "// appease MSC" comments mean? -

android - MPAndroidChart - How to add Annotations or images to the chart -