- Posts: 13
- Thank you received: 1
Kunena 6.3.7 Released
The Kunena team has announce the arrival of Kunena 6.3.7 [K 6.3.7] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x/5.2.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 and issues discovered during the last development stages of K 6.3
Note: Please go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated.
Question php-fusion v6x -> Kunena 1.5 90% completed
What it converts
- forum
- Articles
- user data
** use at your own risk, code is a little commented, and really don't have instructions as yet..
Step one,
Install fusionbridge plugin - php-fusion usesdouble hash and some salt from memory (been awhile) anyway, install plugin and enable, this will allow your transfered fusion users to be able to use their exsisting password.... YAY
Step two
upload the \fusion_joomla folder to the root of your joomla directory
Step three
browse to this directory, and select "Settings"
Setup the info.. source db, destination db prefix etc etc
Step, run through each of the steps..
Clear And Convert Users (this will delete all users in joomla, permissions will come across, so if you are a super admin in fusion you will be a super admin in joomla ** ensure you have the auth plugin installed first..)
Convert New Users (doesn't work )
Clear And Convert Articles (As it states - doesn't delete exsisting articles)
Convert New Articles
Clear And Convert Forums (this will blow away anythign you have in your kunena install)
Clear And Convert Threads & Posts (This is automaticlly followed into after the previous step)
Clear And Convert Message Bodies Only (As it states, this also begins the transfer os attachment records, yet is yet to be finished)
Do Some Tidying Up (encoded char, smiles etc etc add any modifications you want in here)
remember to delete the convertor after use, as your db settings are stored in the .dat file
Please Log in or Create an account to join the conversation.
works fine with php-fusion v7
There is just one bug to fix- all forum convert went well,but something is with forum topic (subject) - they didn't convert at all, there is just space in subject! (look in pic)
How to fix that?
p.s. Sorry for my English!
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Did you mean this:
Table structure for table `fusion_forums` = This is categories
`forum_cat` mediumint( unsigned DEFAULT '0',
`forum_name` varchar(100) NOT NULL DEFAULT '',
`forum_order` smallint(5) unsigned NOT NULL DEFAULT '0',
`forum_description` text NOT NULL,
`forum_moderators` text NOT NULL,
`forum_access` tinyint(3) unsigned NOT NULL DEFAULT '0',
`forum_post` smallint(3) unsigned DEFAULT '101',
`forum_poll` smallint(3) unsigned NOT NULL DEFAULT '0',
`forum_vote` smallint(3) unsigned NOT NULL DEFAULT '0',
`forum_reply` smallint(3) unsigned NOT NULL DEFAULT '0',
`forum_attach` smallint(3) unsigned NOT NULL DEFAULT '0',
`forum_lastpost` int(10) unsigned NOT NULL DEFAULT '0',
`forum_postcount` mediumint( unsigned NOT NULL DEFAULT '0',
`forum_threadcount` mediumint( unsigned NOT NULL DEFAULT '0',
`forum_lastuser` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`forum_id`),
KEY `forum_order` (`forum_order`),
KEY `forum_lastpost` (`forum_lastpost`),
KEY `forum_postcount` (`forum_postcount`),
KEY `forum_threadcount` (`forum_threadcount`)
Table structure for table `fusion_posts` = Post messages
`thread_id` mediumint( unsigned DEFAULT '0',
`post_id` mediumint( unsigned NOT NULL AUTO_INCREMENT,
`post_message` text COLLATE utf8_unicode_ci NOT NULL,
`post_showsig` tinyint(1) unsigned NOT NULL DEFAULT '0',
`post_smileys` tinyint(1) unsigned NOT NULL DEFAULT '1',
`post_author` smallint(5) unsigned NOT NULL DEFAULT '0',
`post_datestamp` int(10) unsigned NOT NULL DEFAULT '0',
`post_ip` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0.0.0.0',
`post_edituser` smallint(5) unsigned NOT NULL DEFAULT '0',
`post_edittime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`post_id`),
KEY `thread_id` (`thread_id`),
KEY `post_datestamp` (`post_datestamp`),
KEY `post_datestamp_2` (`post_datestamp`)
Table structure for table `fusion_threads` = and here are subjects and other stuff
`thread_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`thread_subject` varchar(100) NOT NULL DEFAULT '',
`thread_author` smallint(5) unsigned NOT NULL DEFAULT '0',
`thread_views` smallint(5) unsigned NOT NULL DEFAULT '0',
`thread_lastpost` int(10) unsigned NOT NULL DEFAULT '0',
`thread_lastpostid` mediumint( unsigned NOT NULL DEFAULT '0',
`thread_postcount` smallint(5) unsigned NOT NULL DEFAULT '0',
`thread_lastuser` smallint(5) unsigned NOT NULL DEFAULT '0',
`thread_poll` tinyint(1) unsigned NOT NULL DEFAULT '0',
`thread_sticky` tinyint(1) unsigned NOT NULL DEFAULT '0',
`thread_locked` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`thread_id`),
KEY `thread_postcount` (`thread_postcount`),
KEY `thread_lastpost` (`thread_lastpost`),
KEY `thread_views` (`thread_views`)
Please Log in or Create an account to join the conversation.
Found out that in V6, fusion_posts there is post_subject field , but in V7 there isn't.
For this migrator you coded that subjects are token from fusion_posts - post_subject field, but for v7 subject need to be taken from fusion_threads - thread_subject field. ( i think )
Please Log in or Create an account to join the conversation.
I was so happy to find this! It was exactly what I needed!
But I'm getting an error when trying to get the users to the new site:
* Unable to run database query: 1054 - Table 'wiberg_altomhobby.jos_community_users' doesn't exist
* Unable to run database query: 1146 - Table 'wiberg_altomhobby.jos_community_fields_values' doesn't exist
* Unable to run database query: 1146 - Table 'wiberg_altomhobby.jos_fb_users' doesn't exist
* Unable to obtain row as associative array: 1146 - Table 'wiberg_altomhobby.jos_fb_users' doesn't exist
I tried creating the first table: 'wiberg_altomhobby.jos_community_users' and put in a field, just to see what would happen. I now get this error:
* Unable to run database query: 1054 - Unknown column 'userid' in 'where clause'
* Unable to run database query: 1146 - Table 'wiberg_altomhobby.jos_community_fields_values' doesn't exist
* Unable to run database query: 1146 - Table 'wiberg_altomhobby.jos_fb_users' doesn't exist
* Unable to obtain row as associative array: 1146 - Table 'wiberg_altomhobby.jos_fb_users' doesn't exist
As far as I can tell, it is a problem with a query - the structure seems to have changed from php4 to php5. ( bugs.mysql.com/bug.php?id=13551 )
But I am completely lost...!!
Can anyone please help...?
Rie
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.