Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 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 Kunena Internal Error
Joomla: 1.5.20
Kunena: 1.6.0-RC1
K Discuss: 1.6.0-RC1 b113 2010-08-18
After setting up the Kunena Discuss plugin, I have five ugly red errors displaying on my front page that say, "Kunena Internal Error: Please contact site administrator to fix this issue!"
Please Log in or Create an account to join the conversation.
If you enable debug mode in Kunena configuration panel , what's happen ?
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
I enabled debug mode in the Kunena configuration, but I don't see anything different on the front page or in Kunena.
Please Log in or Create an account to join the conversation.
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Moonstone wrote: Setup:
Joomla: 1.5.20
Kunena: 1.6.0-RC1
K Discuss: 1.6.0-RC1 b113 2010-08-18
After setting up the Kunena Discuss plugin, I have five ugly red errors displaying on my front page that say, "Kunena Internal Error: Please contact site administrator to fix this issue!"
The error is caused by the file ../plugins/content/kunenadiscuss.php, line 129:
$query = "SELECT fulltext FROM #__content WHERE id ={$article->id}";
I tested this SQL query in phpmyAdmin and the same error occurs.
Replace the line with this one, and everything should be OK:
$query = "SELECT `fulltext` FROM #__content WHERE id={$article->id}";
Please Log in or Create an account to join the conversation.