Kunena 7.0.2 Released

The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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

Question JomSocial and Kunena Profile Integration

More
15 years 2 months ago #77696 by Neocold
Azure, sorry about that, I did provide the wrong info on the profile.edit.php file.

As to why it is not working I am not sure, and I do not have a aup_bluface template on any of my installs?? We have two options here:

1) zip up and send me the aup_bluface template you have and I'll see what I can find out
2) Send me Cpanel and Website access information and I'll solve the problem myself

either way, send the info to Webmaster at ColdSystems.net

Maker of:
JomSocial and Kunena Profile Integration
JomSocial and Kunena Karma Integration
Both are available at my website.
The following user(s) said Thank You: Azure

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

More
15 years 2 months ago #77715 by Azure
Have emailed you with CPanel and J! admin access details.

Thank you!

Neocold wrote: Azure, sorry about that, I did provide the wrong info on the profile.edit.php file.

As to why it is not working I am not sure, and I do not have a aup_bluface template on any of my installs?? We have two options here:

1) zip up and send me the aup_bluface template you have and I'll see what I can find out
2) Send me Cpanel and Website access information and I'll solve the problem myself

either way, send the info to Webmaster at ColdSystems.net


"Do or do not, there is no try..."

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

More
15 years 2 months ago #77725 by Neocold
Azure, I have sent you two emails. Please note the issue I am having with your site as it is preventing me from testing this fix.

In file **/componenets/com_community/controllers/profile.php you were missing:
Code:
public function forumsettings() { CFactory::setActiveProfile(); $user =& JFactory::getUser(); if($user->id == 0) { return $this->blockUnregister(); } if(JRequest::getVar('action', '', 'POST') != ''){ $this->_saveProfile(); } $model = & $this->getModel('profile'); $model->setProfile('hello me'); $document =& JFactory::getDocument(); $viewType = $document->getType(); $viewName = JRequest::getCmd( 'view', $this->getName() ); $data = new stdClass(); $data->profile = $model->getEditableProfile($user->id); $view = & $this->getView( $viewName, '', $viewType); $this->_icon = 'forumsettings'; if(!$data->profile) echo $view->get('error', JText::_('CC USER NOT FOUND') ); else echo $view->get(__FUNCTION__, $data); } public function forumsettingsinsert() { CFactory::setActiveProfile(); $user =& JFactory::getUser(); if($user->id == 0) { return $this->blockUnregister(); } if(JRequest::getVar('action', '', 'POST') != ''){ $this->_saveProfile(); } $model = & $this->getModel('profile'); $model->setProfile('hello me'); $document =& JFactory::getDocument(); $viewType = $document->getType(); $viewName = JRequest::getCmd( 'view', $this->getName() ); $data = new stdClass(); $data->profile = $model->getEditableProfile($user->id); $view = & $this->getView( $viewName, '', $viewType); $this->_icon = 'forumsettingsinsert'; if(!$data->profile) echo $view->get('error', JText::_('CC USER NOT FOUND') ); else echo $view->get(__FUNCTION__, $data); } public function fsi2() { CFactory::setActiveProfile(); $user =& JFactory::getUser(); if($user->id == 0) { return $this->blockUnregister(); } if(JRequest::getVar('action', '', 'POST') != ''){ $this->_saveProfile(); } $model = & $this->getModel('profile'); $model->setProfile('hello me'); $document =& JFactory::getDocument(); $viewType = $document->getType(); $viewName = JRequest::getCmd( 'view', $this->getName() ); $data = new stdClass(); $data->profile = $model->getEditableProfile($user->id); $view = & $this->getView( $viewName, '', $viewType); $this->_icon = 'fsi2'; if(!$data->profile) echo $view->get('error', JText::_('CC USER NOT FOUND') ); else echo $view->get(__FUNCTION__, $data); }

which leads me to believe that you applied the code changes manually because I just verified that my included version of this file does have that code in it.

Please check if it is now working, if it is still not working then respond to my email about the redirection issue and how I can connect to the site we are working on.

Thank You.

Maker of:
JomSocial and Kunena Profile Integration
JomSocial and Kunena Karma Integration
Both are available at my website.
The following user(s) said Thank You: Azure, camsarim

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

More
15 years 2 months ago #77727 by Neocold
Azure, I remembered how to access a site through another method... anyway, that was the problem and all is now working! You also needed to adjust this section as noted:
Code:
IMPORTANT NOTE: You may have to edit forumsettings.php and fsi2.php to update the field_id to match your database for websiteurl, gender, birthdate these changes would be made in the 3 lines such as: $db->setQuery("SELECT * FROM #__community_fields_values AS su LEFT JOIN #__users AS u ON u.id=su.user_id WHERE su.user_id='{$my->id}' AND su.field_id='21'"); at the end where it contains: su.field_id='21'"); where 21 is the field_id in your mysql database table of **_community_fields_values
but I took care of that for you and I am now seeing the trend in default installs where that value is 12, so I will make that the default value in my zip file to hopefully alleviate that problem for everyone in the future.

So, everything is now working for you, let me know if you have any more problems. ;)

Maker of:
JomSocial and Kunena Profile Integration
JomSocial and Kunena Karma Integration
Both are available at my website.
The following user(s) said Thank You: Azure

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

More
15 years 2 months ago #77854 by Azure
Hey Neocold!

To say that I am over the moon with both your excellent hack and hands-on support would be a total understatement! Thank you, thank you and a BIG thank you for everything you have done to help get our footy fan site ready for its re-launch!

Full Kunena and Jomsocial integration is fully realised through your hard work and efforts and I commend you for all that you're doing to aid in this respect.

I will be making a donation to you because I value your expertise and extremely expeditious and meticulous approach to helping me implement a critical tool for the new site.

Thanks again and a Merry Christmas to you if you celebrate such a beast! ;)

"Do or do not, there is no try..."
The following user(s) said Thank You: Neocold

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

More
15 years 2 months ago #77857 by Neocold
Thank You very much for the kind words and generous donation. Feel free to let me know if you experience any more problems.

Again, Thank You.

Maker of:
JomSocial and Kunena Profile Integration
JomSocial and Kunena Karma Integration
Both are available at my website.

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

Time to create page: 0.260 seconds