- Posts: 3
- Thank you received: 0
Kunena 6.3.8 Released
The Kunena team has announce the arrival of Kunena 6.3.8 [K 6.3.8] 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.
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, these ideas in these topics will not work with later versions and, for that reason, the topics are locked.
Important K 1.5 latest posts module - no longer supported or maintained. Do NOT use this with K 1.6!
Blue85 wrote:
It's not my mod_kunenalatest as my name is mod_kunenalatest version 1.0.45 is the latest. If you have mod_kunena_latest it's some different project/different developer -> different support.Fatal error: Call to undefined function ctype_digit() in /srv/www/htdocs/j/modules/mod_kunena_latest/mod_kunena_latest.php on line 224
You can grab my module and take support from here
As a matter of fact that was all i needed - your mod works fine thanks!
Please Log in or Create an account to join the conversation.
When i publish kunena latest, it "kills" all module title translation there are below it.
"Members" become CC MEMBERS
All module titles become this CC SOMETHING, instead of translated name
Any clue?
Tks a lot
Please Log in or Create an account to join the conversation.
- fixed smile.class
- show avatars by default
Please Log in or Create an account to join the conversation.
Or component/module/plugin/template where is defined other class smile. Not the class from Kunena. Better would be to rename class smile to Ksmile to get rid off these issues.[/quote]Not in my module:
helper.php line 17So there must be another module which causes this. But which one?Code:require_once (JPATH_SITE.DS.'components'.DS.'com_kunena'.DS.'template'.DS.'default'.DS.'smile.class.php');
Jerry ever since i have upgraded to 1.5.6 I have that problem. I don't have any modules published and I get that error, any ideas?
Mahalo,
JBHawaii
Please Log in or Create an account to join the conversation.
I am using Kunena 1.5.6 and everything works OK for me.Jerry ever since i have upgraded to 1.5.6 I have that problem. I don't have any modules published and I get that error, any ideas?
Try the yesterday released version 1.0.46.
What's your used template? Try to find if smile is used in other files (grep -R smile *).
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Suposed i got 4 topic like: T1, T2, T3, T4.
Some user write something in topic T2 so the list will be now like: T2, T1, T3, T4.
Another user write something in topic T4 so the list with topic will be look like T4, T2, T3, T4 and so on ! Offcourse when somebody create new TOPIC it could be first on the list like there is now (but i want that the new post also make some changes on the list, not only new topics).
It is possible for this addon ?
Anyway THX for kunena component and kunenalatest is v nice too. Keep up your good work !
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I've investigated lockups and slowdowns on my site running Kunena forum and Kunena Latest Posts module.
I've found that one of the sql queries in the modules/mod_kunenalatest/helper.php is too complex for poor mysql:
SELECT q.maxid AS id, m.time, m.thread, n.hits, q.countid AS `count` , m.subject, m.userid, m.name, m.catid, q.catname, t.message, 0 AS unread
FROM (
SELECT max( m.id ) AS maxid, count( m.id ) AS countid, c.name AS catname
FROM jos_fb_messages AS m
JOIN jos_fb_categories AS c ON m.catid = c.id
WHERE c.published =1
AND m.hold =0
AND m.moved =0
AND c.pub_access
IN ( 0, 1 , -1, 18 )
GROUP BY m.thread
ORDER BY maxid DESC
LIMIT 14
) AS q
JOIN jos_fb_messages AS m ON q.maxid = m.id
JOIN jos_fb_messages AS n ON m.thread = n.id
JOIN jos_fb_messages_text AS t ON q.maxid = t.mesid
This query takes 1.5 secs running on my configuration - and almost all the time used for the creating tmp table inside mysql.
Other queries in this module are also look quite complex. Compare to the fireboard good old last posts module - no such complex queries were there.
Unfortunately I am not SQL-guru and I am not able to fix this by myself.
Currently I've just disabled this queries (displaying first post in the thread instead of the last one) but displaying last post in the thread is essential for this module.
Did anyone hear about similar troubles with such sql queries?
-- Dam
Please Log in or Create an account to join the conversation.
Please have a look at this thread, thanks:
www.kunena.com/forum/112-modules/33001-k...plicated-sql-queries
Please Log in or Create an account to join the conversation.