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

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.

Question [Resolved] "There are no categories in the section!" after migration j1.5 > j2.5 Kunena 1.7.2

More
14 years 1 month ago - 14 years 1 month ago #120796 by carsten888

not have permissions to view any categories in the frontend.

yes, that was it. :)

here is a script that anyone updateing from 1.5 to 2.5 can run to solve this issue.
Code:
$database = JFactory::getDBO(); $database->setQuery("SELECT id " ."FROM #__kunena_categories " ."WHERE pub_access='0' " ); $rows = $database->loadObjectList(); foreach($rows as $row){ $id = $row->id; $database->setQuery( "UPDATE #__kunena_categories SET pub_access='1', pub_recurse='1' WHERE id='$id' "); $database->query(); }

feel free to add this to Kunena tools.

greetings to Matias
Last edit: 14 years 1 month ago by carsten888.

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

More
14 years 1 week ago #122682 by baijianpeng
hi, carsten888,

I met exactly the same problem as yours. You are right, this is really a Problem ! (Why the other users just don't believe this?)

Thank you for working out this solution. However, I don't know how to run your script.

Could you please make that script into a simple PHP file, or give the correct script that can be run directly via phpMyAdmin to update the DB tables?

Thanks.

www.joomlagate.com/

Chinese Joomla Users' Portal

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

More
14 years 1 week ago #122758 by Matias
Kunena cannot be manually migrated from Joomla! 1.5 to Joomla! 2.5 -- category permissions need to be mapped between different versions of Joomla. All the extensions face the same issue if they store either access levels or user groups into database.

jUpgrade does this for you. If you just copy Kunena over, you need to do it manually for all the categories.

Those who can read some code, you should check administrator/components/com_kunena/install/j25upgrade.php on how to make the conversion.

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

Time to create page: 0.245 seconds