Kunena 6.3.0 released

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

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 After upgrading (3.0.7) the ENTER key does not work.

More
9 years 1 month ago #11 by 810
first try the default joomla template. If you still can't use the enter key, then the problem is on 1 off the plugins. So you must disable all none joomla / kunena plugins, and enable it 1 by 1, until the broken one.

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

More
9 years 1 month ago #12 by Sky_80

TheresaHJ wrote: I am having the same problem. If anyone does find a solution, please post. In my case, I was able to post fine just a few days ago, and then suddenly "I couldn't." I am wondering if it is related to my Joomla 3.4 upgrade.


On my site, the problem was also present on Joomla! 3.3.6

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

More
9 years 1 month ago #13 by Sky_80
With the base template works.
I can solve keeping the template momentary ??

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

More
9 years 1 month ago #14 by 810
ok, if the default template works.

Then there is a issue on your js template.

go to templates/your_template/js/

rename the files, check if the enter works, If yes, then rename the file back 1 by one, until the broke one.

Or contact your template builder

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

More
9 years 1 month ago #15 by Sky_80
I try to rename the 3 files inside the folder : template/js ... One at a time.
But unfortunately nothing to do. The problem is not solved.

:(

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

More
9 years 1 month ago #16 by 810
ok, open templates/your_template/index.php
Looks if there is added js from other sites

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

More
9 years 1 month ago #17 by Sky_80
I'm not good with these things ...
this is my index.php file
Code:
<?php /** * @copyright Copyright (C) 2014 TheGrue.org - All Rights Reserved. **/ defined( '_JEXEC' ) or die( 'Restricted access' ); $scrolltop = $this->params->get('scrolltop'); $logo = $this->params->get('logo'); $logotype = $this->params->get('logotype'); $sitetitle = $this->params->get('sitetitle'); $sitedesc = $this->params->get('sitedesc'); $menuid = $this->params->get('menuid'); $animation = $this->params->get('animation'); $app = JFactory::getApplication(); $doc = JFactory::getDocument(); $templateparams = $app->getTemplate(true)->params; $menu = $app->getMenu(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <jdoc:include type="head" /> <?php if ( version_compare( JVERSION, '3.0.0', '<' ) == 1) { ?> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <?php } else { JHtml::_('bootstrap.framework');JHtml::_('bootstrap.loadCss', false, $this->direction);}?> <?php include "functions.php"; ?> <meta name="viewport" content="width=device-width" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/styles.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap.min.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/font-awesome.min.css" type="text/css" /> <!-- Custom CSS For IE --> <!--[if IE 7]><link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/font-awesome-ie7.min.css" type="text/css" /><![endif]--> <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script><![endif]--> <!-- Custom CSS --> <link href='http://fonts.googleapis.com/css?family=Coda' rel='stylesheet' type='text/css'> <?php if ($scrolltop == 'yes' ) : ?> <script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/scroll.js"></script> <?php endif; ?> </head> <body class="background"> <div id="header-wrap" class="container row clr"> <div id="header" class="clr"> <div id="header-i" class="clr"> <div id="logo" class="col span_4"> <?php if ($logotype == 'image' ) : ?> <?php if ($logo != null ) : ?> <a href="<?php echo $this->baseurl ?>"><img src="<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>" /></a> <?php else : ?> <a href="<?php echo $this->baseurl ?>/"><img src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/images/logo.png" border="0"></a> <?php endif; ?><?php endif; ?> <?php if ($logotype == 'text' ) : ?> <a href="<?php echo $this->baseurl ?>"><?php echo htmlspecialchars($sitetitle);?></a> <?php endif; ?> <?php if ($sitedesc !== '' ) : ?> <div id="site-description"><?php echo htmlspecialchars($sitedesc);?></div> <?php endif; ?> </div><!-- /logo --> <?php if ($this->countModules('top')) : ?> <div id="top" class="col span_8"><div id="top-i" class="clr"> <jdoc:include type="modules" name="top" style="none" /> </div></div> <?php endif; ?> <?php include "social.php"; ?> </div> </div> </div> <?php if ($this->countModules('menu')) : ?> <div id="navbar-wrap"> <nav id="navbar" class="container row clr"> <div id="navigation" class="span_12 col clr"> <jdoc:include type="modules" name="menu" style="menu" /> </div> </nav> </div> <div class="clr"></div> <?php endif; ?> <?php if (is_array($menuid) && !is_null($menu->getActive()) && in_array($menu->getActive()->id, $menuid, false)) { ?> <div id="slide-wrap" class="container row clr"> <?php include "slideshow.php"; ?> </div> <?php } ?> <div id="wrapper-w" class="container row clr"> <?php $menu = $app->getMenu(); if ($menu->getActive() == $menu->getDefault()) { ?> <div class="blue-point"><?php jlink(); ?></div> <?php } ?> <div id="wrapper"><div id="wrapper-i"> <?php if ($this->countModules('user1')) : ?> <div id="user1-wrap" class="container row clr"><div id="user1" class="clr"> <jdoc:include type="modules" name="user1" style="usergrid" grid="<?php echo $user1_width; ?>" /> </div></div> <?php endif; ?> <?php if ($this->countModules('breadcrumbs')) : ?> <jdoc:include type="modules" name="breadcrumbs" style="none"/> <?php endif; ?> <div id="box-wrap" class="container row clr"> <div id="main-content" class="row span_12"> <?php if ($this->countModules('left')) : ?> <div id="leftbar-w" class="col span_3 clr"> <div id="sidebar"> <jdoc:include type="modules" name="left" style="grid" /> </div> </div> <?php endif; ?> <div id="post" class="col span_<?php echo $compwidth ?> clr"> <div id="comp-wrap"> <jdoc:include type="message" /> <jdoc:include type="component" /> </div> </div> <?php if ($this->countModules('right')) : ?> <div id="rightbar-w" class="col span_3 clr"> <div id="sidebar"> <jdoc:include type="modules" name="right" style="grid" /> </div> </div> <?php endif; ?> </div> </div></div> </div> <?php if ($this->countModules('user2')) : ?> <div id="user2-wrap" class="container row clr"><div id="user2" class="clr"> <jdoc:include type="modules" name="user2" style="usergrid" grid="<?php echo $user2_width; ?>" /> </div></div> <?php endif; ?> <div id="footer-w"><div id="footer" class="container row clr" > <?php if ($this->countModules('copyright')) : ?> <div class="copyright"> <jdoc:include type="modules" name="copyright"/> </div> <?php endif; ?> <?php if ($this->countModules('footer-menu')) : ?> <div id="footer-nav"> <jdoc:include type="modules" name="footer-menu" style="none" /> </div> <?php endif; ?> </div></div> </div> </body> </html>

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

More
9 years 1 month ago #18 by Sky_80

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

More
9 years 2 weeks ago #19 by Sky_80

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

More
9 years 2 weeks ago #20 by 810
try :
1) disable scrolltotop
2) remove: <!--[if lt IE 9]><script src=" html5shim.googlecode.com/svn/trunk/html5.js "> 3) remove <?php include "functions.php"; ?>


But first make backup, then try one by one

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

Time to create page: 0.513 seconds