Kunena move to crowdin for the translations

Like announced in the release nots of the K6.4 RC4 release, Kunena project has moved to crowdin : crowdin.com/project/kunena-forum to manage translations from K6.4 and beyond. The RC4 release is the last version before the stable, so for all translators please update your translations on crowdin.

Transifex is keept for translations from K6.3 and the previous versions of Kunena.

Kunena 6.3.10 Released
The Kunena team has announce the arrival of Kunena 6.3.10[K 6.3.10] 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 JomSocial and Kunena Profile Integration

More
14 years 2 months ago #41 by Neocold
Nate,

My initial thoughts on this are that it would have to be hard coded. I will take a look today and let you know what I find.

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
14 years 2 months ago #42 by Neocold
Nate,

go to the language files.... **/language/en-GB/en-GS.com_kunena.ini <<for the english one...

find these two lines:
COM_KUNENA_DT_DATETIME_FMT="%d %b %Y %H:%M"
COM_KUNENA_DT_DATE_FMT="%d %b %Y"

and switch the %b and the %d so it should be:

COM_KUNENA_DT_DATETIME_FMT="%b %d %Y %H:%M"
COM_KUNENA_DT_DATE_FMT="%b %d %Y"


now all of your kunena dates will be formated as MM-DD-YYYY

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: nater77

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

More
14 years 2 months ago #43 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
14 years 2 months ago #44 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
14 years 2 months ago - 14 years 2 months ago #45 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: 14 years 2 months ago by pac_indahood.

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

More
14 years 2 months ago #46 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
14 years 2 months ago #47 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
14 years 2 months ago - 14 years 2 months ago #48 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: 14 years 2 months ago by pac_indahood.

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

More
13 years 9 months ago #49 by Lelldorianx
Is this compatible with version 1.6.4 of Kunena and 2.2 of Jomsocial?

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

More
13 years 9 months ago #50 by RolandDeschain
Yes, I did it last night, plus I did the kunena/ jomsocial karma hack - sweet.
K latest, JS latest, J1.5.x

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

Time to create page: 0.300 seconds