Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

Question FB 1.0.5 on J1.0 ---> K1.5.9 on J1.5

More
16 years 2 months ago #38536 by Hemd
Hello all,

I am trying to migrate from FireBoard 1.0.5 RC1 on Joomla 1.0.15 to Kunena 1.5.9 on Joomla 1.5.14.

So far I migrated Joomla from 1.0 to 1.5 and migrate the FB tables to the new Joomla version site. Now I tried to install Kunena 1.5.9, with succes. I thought. I get the following errors, when I go to the Kunena component:

* Your Kunena installation is incomplete!

Notice

* Because of the above errors your Forum is now Offline and Forum Administration has been disabled.

Message

* Possible reasons for this error:
* 1) Kunena installation process has failed or timed out (try to install it again)
* 2) You have manually modified or removed some of the Kunena tables from your database
* You can find solutions to the most common issues on our community documentation wiki: Kunena Documentation Wiki
* Our support forum can be found from: www.kunena.com


What should I do to get this migration to work properly?

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #38538 by xillibit
Hello,

Because maybe there some tables missing, check with phpmyadmin all the tables that you have. So, you can try to reinstall kunena by using install from directory, in joomla! instlaler.

I don't provide support by PM, because this can be useful for someone else.

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #38542 by Hemd
xillibit wrote:

Hello,

Because maybe there some tables missing, check with phpmyadmin all the tables that you have. So, you can try to reinstall kunena by using install from directory, in joomla! instlaler.


Thanks for your reply.

How do I know what tables are missing?

I tried to reinstall Kunena by using install from directory, got this message:

I N S T A L L : Successful

php version: 5.2.12-2 (Required >= 5.0.3)
mysql version: 5.1.41-3 (Required > 4.1.19)


Went to the Kunena component and got the same error as I posted above. So it must be something with the tables, can you tell me what to do?

Thanks!

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #38550 by xillibit
Just give me the list of tables begining by jos_fb_*, i will check what is missing.

I don't provide support by PM, because this can be useful for someone else.

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #38551 by Hemd
xillibit wrote:

Just give me the list of tables begining by jos_fb_*, i will check what is missing.


categories
favorites
groups
messages
messages_text
ranks
sessions
smileys
subscriptions
users
version
whoisonline

These are the ones I have at the moment...

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #38552 by xillibit
You have three tables missing, so before do the following things, backup your database and create new tables by using this, use phpmyadmin :
Code:
CREATE TABLE IF NOT EXISTS `#__fb_announcement` ( `id` int(3) NOT NULL auto_increment, `title` tinytext NOT NULL, `sdescription` text NOT NULL, `description` text NOT NULL, `created` datetime NOT NULL default '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL default '0', `ordering` tinyint(4) NOT NULL default '0', `showdate` tinyint(1) NOT NULL default '1', PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8 CREATE TABLE IF NOT EXISTS `#__fb_attachments` ( `mesid` int(11) NOT NULL default '0', `filelocation` text NOT NULL, KEY `mesid` (`mesid`) ) DEFAULT CHARSET=utf8 CREATE TABLE IF NOT EXISTS `#__fb_moderation` ( `catid` int(11) NOT NULL default '0', `userid` int(11) NOT NULL default '0', `future1` tinyint(4) default '0', `future2` int(11) default '0', PRIMARY KEY (`catid`,`userid`) ) DEFAULT CHARSET=utf8

I don't provide support by PM, because this can be useful for someone else.

Please Log in or Create an account to join the conversation.

Time to create page: 0.220 seconds