- Posts: 159
- Thank you received: 8
Kunena 7.0.8 Released
The Kunena team has announce the arrival of Kunena 7.0.8 [K 7.0.8] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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 contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.
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.
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.
Question tags / keywords hack for kunena
17 years 1 week ago #27922
by guerilla
Replied by guerilla on topic Re: tags / keywords hack for kunena
Please Log in or Create an account to join the conversation.
17 years 1 week ago #27929
by gonzaunit
Replied by gonzaunit on topic Re: tags / keywords hack for kunena
thanks guerilla, good job
Please Log in or Create an account to join the conversation.
16 years 10 months ago #31109
by FENIX
Replied by FENIX on topic Re:tags / keywords hack for kunena
Dear friends, I need this hack for Joomla 1.5
I tested tags at my Joomla 1.0 website and they are fantastic!
I really want to add this feature to my 1.5 joomla blog
I tested tags at my Joomla 1.0 website and they are fantastic!
I really want to add this feature to my 1.5 joomla blog
Please Log in or Create an account to join the conversation.
16 years 10 months ago #31122
by guerilla
Replied by guerilla on topic Re:tags / keywords hack for kunena
do you mean kunena 1.5, if it is, the hack also written for k1.5.
Please Log in or Create an account to join the conversation.
16 years 10 months ago #31141
by FENIX
Replied by FENIX on topic Re:tags / keywords hack for kunena
I don't think so, because I have the same trouble as it was with "related posts" module.
i noticed the same difference in strings - $database --->kunena_db
So I guess I should try to find all code pieces that are different from Joomla 1.5 (Kunena 1.5)
I hope I will do it.
i noticed the same difference in strings - $database --->kunena_db
So I guess I should try to find all code pieces that are different from Joomla 1.5 (Kunena 1.5)
I hope I will do it.
Please Log in or Create an account to join the conversation.
16 years 10 months ago #31145
by guerilla
Replied by guerilla on topic Re:tags / keywords hack for kunena
you are right. some codes have been changed.
at post.php, change this:
to this:
and this:
to this:
this:
to this:
theese are the differencies ive found.
good luck..
at post.php, change this:
Code:
//tags hack by golge
$tags = mosGetParam($_REQUEST, "tags", null);
//tags hack by golge
to this:
Code:
//tags hack by golge
$tags = JRequest::getVar('tags', '', 'REQUEST', 'string');
//tags hack by golge
and this:
Code:
//tags hack by golge
$database->setQuery("INSERT INTO #__fb_messages
(parent,thread,catid,name,userid,email,subject,time,ip,topic_emoticon,hold,tags)
VALUES('$parent','$thread','$catid','$fb_authorname','{$my->id}','$email','$subject','$posttime','$ip','$topic_emoticon','$holdPost','$tags')");
//tags hack by golge
to this:
Code:
//tags hack by golge $kunena_db->setQuery("INSERT INTO #__fb_messages
(parent,thread,catid,name,userid,email,subject,time,ip,topic_emoticon,hold, tags)
VALUES('$parent','$thread','$catid',".$kunena_db->quote($fb_authorname).",'{$kunena_my->id}',".$kunena_db->quote($email).",".$kunena_db->quote($subject).",'$posttime','$ip','$topic_emoticon','$holdPost','$tags')");
//tags hack by golge
this:
Code:
//tags hack by golge
. "' ,modified_time='" . $modified_time . "' ,modified_reason='" . $modified_reason : "") . "', subject='" . addslashes($subject) . "', topic_emoticon='" . ((int)$topic_emoticon) . "', hold='" . ((int)$holdPost) . "', tags='" . $tags . "' WHERE id={$id}");
//tags hack by golge
to this:
Code:
//tags hack by golge
. "' ,modified_time='" . $modified_time . "' ,modified_reason=" . $kunena_db->quote($modified_reason) : "") . ", subject=" . $kunena_db->quote(addslashes($subject)) . ", topic_emoticon='" . ((int)$topic_emoticon) . "', hold='" . ((int)$holdPost) . "', tags='" . $tags . "' WHERE id={$id}");
//tags hack by golge
theese are the differencies ive found.
good luck..
Please Log in or Create an account to join the conversation.
Time to create page: 0.271 seconds