This problem came very frequently when you are using Joomla community builder extension. So here is a simple hack for Email as Username
Go to
/administrator/components/com_comprofiler/library/cb/cb.tables.php
Locate: function saveSafely( &$array, $ui, $reason )
Change line 1135
From
$this->username = $this->name;
to
$this->username = $this->email;
That’s it Enjoy 😉
Be the first to comment.