Hi everyone,
Im working on a migration of Drupal with my current database. This is the situation:
dspmembers < current member database with members >
dt_members table : contains password and usernames + other data
username and password are saved in plaintext along with some other member datafields within this table.
dspmagazine < database where installed drupal for magazine >
Now I want drupal to use the dt_members table and read the passwords and usernames from there, the rest of the data should be stored in the drupal database (dspmagazine)
How would i do this, where do i start?
the current dt_members table looks like this:
#----------------------------
# Table structure for dt_members
#----------------------------
create table dt_members (
id int(11) not null auto_increment,
login varchar(25),
pswd varchar(20),
email varchar(255),
name varchar(40),
gender varchar(10),
age int(11),
country varchar(255),
looking_for varchar(255),
ip_addr varchar(15),
reg_date int(11),
`status` int(11),
system_status int(11) default '0',
system_status_end int(11),
unlimited int(11) default '0',
unlimited_end int(11),
matchfinder int(11),
highlight int(11) not null default '0',
aquire int(11) not null default '0',
onchat int(11) not null default '0',
onimc int(11) not null default '0',