269 Posts in 63 Topics by 127 members
Migrating a Site to Silverstripe
SilverStripe Forums » Migrating a Site to Silverstripe » MIgrating users
What you need to know when migrating your existing site to SilverStripe.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 1329 Views |
-
MIgrating users

19 December 2008 at 9:13am
Hello
How can I add new user from php code? Normally member data are set by calling $form->saveinto($obj). What is the other way to fill member obejct? I have users in file (csv) and I don't know how to do this.
Thx for any help
-
Re: MIgrating users

6 January 2009 at 3:59pm
You will need to write PHP to import this for the moment, or SQL, or use the newsletter import and migrate people over as members.
I've added a feature request for what you want, tho: http://open.silverstripe.com/ticket/3303
-
Re: MIgrating users

8 January 2009 at 8:25pm
You can create members in PHP by going $member = new Member(); then to save the member you just need to call write() on it to write it to the database.
As for the csv import tool you should look on the net for example code but the SS specific stuff is pretty easy.
$member = new Member();
$member->FirstName = "First Name Here";
$member->Surname = "Surname";
// ... you can do Email, or any other fields on member
$member->write(); // save the member
| 1329 Views | ||
|
Page:
1
|
Go to Top |



