- Posts: 14
- Thank you received: 0
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 Going from Kunena 1.7 to Kunana 2.0 with sql database only
If not what's my other choice? Do I have to recreate the old Joomla 1.5 site and try to upgrade it with jUpgrade? I tried that while back but it would always hang and never finish the upgrade.
Thoughts?
Please Log in or Create an account to join the conversation.
What comes to Kunena, you can just copy media/kunena folder and all jos_kunena tables into the new database with new prefix and install the component. After that you need to change all category permissions (or migrate with JUpgrade).
Please Log in or Create an account to join the conversation.
I used jUpgrade Pro and I got all users and other stuff imported to Joomla 2.5.11 version. I then installed Kunena 2.0.4 on that site. I transferred all old jos_kunena tables to the new database and renamed them to newprefix_kunena. I copied media folder and made sure new site has the same kunena plugins enabled as the old site.
At that point I tried it, I see all categories and posts but I get these two messages both on frontend and backend:
Warning: array_intersect() [function.array-intersect]: Argument #2 is not an array in /home/dzikson/public_html/j25/plugins/kunena/joomla/access.php on line 178
Warning: array_intersect() [function.array-intersect]: Argument #2 is not an array in /home/dzikson/public_html/j25/plugins/kunena/joomla/access.php on line 179
This is what line 176-181 look like in access.php
Any ideas what I missed?
Edit:
OK, I guess it has to do with what you said about changing category permissions but I'm not sure what you mean by that. I checked all access levels in Category Manager and they're all set correctly. What am I missing?
Edit 2:
OK, I guess it just means you have to reapply every single one for a good measure because that's what I did and it's gone now.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Yiannistaos
- Offline
- New Member
- Posts: 1
- Thank you received: 0
Edit the file: plugins/kunena/joomla/access.php
Find the Lines: 177-184
Edit the code like the below:
..let me know about the result, please
Thank you.
Please Log in or Create an account to join the conversation.
Hello,Yiannistaos wrote: Hello Guys,
Edit the file: plugins/kunena/joomla/access.php
Find the Lines: 177-184
Edit the code like the below:
Code:public function getAuthoriseActions(KunenaForumCategory $category, $userid) { $groups = (array) JAccess::getGroupsByUser($userid, true); //$post = array_intersect($groups, $category->params->get('access_post', array(2,6,8))); $post = array_intersect($groups, explode('|',$category->params->get('access_post')), array(2,6,8)); //yiannistaos //$reply = array_intersect($groups, $category->params->get('access_reply', array(2,6,8))); $reply = array_intersect($groups, explode('|',$category->params->get('access_reply')), array(2,6,8)); //yiannistaos return array ('topic.create'=>!empty($post), 'topic.reply'=>!empty($reply), 'topic.post.reply'=>!empty($reply)); }
..let me know about the result, please
Thank you.
What that fix ?
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.