The answer seems to be no.. I have been trying to make a cronjob to do this but have not had any success as of yet. The command you need to invoke is
Code:
// A hack to force Community Builder to syncUsers and set confirmed and approved to true
$sql_sync = "INSERT IGNORE INTO #__comprofiler(id,user_id) SELECT id,id FROM #__users";
$database->setQuery($sql_sync);
$database->query();
THAT IS JUST THE ONE LINE NOT THE ENTIRE CRONJOB
also been trying to make it work via an autoaction but so far with no sucess using the following
Code:
UPDATE `#__comprofiler` SET `approved`= '1' WHERE `user_id` = '[user_id]'
using autoaction but still no success
Anyine have any ideas?