Kunena 6.2.5 & module Kunena Latest 6.0.7 released

The Kunena team has announce the arrival of Kunena 6.2.5 [K 6.2.5] which is now available for download as a native Joomla extension for J! 4.3.x/4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question K 1.6 / J! 1.6 - Admin Menu Missing

More
13 years 10 months ago - 13 years 9 months ago #1 by nzjacob
Running a wamp server on xp machine.

J 1.6a .. clean install
K 1.6a .. clean install

Installation seems OK except I get this error :
JLIB_INSTALLER_ABORT_COMP_BUILDADMINMENUS_FAILED

There are no menu's in the admin panel.

I can still access the K 1.6 CP witha direct link:
mysite\index.php?option=com_kunena

Any ideas or a genuine bug ?
Last edit: 13 years 9 months ago by sozzled. Reason: Changed subject to improve search relevance

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

More
13 years 10 months ago #2 by Cerberus
Replied by Cerberus on topic Re: Admin Menu Missing
please test with J1.5.18 stable and not J1.6 alpha

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

More
13 years 10 months ago - 13 years 10 months ago #3 by nzjacob
Replied by nzjacob on topic Re: Admin Menu Missing
Yep .. did that and worked fine except I get a new error when trying to access the default post

"An invalid post ID was requested."

More Info :
00 - JDatabaseMySQL::query: 1054 - Unknown column 'p.threadid' in 'on clause' SQL=SELECT a.*, b.*, p.id AS poll_id, modified.name AS modified_name, modified.username AS modified_username FROM jos_kunena_messages AS a LEFT JOIN jos_kunena_messages_text AS b ON a.id=b.mesid LEFT JOIN jos_users AS modified ON a.modified_by = modified.id LEFT JOIN jos_kunena_polls AS p ON a.id=p.threadid WHERE a.id='104' AND a.hold IN (0,1,2)
Last edit: 13 years 10 months ago by nzjacob.

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

More
13 years 10 months ago #4 by Cerberus
Replied by Cerberus on topic Re: Admin Menu Missing
restore ur DB from backup and try again and the step you did would be help in trouble shooting the more information you give us the easuer the job.

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

More
13 years 10 months ago #5 by Matias
Replied by Matias on topic Re: Admin Menu Missing
Joomla 1.6 fails to generate admin menus -- I do not know why. I've already got answer from Joomla team that aliases feature may be the reason, so I hope to see the fix soon. This error gets triggered *before* Joomla runs any code from Kunena.

Even if Joomla 1.6 compatibility is in lower priority right now (their installer is slightly broken), I would like to see test results from J1.6, too. There are some other issues as well, but you should be able to use it.

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

More
13 years 10 months ago - 13 years 10 months ago #6 by xillibit
Replied by xillibit on topic Re:Admin Menu Missing
For testing please use Joomla! 1.6 Beta1, because the alpha is very very outdated and there will be very soon a beta2, i hope this version fixe some issues.

I don't provide support by PM, because this can be useful for someone else.
Last edit: 13 years 10 months ago by xillibit.

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

More
13 years 10 months ago #7 by xillibit
Replied by xillibit on topic Re: Admin Menu Missing
nzjacob wrote:

Yep .. did that and worked fine except I get a new error when trying to access the default post

"An invalid post ID was requested."

More Info :
00 - JDatabaseMySQL::query: 1054 - Unknown column 'p.threadid' in 'on clause' SQL=SELECT a.*, b.*, p.id AS poll_id, modified.name AS modified_name, modified.username AS modified_username FROM jos_kunena_messages AS a LEFT JOIN jos_kunena_messages_text AS b ON a.id=b.mesid LEFT JOIN jos_users AS modified ON a.modified_by = modified.id LEFT JOIN jos_kunena_polls AS p ON a.id=p.threadid WHERE a.id='104' AND a.hold IN (0,1,2)

Do you have upgraded from a k1.5 version which have the poll hack ?

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.

More
13 years 10 months ago #8 by joomlauser
Replied by joomlauser on topic Re:Admin Menu Missing
xillibit wrote:

For testing please use Joomla! 1.6 Beta1, because the alpha is very very outdated and the re will be very soon a beta2, i hope this version fixe some issues.


Joomla 1.6 beta 2 is out. What is more, Joomla 1.6 beta 3 is scheduled for 14 June 2010.

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

More
13 years 10 months ago #9 by xillibit
Replied by xillibit on topic Re:Admin Menu Missing
joomlauser wrote:

xillibit wrote:

For testing please use Joomla! 1.6 Beta1, because the alpha is very very outdated and the re will be very soon a beta2, i hope this version fixe some issues.


Joomla 1.6 beta 2 is out. What is more, Joomla 1.6 beta 3 is scheduled for 14 June 2010.

I had tested the J1.6 Beta2, but the issue with admin menu isn't yet fixed :(.

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.

More
13 years 10 months ago - 13 years 10 months ago #10 by pieter
Replied by pieter on topic Re:Admin Menu Missing
Hi, I also ran into this issue, so I took a closer look at it...

First, installing 1.6.0-ALPHA gave me this error :
Code:
Fatal error: Cannot redeclare class Com_KunenaInstallerScript in .../administrator/components/com_kunena/install.kunena.php on line 31
The installation control 'kunena.xml' file in the zipfile specifies the same
file for both 'install' and 'uninstall'.. :
Code:
<installfile>install.kunena.php</installfile> <uninstallfile>install.kunena.php</uninstallfile>

which causes that same file to get interpreted twice.. This 'install.kunena.php'
file contains the Com_KunenaInstallerScript class definition, so that'll also
tried to get loaded twice...

A solution for this is to wrap the Com_KunenaInstallerScript class definition
into a 'class_exists' block :

Code:
if (!class_exists('Com_KunenaInstallerScript')) { class Com_KunenaInstallerScript { .... } }


OK, we're past the installation error.. Next, the module installed, but the admin
components menu does not show an entry for Kunena..

That's because the installation control 'kunena.xml' file does not contain a
'<menu>' element in the '<administration>' section... So, adding this :
Code:
<menu view="cpanel" img="components/com_kunena/com_kunena/images/kunena-logo-48.png">Kunena</menu>

to the '<administration>' section will solve that problem.
( modify kunena.xml, then rebuild the zipfile and reinstall, or install from the directory
with the modified file... )

btw. I used J1.6beta3 for this..

Hope this helps...

Pieter.
Last edit: 13 years 10 months ago by pieter.

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

Time to create page: 0.406 seconds