Skip to content

stevekessler/civicon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

103 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CiviCon sites

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 .

To create a new site

  1. create a new site directory in the sites/ directory

  2. 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]"

To archive a site

Use wget

TODO: This documentation should be updated with appropriate archive instructions.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 50.7%
  • JavaScript 39.9%
  • CSS 8.5%
  • Other 0.9%