
Does what it says - but needs an install file
I was able to get this module to work, once I figured out that it was missing an install file (Drupal 6). I had to reverse-engineer the database table to go with it.
Once I created that, it works well. There is an administer form where you can specify which fields of user data to export, once you've done that, it creates a simple menu link to export the data.
Here is the code I ran for the missing table:
CREATE TABLE `profile_fields` (
`fid` INT( 9 ) NOT NULL ,
`title` VARCHAR( 100 ) NOT NULL ,
`name` VARCHAR( 200 ) NOT NULL ,
`category` VARCHAR( 200 ) NOT NULL ,
`weight` INT( 10 ) NOT NULL DEFAULT '0',
PRIMARY KEY ( `fid` )
)
I didn't check the Drupal 5 version to see if the table was defined there. It probably is.
Review by wheelercreek [info] on November 20, 2008 - 16:30