Joomla Registration Plugin

rainie285 17 Nov, 2010
I followed the instructions on setting up the Joomla registration forms. Tested and it works. But how do I get it to redirect to the chronoforms registration form from the J Login module ['Register' or 'Create a new account']? I've enabled the plugins...

Using the latest version of chronoforms V3.2 and 1.5.22 Joomla

I included the hack: <?php // no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('index.php?option=com_chronocontact&chronoformname=registration');
?>

components/com_user/views/register/tmpl/default.php



Thank you!!!
GreyHead 17 Nov, 2010
Hi rainie285 ,

It may be that the RocketTheme template you are using is over-riding the default view in com_user. You'd need to check if there is an over-ride file in the template's html folder.

Bob
rainie285 18 Nov, 2010
That was exactly it!

/templates/(template name)/html/com_user/register/default.php

Replaced:
// no direct access
defined('_JEXEC') or die('Restricted access');
?>

With:
// no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('/index.php?option=com_chronocontact&chronoformname=registration');
?>

Thank you!!!

Rainie dey
cf_jamo 07 Dec, 2010
Hi admin,
am also having a problem with the Joomla Registration Plugin my form is ok, it sends emails and saves to a table but i want users to be able to login and edit their profiles.when i test it by trying to register everything else works but the default joomla users table is not getting updated, what could be wrong, am using the latest chronoforms component
GreyHead 07 Dec, 2010
Hi cf_jamo,

Please check that the plug-in is enabled on the form Plug-ins tab. A **green** bar is enabled and red is disabled. Please only enable the plug-ins you are actually using otherwise they may interfere with each other. Also check the plug-in order to make sure that makes sense -- you can drag the bars to change the order.

Bob
cf_jamo 07 Dec, 2010
Thanx grey head!
i was busy looking for a big problem when it was right under my nose, how blonde of me.
This topic is locked and no more replies can be posted.