Topic-icon SCLogin Module with other registration components

Active Subscriptions:

None
Can i use other registration components with the SCLogin Module? At this point it supports the Joomla, Jomsocial, Community Builder, Kunena & Virtuemart registration components.

I need to have custom fields that can be extracted from the database along with the user's usual registration details, and the Profile Plugin in J2.5 doesn't have the fields i need.

Any advice?
The topic has been locked.
Support Specialist
12 years 10 months ago #34613 by alzander
If you have another system you use for standard Joomla registrations, we can help you to make some modifications to the SCLogin module so that the Register button goes to whatever component you want.

If you're looking for more registration fields during the Facebook registration process, that's more difficult as it would require an additional Social Profile plugin for whatever system you're trying to integrate with.

Let us know which you're trying to do (redirect to a different registration form or integrate Facebook with another extension) and we can help.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
12 years 10 months ago #34626 by Kaizendeep
Hi Alex, yeah I'm using ExtendedReg. Would you need admin access to the site, i'll set an account up for you.
The topic has been locked.
Support Specialist
12 years 10 months ago #34639 by alzander
No, we wouldn't need access to the admin area. If all you're looking for is to redirect the "Register" button to a different link, let us know what link on your site you want the user to go to, and we can tell you exactly what to modify to update that button.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
The topic has been locked.
Support Specialist
12 years 10 months ago #34654 by alzander
To update the Register link, edit the /modules/mod_sclogin/mod_sclogin.php file. At the very bottom of the file, you'll see:
require(JModuleHelper::getLayoutPath('mod_sclogin', $helper->getType()));
?>
Update that to:
$registerLink = 'http://www.mysitename.com/index.php/component/extendedreg/register';
require(JModuleHelper::getLayoutPath('mod_sclogin', $helper->getType()));
?>
That will make the register link go where you want it to.

I hope that helps, but let us know how it goes!

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
12 years 10 months ago - 12 years 10 months ago #34659 by Kaizendeep
That works fine with the register link.

But i need this to go with the LOGIN link: www.mysitename.com/index.php/component/extendedreg/login

Because if i click on it right now as it is, i get a 500 - Invalid controller: name='users', format='' error.
Last edit: 12 years 10 months ago by Kaizendeep.
The topic has been locked.
Support Specialist
12 years 10 months ago #34660 by alzander
The Login button submits the username/password information to the normal Joomla login component. That shouldn't be changed and shouldn't throw an error. If it is, there's something strange going on on your site that you should investigate.

Do you have SEF enabled? If so, does it work without it enabled?

Also, you can try with the standard Joomla login module to see if you have the same issue. If so, again, that would point to something very strange happening on your site that should be fixed instead of changing that link.

Thanks,
Alex
The topic has been locked.