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 #79859 by nater77
Thanks for the info - it's exactly what I was looking for.

Nate

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

More
15 years 1 month ago #80129 by Neocold
Updated to version 2.5

Version 2.5 is a bug fix for 2.4, anyone running 2.4 should immediately update

When I added the links in 2.4 I accidentally made it so the links would always reflect the curretnly logged in user, not the profile being viewed. To fix this you only need to re-upload profile.about.php or reapply the hack manually if you are not using the default template.

Sorry for the bug!

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.

More
15 years 1 month ago - 15 years 1 month ago #80328 by pac_indahood
I have a problem
/forumsettings.php on line 76


Notice: Undefined variable: profileURL in /home/site/public_html/components/com_community/views/profile/view.html.php on line 75

Notice: Trying to get property of non-object in /home/site/public_html/components/com_community/templates/default/forumsettings.php on line 66

Jomsoacial 2.0.4 / Kunena 1.6.2
Last edit: 15 years 1 month ago by pac_indahood.

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

More
15 years 1 month ago #80340 by Neocold

pac_indahood wrote: I have a problem
/forumsettings.php on line 76


Notice: Undefined variable: profileURL in /home/site/public_html/components/com_community/views/profile/view.html.php on line 75

Notice: Trying to get property of non-object in /home/site/public_html/components/com_community/templates/default/forumsettings.php on line 66

Jomsoacial 2.0.4 / Kunena 1.6.2


You are saying the problem is on line 76 which is:
Code:
<td><?php if ($gender == Male) { ?><input type="hidden" name="gender" value="1" /> <?php } ?><?php if ($gender == Female) { ?><input type="hidden" name="gender" value="2" /> <?php } ?></td>
This should not be returning any problems, as it has not changed in quite a few versions, if ever.

The error you are receiving is saying line 66 which is the last line in:
Code:
$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='9'"); $user = $db->loadObject(); $state = $user->value;
If have set the --> 9 <-- to match the correct field_id in your community_fields_values table then I dont know what is going on here either.


You are also receiving an error for line 75 in view.html.php:
Code:
$url = explode( $alias , $profileURL );
As far as this goes, you got me here, this line has not changed since I released my hack and no one else has had a problem, and I am not having it on any of my sites. ?????


All this is assuming that you are using my files without any edits aside from the required edits in forumsettings.php to make the values match your database.

You have me stumped here, others running the same versions as you have had no problems that I have been made aware of. Also, as I said these lines that are returning errors have been in place for a few versions and others have had them working with no problems. This leads me to believe that something is off on your site, or you did not apply every part of my hack properly.

I would recheck everything to make sure that you applied everything exactly as noted in my instructions file. If you are still having problems we can see how you would like to proceed on solving the problem.

Sorry I can't be of more help at the time of writing this post.

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.

More
15 years 1 month ago #80358 by pac_indahood
Thank you for answer. I will check again the steps.

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

More
15 years 1 month ago - 15 years 1 month ago #80380 by pac_indahood
I think i solved the problem. In my Global configuration i turned off Search Engine Friendly URLs and Use Apache mod_rewrite. And restarted sh404sef(purged url)

And here i added quotes to Male and Female
<td><?php if ($gender == "Male") { ?><input type="hidden" name="gender" value="1" /> <?php } ?><?php if ($gender == "Female") { ?><input type="hidden" name="gender" value="2" /> <?php } ?></td>
Last edit: 15 years 1 month ago by pac_indahood.

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

Time to create page: 0.258 seconds