- Posts: 1245
- Thank you received: 186
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 is not a support forum for any of the products contained herein. For product support you should visit the developer's website.
The information given in this category is intended to guide users who want to use various third-party products with Kunena and, mostly, was written by Kunena users. The information here is not necessarily accurate, up-to-date nor is it intended to replace the support given by the developers of other Joomla extensions.
If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.
The information given in this category is intended to guide users who want to use various third-party products with Kunena and, mostly, was written by Kunena users. The information here is not necessarily accurate, up-to-date nor is it intended to replace the support given by the developers of other Joomla extensions.
If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.
Question TreeK. Tree-Shell for Kunena Forum
3 weeks 20 hours ago #235155
by Leen
With kind regards
Leen
Replied by Leen on topic TreeK. Tree-Shell for Kunena Forum
Hello, I have a quick question about tree tree
if I get this "Unable to refresh the tree. Please refresh the page and open the tree again"
message when I click on tree boom
where should I look for the error, if any?
if I get this "Unable to refresh the tree. Please refresh the page and open the tree again"
message when I click on tree boom
where should I look for the error, if any?
With kind regards
Leen
Please Log in or Create an account to join the conversation.
3 weeks 20 hours ago #235156
by lemur
Hi,
The most likely reason is that you haven't enabled the plugin as described in the documentation. Also, check if you have switched the Kunena template to TreeK.
If that doesn't help (which is highly unlikely), you can enable debug mode in the plugin to get a full diagnostic report of what is happening.
Please let us know here if the issue is resolved.
Leon
- - - - - - - - -
Signature:
Many thanks to Rich and the other advisors.
Replied by lemur on topic TreeK. Tree-Shell for Kunena Forum
if I get this "Unable to refresh the tree. Please refresh the page and open the tree again"
... where should I look for the error, if any?
Hi,
The most likely reason is that you haven't enabled the plugin as described in the documentation. Also, check if you have switched the Kunena template to TreeK.
If that doesn't help (which is highly unlikely), you can enable debug mode in the plugin to get a full diagnostic report of what is happening.
Please let us know here if the issue is resolved.
Leon
- - - - - - - - -
Signature:
Many thanks to Rich and the other advisors.
Please Log in or Create an account to join the conversation.
3 weeks 19 hours ago #235157
by Leen
With kind regards
Leen
Replied by Leen on topic TreeK. Tree-Shell for Kunena Forum
Hello, I have enabled debug mode in the plugin.
But where do I find the error log?
I do find a treek_install.php in administrator/logs,
but according to Google Translate, it's in Russian?
But where do I find the error log?
I do find a treek_install.php in administrator/logs,
but according to Google Translate, it's in Russian?
With kind regards
Leen
Please Log in or Create an account to join the conversation.
3 weeks 18 hours ago #235158
by lemur
treek_install.php is only the installation/update log (Yes, it's in Russian, but I'll fix that.). It is not the AJAX diagnostic log.
After enabling "Debug AJAX log" in the TreeK AJAX plugin, please reproduce the problem once: open a topic and click the TreeK icon.
Then check this file:
administrator/logs/treek_ajax.php
If your Joomla log folder has been changed, use the path shown in:
System -> Global Configuration -> System -> Path to Log Folder
Please send the last lines from treek_ajax.php after reproducing the problem.
After testing, you can disable "Debug AJAX log" again.
If treek_ajax.php is not created at all, the AJAX plugin may not be reached, the plugin may still be disabled, or Joomla may be writing logs to another folder.
Leon
P.S. If you are testing Trick on the live web rather than a local server, please send a link to the site.
- - - - - - - - -
Signature:
Many thanks to Rich and the other advisors.
Replied by lemur on topic TreeK. Tree-Shell for Kunena Forum
Hello, I have enabled debug mode in the plugin.
But where do I find the error log?
treek_install.php is only the installation/update log (Yes, it's in Russian, but I'll fix that.). It is not the AJAX diagnostic log.
After enabling "Debug AJAX log" in the TreeK AJAX plugin, please reproduce the problem once: open a topic and click the TreeK icon.
Then check this file:
administrator/logs/treek_ajax.php
If your Joomla log folder has been changed, use the path shown in:
System -> Global Configuration -> System -> Path to Log Folder
Please send the last lines from treek_ajax.php after reproducing the problem.
After testing, you can disable "Debug AJAX log" again.
If treek_ajax.php is not created at all, the AJAX plugin may not be reached, the plugin may still be disabled, or Joomla may be writing logs to another folder.
Leon
P.S. If you are testing Trick on the live web rather than a local server, please send a link to the site.
- - - - - - - - -
Signature:
Many thanks to Rich and the other advisors.
Please Log in or Create an account to join the conversation.
3 weeks 17 hours ago #235159
by Leen
With kind regards
Leen
Replied by Leen on topic TreeK. Tree-Shell for Kunena Forum
hello,
I mostly test locally with wamp server
now I’ve been messing around a bit with ChatGPT
and it gave this solution for treek.js
replace
for this (and in my case that works)
I mostly test locally with wamp server
now I’ve been messing around a bit with ChatGPT
and it gave this solution for treek.js
replace
Code:
function buildTreekAjaxUrl() { const paths = (window.Joomla && typeof window.Joomla.getOptions === 'function') ? (window.Joomla.getOptions('system.paths') || {}) : {}; const ajaxPath = String(paths.ajax || '/index.php/component/ajax?format=raw') .replace(/&/g, '&'); const url = new URL(ajaxPath, window.location.origin); url.searchParams.set('plugin', 'treek'); url.searchParams.set('group', 'ajax'); url.searchParams.set('format', 'raw'); return url.toString(); }
for this (and in my case that works)
Code:
function buildTreekAjaxUrl() { const paths = (window.Joomla && typeof window.Joomla.getOptions === 'function') ? (window.Joomla.getOptions('system.paths') || {}) : {}; let ajaxPath = String(paths.ajax || '/index.php/component/ajax?format=raw') .replace(/&/g, '&'); const root = String(paths.root || '').replace(/\/$/, ''); // Joomla can be installed in a subdirectory. // Prepend Joomla's root when the AJAX path is root-relative. if (root && ajaxPath.startsWith('/')) { ajaxPath = root + ajaxPath; } const url = new URL(ajaxPath, window.location.origin); url.searchParams.set('plugin', 'treeks'); url.searchParams.set('group', 'ajax'); url.searchParams.set('format', 'raw'); return url.toString(); }
With kind regards
Leen
Please Log in or Create an account to join the conversation.
3 weeks 16 hours ago - 3 weeks 15 hours ago #235160
by lemur
But your test shows a real issue: TreeK did not handle Joomla installations in a subdirectory correctly when building the AJAX URL.
I have fixed this in TreeK: the AJAX URL now uses Joomla's system.paths.root when needed.
The diagnostic log is:
administrator/logs/treek_ajax.php
treek_install.php is only the installation/update log.
A corrected version of Treek 2.0.7 will appear on Jed soon.
- - - - - - - - -
Signature:
Many thanks to Rich and the other advisors.
Replied by lemur on topic TreeK. Tree-Shell for Kunena Forum
Thank you, this is very useful. The important part is not changing plugin=treek to plugin=treeks. TreeK should keep plugin=treek.replace
...
for this (and in my case that works)
But your test shows a real issue: TreeK did not handle Joomla installations in a subdirectory correctly when building the AJAX URL.
I have fixed this in TreeK: the AJAX URL now uses Joomla's system.paths.root when needed.
The diagnostic log is:
administrator/logs/treek_ajax.php
treek_install.php is only the installation/update log.
A corrected version of Treek 2.0.7 will appear on Jed soon.
- - - - - - - - -
Signature:
Many thanks to Rich and the other advisors.
Last edit: 3 weeks 15 hours ago by lemur.
Please Log in or Create an account to join the conversation.
Time to create page: 0.238 seconds