Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] 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.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

This category is for discussing issues with the K 3.0 Blue Eagle template.

As general background, My Joomla site template makes a mess of Kunena .

We do not answer questions about other templates for Kunena here.

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.

Merged "Invisible text" - text font colour is the same as background colour

More
12 years 3 months ago - 12 years 3 months ago #153961 by 9themestore
Hi,

I have checked the template.css file of the current joomla template and seen the CSS rule define text color for Kunena forum. So I think you try to clear cache of your site and your server (If your server turn on cache). You can use this small tip.

- Open the index.php of joomla template and find below line:
Code:
<link type="text/css" href="/templates/siteground-j16-21/css/template.css" rel="stylesheet">
.

- Add this text "?v=1" after file name.
Code:
<link type="text/css" href="/templates/siteground-j16-21/css/template.css?v=1" rel="stylesheet">
.

- Upload this file to your server ([root]/templates/siteground-j16-21/css/)

- Press F5 or Ctrl + F5 to reload your site.

Hope this helps

- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful :)
Last edit: 12 years 3 months ago by 9themestore.

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

More
12 years 3 months ago - 12 years 3 months ago #153963 by Holding on
thanks for that.

I just need to take you back three steps

where will I find the cache for the site and how do I clear cache of your site

where will I find the cache for the server and how do I clear cache of your server

where do I find the Index.php of joomla template

I use filezilla to edit most files is that OK?
Last edit: 12 years 3 months ago by Holding on.

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

More
12 years 3 months ago - 12 years 3 months ago #153964 by 9themestore
Hi,

You can see it in the current Joomla template folder: "[root]/templates/siteground-j16-21/".

- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful :)
Last edit: 12 years 3 months ago by 9themestore.

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

More
12 years 3 months ago #153965 by Holding on
Hi There thanks for that

I have gone to /public_html/templates/siteground-j16-21 and opened the Index.php but the suggested line does not exist there.

please find content of Index.php file for your info does that help?

?php
/**
* @version $Id: index.php $
* @package Joomla.Site
* @copyright Copyright (C) 2009 - 2011 SiteGround.com - All Rights Reserved.
* @license GNU General Public License version 3 or later; see LICENSE.txt

* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.

* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.

* You should have received a copy of the GNU General Public License
* along with this program. If not, see < www.gnu.org/licenses/ >.
*/

// No direct access.
defined('_JEXEC') or die;

JHTML::_('behavior.framework', true);

/* The following line gets the application object for things like displaying the site name */
$app = JFactory::getApplication();
$tplparams = $app->getTemplate(true)->params;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns=" www.w3.org/1999/xhtml " xml:lang="language; ?>" lang="language; ?>" dir="direction; ?>">
<head>
<jdoc:include type="head" />
<!-- The following line loads the template CSS file located in the template folder. -->
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />
</head>
<body id="page_bg">
<div class="bgwrap">

<div class="top-menu">
<div id="sgmenu">
<jdoc:include type="modules" name="menuload" />
</div>
</div>
<div id="header">
<h1><a href="<?php echo $this->baseurl ?>"><?php echo $app->getCfg('sitename'); ?></a></h1>
</div>
<div id="wrapper">

<?php if ($this->countModules( 'position-7 and position-4' )) : ?>
<div class="maincol">
<?php elseif( $this->countModules( 'position-7' ) ) : ?>
<div class="maincol_w_left">
<?php elseif( $this->countModules( 'position-4' ) ) : ?>
<div class="maincol_w_right">
<?php else: ?>
<div class="maincol_full">
<?php endif; ?>

<?php if( $this->countModules('position-7') ) : ?>
<div class="leftcol">
<jdoc:include type="modules" name="position-7" style="rounded"/>
</div>
<?php endif; ?>

<div class="cont">
<jdoc:include type="component" />
</div>

<?php if( $this->countModules('position-4') ) : ?>
<div class="rightcol">
<div id="search">
<jdoc:include type="modules" name="position-0" />
</div>
<jdoc:include type="modules" name="position-4" style="rounded"/>
</div>
<?php endif; ?>
<div class="clr"></div>
</div>
<div class="sgfoot"><p style="text-align:center"><?php $sg = ''; include "templates.php"; ?></p></div>
</div>

</div>


<div id="footer"></div>


</div>
</body>
</html>

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

More
12 years 3 months ago #153966 by 9themestore
Hi,

You change below line:
Code:
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />

Change to
Code:
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css?v=1" type="text/css" />

- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful :)

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

More
12 years 3 months ago #153967 by Holding on
Hi 9themestore thanks for hanging in there.

I have made the changes, cleared cache etc, etc, etc.

but there is no change at all

I just don't know why that is?

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

Time to create page: 0.263 seconds