Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Yes, it is very importand for commercial sites to use the vm or other system login module.the method of vipzeus seems to be the only suitable solution for me, as I need to synchronize from Virtuemart to CB, not CB to VM.
There is NOT any hack of CB core or plugins.I have CB 1.2.3 and because I have installed some hacks I cannot change to CB 1.3.1.
First of all, did you bypassed the registration for by 2 plugins found here?I entered the modification in mod_login but it still doesn't work.
Does the code need to be adjusted for CB 1.2.3 ?
Here is an example from my 10 first lines of my mod_login.php$sql_sync = "INSERT IGNORE INTO #__comprofiler(id,user_id) SELECT id,id FROM #__users";
$database->setQuery($sql_sync);
$database->query();
I tried many ways, but its the only way who does work perfect.<?php
/**
* @version $Id: mod_login.php 14401 2010-01-26 14:10:00Z louis $
* @package Joomla
* @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
$sql_sync = "INSERT IGNORE INTO #__comprofiler(id,user_id) SELECT id,id FROM #__users";
$database->setQuery($sql_sync);
$database->query();
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.