Kunena 6.2.6 released

The Kunena team has announce the arrival of Kunena 6.2.6 [K 6.2.6] which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Loved Yes, it really IS possible to install K 1.6.4 on Joomla 1.5!

More
12 years 11 months ago #11 by xillibit
I need to check it by myself

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
12 years 11 months ago #12 by xillibit
Can-you just export the table jos_fb_version and give me the result ?

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
12 years 11 months ago #13 by blindek
Hello,

These is the resoult:
Code:
-- phpMyAdmin SQL Dump -- version 3.3.2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: May 16, 2011 at 10:13 AM -- Server version: 5.0.51 -- PHP Version: 5.2.6-1+lenny9 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `codsi2_joomla2` -- -- -------------------------------------------------------- -- -- Table structure for table `jos_fb_version` -- CREATE TABLE IF NOT EXISTS `jos_fb_version` ( `version` varchar(10) NOT NULL default '', `date` int(8) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `jos_fb_version` -- INSERT INTO `jos_fb_version` (`version`, `date`) VALUES ('1.0.5NB2', 2008);

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

More
12 years 11 months ago #14 by xillibit
Delete the table jos_fb_version and do this instead :
Code:
CREATE TABLE IF NOT EXISTS `jos_fb_version` ( `id` int(11) NOT NULL AUTO_INCREMENT, `version` varchar(20) NOT NULL, `versiondate` date NOT NULL, `installdate` date NOT NULL, `build` varchar(20) NOT NULL, `versionname` varchar(40) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Contenu de la table `jos_fb_version` -- INSERT INTO `jos_fb_version` (`id`, `version`, `versiondate`, `installdate`, `build`, `versionname`) VALUES (1, '1.0.5RC2', '2008-10-06', '2011-05-15', '803', 'Redwood');

Then you can try if upgrade works to k1.6.4

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
12 years 11 months ago #15 by blindek
Great, it woks!! Thank you very much. New 1.6 is realy really much better. GJ guys.

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

More
12 years 11 months ago #16 by Matias
It looks like you had nightly build 2 from FireBoard 1.0.5 -- you should never upgrade any software from internal nightly builds into anything else than the closest stable release.

Nightly builds are only meant to be used to testing and often there's no upgrade path from them.

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

Time to create page: 0.346 seconds