I would like to use the Volunteer, RSVP, and Sign-Up modules along with the Event module, but it says I need the contact_manager module available at http://drumm.drupaldevs.org

That link doesn't work, and according to all the searching I did on this forum, that link hasn't worked for a long while.

Supposedly the only place to get the contact_manager module now is from the CivicCRM module.

I don't want the CivicCRM module, and I'm already using a template other than the CivicSpace one. CivicCRM is way more than my site needs. If I decide I need it later, I'll try it later.

Can somebody just post a copy of the contact_manager module by itself, or a link to it?

That would really help a lot of people in the same situation as me.

Comments

DeVill-1’s picture

Anybody have it?

~Total newbie giving myself a crash course in webmastering as of March 2006.~

DeVill-1’s picture

Anybody?

~Total newbie giving myself a crash course in webmastering as of March 2006.~

killes@www.drop.org’s picture

The module has been put out of commission. You might be able to get it with an older CivicSpace release (see civicspacelabs.org). I recommend you use the CVS version of volunteer together with CiviCRM
--
Drupal services
My Drupal services

DeVill-1’s picture

Thanks for the reply.

As I mentioned though, my site really doesn't need anything Civic at this time. Along with the other modules I'm running, Civic would just be too much for my site to handle.

I'm hoping somebody here has a Drupal 4.6 compatible version of the contact_manager module that they could post, without needing Civic.
Or maybe somebody was able to extract the contact_manager module code out of Civic and could post the extracted code here.

If anybody has it, it would be much appreciated.

~Total newbie giving myself a crash course in webmastering as of March 2006.~

DeVill-1’s picture

Still looking for this one.

~Total newbie giving myself a crash course in webmastering as of March 2006.~

DeVill-1’s picture

Anybody have it?

~Total newbie giving myself a crash course in webmastering as of March 2006.~

robin monks’s picture

http://viewsvn.civicspacelabs.com/viewcvs.cgi/csl/tags/0.8.1/modules/con... is a tarball of the old version of that module.

That said, CivicSpace is Drupal + CiviCRM + Modules, so if you website can manage handle Drupal, chances are you can install CivicSpace, CiviCRM is MUCH MUCH MUCH better than contact_manager, and you'd really be cheating yourself not to get it IMHO.

At any rate, you have the tarball you wanted, knock yourself out.

--
Robin Monks / Socials
I build teams and technology for positive change.

robin monks’s picture

http://civicspacelabs.org

Please read that. the CivicSpace distro is NOT a theme.

Robin

--
Robin Monks / Socials
I build teams and technology for positive change.

DeVill-1’s picture

Okay. I spent some time reading a lot of info about CivicCRM and CivicSpace, and I'm starting to wish I started off with CS in the first place. I'm probably going to use CRM if I can figure out how to install it.

Thanks for the contact_manager module. Unfortunately, it didn't come with the database or mysql files it needs.
Would you mind posting those if you have them?

Much appreciated.

EDIT: Okay. I Googled it and found the code I attached, but I really don't if it's correct. So far I haven't gotten any error messages from it.
I got it from: http://trac.civicspacelabs.org/cgi-bin/trac.cgi/file/trunk/database/civi...

Actually, I'm unable to add the attachment, so here:

-- Table structure for table `contact_manager`
--

CREATE TABLE contact_manager (
nid int(10) unsigned NOT NULL default '0',
hash varchar(32) NOT NULL default '',
mail varchar(64) NOT NULL default '',
mail_preference enum('optin','optout','not_specified') NOT NULL default 'optin',
mail_preference_csid int(10) unsigned NOT NULL default '0',
mail_type enum('text','html','not_specified') NOT NULL default 'text',
mail_type_csid int(10) unsigned NOT NULL default '0',
PRIMARY KEY (nid),
UNIQUE KEY hash (hash),
KEY mail (mail),
KEY hash_2 (hash)
) TYPE=MyISAM;

--
-- Table structure for table `contact_manager_data`
--

CREATE TABLE contact_manager_data (
nid int(10) unsigned NOT NULL default '0',
csid int(10) unsigned NOT NULL default '0',
ffid int(10) unsigned NOT NULL default '0',
active tinyint(1) unsigned NOT NULL default '0',
data text NOT NULL,
PRIMARY KEY (nid,csid,ffid),
KEY active (active),
KEY data (data(16))
) TYPE=MyISAM;

--
-- Table structure for table `contact_manager_form_fields`
--

CREATE TABLE contact_manager_form_fields (
ffid int(10) unsigned NOT NULL auto_increment,
fid int(10) unsigned NOT NULL default '0',
title varchar(255) default NULL,
name varchar(128) default NULL,
explanation text,
page varchar(255) default NULL,
type varchar(128) default NULL,
weight tinyint(1) NOT NULL default '0',
required tinyint(1) NOT NULL default '0',
flags text,
validation text,
options text,
multiple tinyint(1) NOT NULL default '0',
PRIMARY KEY (ffid),
UNIQUE KEY fid (fid,name)
) TYPE=MyISAM;

--
-- Table structure for table `contact_manager_forms`
--

CREATE TABLE contact_manager_forms (
fid int(10) unsigned NOT NULL default '0',
type varchar(16) NOT NULL default '',
created int(10) NOT NULL default '0',
PRIMARY KEY (fid)
) TYPE=MyISAM;

--
-- Table structure for table `contact_manager_search`
--

CREATE TABLE contact_manager_search (
sid int(10) unsigned NOT NULL default '0',
name varchar(255) NOT NULL default '',
type enum('search','permission') NOT NULL default 'search',
edit text NOT NULL,
PRIMARY KEY (sid),
KEY name (name),
KEY type (type)
) TYPE=MyISAM;

--
-- Table structure for table `contact_manager_sources`
--

CREATE TABLE contact_manager_sources (
csid int(10) unsigned NOT NULL default '0',
name varchar(255) NOT NULL default '',
weight tinyint(2) unsigned NOT NULL default '0',
active tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (csid),
KEY name (name),
KEY weight (weight),
KEY active (active)
) TYPE=MyISAM;

Can anyone tell me if that looks correct?

Thanks.

~Total newbie giving myself a crash course in webmastering as of March 2006.~

murari’s picture

the "attachment" is an mysql dump..

I started with CivicSpace and am now moving to Drupal for my community site. CS is nice but has a lot of bugs... good luck.