This repository has the code base that we currently use to create CiviCon and CiviCamp sites.
Our current policy is to use a multisite set up for all cons and camps, etc and to archive them .
-
create a new site directory in the sites/ directory
-
To share the user table we need to edit settings.php ...
```php` $databases = array ( 'default' => array ( 'default' => array ( 'database' => 'xxx', 'username' => 'xxx', 'password' => 'xxx', 'host' => 'xxx', 'port' => 'xxx', 'driver' => 'mysql', 'prefix' => array('users' => '[civicrm.org drupal db].'), ), ), );
3. ... and grant select and update access for the civicon user on the civicrm.org database.
```mysql
`GRANT SELECT,UPDATE ON [civicrm.org drupal db].users TO [civicron user]@"[host]"
Use wget
TODO: This documentation should be updated with appropriate archive instructions.