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

This category is only for reporting defects or problems with Kunena 1.6 test versions with Joomla 1.6. This is NOT a support forum - there is no support for test versions. Users should NOT install K 1.6 alpha or beta test versions on websites with live production data.

Question Profiles not saving?

More
15 years 3 months ago #85809 by xillibit
Replied by xillibit on topic Re: Profiles not saving?
Add this part of code in /components/com_kunena/funcs/profile.php line 556 :
Code:
$this->_db->setQuery ( "SELECT userid FROM #__kunena_users WHERE userid='{$this->profile->userid}'" ); $table_exist = $this->_db->loadResult (); if (KunenaError::checkDatabaseError()) return; if ( empty($table_exist) ) { $this->_db->setQuery( "INSERT INTO #__kunena_users (userid) VALUES ({$this->profile->userid})" ); $this->_db->query (); if (KunenaError::checkDatabaseError()) return; }

I don't provide support by PM, because this can be useful for someone else.
The following user(s) said Thank You: singletrack

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

More
15 years 3 months ago #85966 by singletrack
Thanks so very much!

This fixed the issue and I no longer have to sync all the time manually!

All is good and if I could hit thank you button more, I would!

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

More
15 years 3 months ago #85972 by xillibit
Replied by xillibit on topic Re: Profiles not saving?
This fix is now in K1.6.4 and thanks for feedback

I don't provide support by PM, because this can be useful for someone else.
The following user(s) said Thank You: singletrack

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

Time to create page: 0.227 seconds