Thank you for the reply,
I did some further investigation regarding the e-mail problem and it seems that there is a lot of discussion regarding this problem. A thread for this is :
forum.joomla.org/viewtopic.php?t=167296
They mention a crack in the code which I applied and it seems to work OK!
I am of course not sure as yet what the implications would be to the rest of the Registration Workflow but I will have to test it as we go.
I have about 1.2 million people that will need to be registered on the system within the next six months and we thus have to start as soos as possible to get the web running and have people register.
Do you by any chance know about any bulk upload software that will be able to load members into the database?
Here is the code that was commented out in the file libraries/joomla/database/table/user.php
The code in Joomla 1.7 is on line 225 and is commented out as such:
(this is the code to check if the e-mail is already in the database)
//* if ($xid && $xid != intval($this->id)) {
// $this->setError(JText::_('JLIB_DATABASE_ERROR_EMAIL_INUSE'));
// return false;
// }
The code for checking if a e-mail is entered in the e-mail field is in the same file as above and starts on line 192:
(this will allow you to leave the e-mail field blank. Also commented out)
//*if ((trim($this->email) == "") || ! JMailHelper::isEmailAddress($this->email)) {
//* $this->setError(JText::_('JLIB_DATABASE_ERROR_VALID_MAIL'));
//* return false;
//*}
The other thing to make sure of, of course, is that the Required tic in the Field Manager of CB should be marked as NOT REQUIRED otherwise one still get's the problem that it still asks for a e-mail to be entered.
I would also like to know if it is possible to change or to remove some of the pre-defined fields in like the name, firstname, middle name and last name fields?
Thank you again ad have a great day!