- Posts: 3
- Thank you received: 0
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.
Question Cannot register any users!
Just installed Kunena and the forum shows up just fine. However, nothing happens when I try to register a new user using Joomla's built-in login for. Registration page just refreshes.
I've looked through the configuration options, but don't know where I'm taking a wrong turn.
Please note that the website is being built on a local server.
Thank you in advance. Any help greatly appreciated.
Please Log in or Create an account to join the conversation.
So, having said this, can you please fill in the missing blanks: What version of Kunena are you using? What Kunena template are you using? What version of Joomla are you using?
Many new users are unaware that Kunena is not responsible for user registration or login or logout: these are Joomla functions. Kunena is not responsible for user registration, pure and simple. User registration is a Joomla function that may, or may not, be assisted by other components such as JomSocial or Community Builder or others. Kunena makes it possible to utilise these other components. In short, these are not Kunena matters.
Can you please demonstrate how you feel that your problems tie-in with Kunena? What is this "registration page" that keeps "refreshing". Who designed or developed it?
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
First, I'm a Joomla newbie, so maybe I'm going about this thing in the wrong way. For that I apologize.
I'm running Joomla 1.5.15 on a local installation (Xampp). Kunena version 1.5.11. Template: default_ex.
I don't have any community components (such as Community Builder) installed. Do I need that? I guess I just figured that Joomla's login form would tie up with the login needed to use the Kunena forum. I have user registration set to yes in the global configurations of Joomla. The only reason for my website to have a login form is in order to use your forum component.
Again, any help is greatly appreciated.
Please Log in or Create an account to join the conversation.
Kunena is not responsible for user registration, pure and simple. I don't know any other way of saying this. You don't need any other components to register your users but, in a local server configuration, users cannot self-register. In other words (because you don't have a mail server) you have to do the user confirmation yourself. This is a Joomla User Administration issue - it has nothing to do with Kunena.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
I used a little hack (dunno if its okay to post this but it might help to resolve the problem) in the profilebox.php which is located in YourJoomlaroot/components/com_kunena/template/default/plugin/profilebox/profilebox.php
Find this portion of the file using Ctr+F and just enter LOGIN. You should get something like this:
<?php // AFTER LOGIN AREA
if ($fbConfig->fb_profile == 'cb')
{
$loginlink = CKunenaCBProfile::getLoginURL();
$logoutlink = CKunenaCBProfile::getLogoutURL();
$registerlink = CKunenaCBProfile::getRegisterURL();
$lostpasslink = CKunenaCBProfile::getLostPasswordURL();
}
else if ($fbConfig->fb_profile == 'jomsocial')
{
$loginlink = JRoute::_('index.php?option=com_community&view=frontpage');
$logoutlink = JRoute::_('index.php?option=com_community&view=frontpage');
$registerlink = JRoute::_('index.php?option=com_community&view=register');
$lostpasslink = JRoute::_('index.php?option=com_community&view=frontpage');
}
else
{
$loginlink = JRoute::_('index.php?option=com_user&view=login');
$logoutlink = JRoute::_('index.php?option=com_user&view=login');
$registerlink = JRoute::_('index.php?option=com_user&view=register&Itemid=' . $Itemid);
$lostpasslink = JRoute::_('index.php?option=com_user&view=reset&Itemid=' . $Itemid);
}
Now for the mod (if You are just using Joomla and not using Jomsocial or CB than this should be enough:
//In this last section at ®isterlink explain to the router function to run the task
$loginlink = JRoute::_('index.php?option=com_user&view=login');
$logoutlink = JRoute::_('index.php?option=com_user&view=login');
$registerlink = JRoute::_('index.php?option=com_user&task=register&Itemid=' . $Itemid); //U can see I've changed the 'view' function to 'task' function
$lostpasslink = JRoute::_('index.php?option=com_user&view=reset&Itemid=' . $Itemid);
}
There. Works fine for me - hope it helps U2
Cheers!
It's a joke! It's a f***ing joke!! What's the matter with You!!??
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.