forked from DallasMuseumArt/OctoberFriends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (87 loc) · 4.78 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>DMA Friends by DallasMuseumArt</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>DMA Friends</h1>
<p>An OctoberCMS implementation of DMA Friends</p>
<p class="view"><a href="https://github.com/DallasMuseumArt/OctoberFriends">View the Project on GitHub <small>DallasMuseumArt/OctoberFriends</small></a></p>
<ul>
<li><a href="https://github.com/DallasMuseumArt/OctoberFriends/archive/v2.5.1.zip">Download <strong>v2.5.1 ZIP</strong></a></li>
<li><a href="https://github.com/DallasMuseumArt/OctoberFriends/archive/v2.5.1.tar.gz">Download <strong>v2.5.1 TAR</strong></a></li>
<li><a href="https://github.com/DallasMuseumArt/OctoberFriends">View On <strong>GitHub</strong></a></li>
</ul>
<ul>
<li><a href="https://github.com/DallasMuseumArt/OctoberFriends/zipball/master">Download <strong>devel ZIP</strong></a></li>
<li><a href="https://github.com/DallasMuseumArt/OctoberFriends/tarball/master">Download <strong>devel TAR</strong></a></li>
<li><a href="https://github.com/DallasMuseumArt/OctoberFriendsTheme">Get the <strong>Theme</strong></a></li>
</ul>
</header>
<section>
<p>DMA Friends is an open source plugin for <a href="http://octobercms.com">October CMS</a> that encourages and recognizes visitor participation as an essential ingredient of the museum experience. </p>
<h1>
<a id="installation" class="anchor" href="#installation" aria-hidden="true"><span class="octicon octicon-link"></span></a>Installation</h1>
<ul>
<li>Download and complete the installation for October CMS (<a href="http://octobercms.com">http://octobercms.com</a>)</li>
<li>Install the Rainlab "User" Plugin</li>
<li>Extract this repository into plugins/dma/friends</li>
<li>In plugins/dma/friends folder run <code>composer install</code>. </li>
<li>Enable the "Friends" Plugin</li>
<li>Go to the <a href="https://github.com/DallasMuseumArt/OctoberFriendsTheme">Friends Theme Repository</a> for instructions on downloading and installing the companion theme.</li>
</ul>
<h1>
<a id="documentation" class="anchor" href="#documentation" aria-hidden="true"><span class="octicon octicon-link"></span></a>Documentation</h1>
<p><a href="https://github.com/DallasMuseumArt/OctoberFriends/blob/master/docs/ACTIVITY-TYPES.md">Developing custom activity types</a></p>
<p><a href="https://github.com/DallasMuseumArt/OctoberFriends/blob/master/docs/EVENTS.md">Using custom events</a> </p>
<p>PHP API Documentation is available at <a href="http://developer.dma.org/friends/">http://developer.dma.org/friends/</a></p>
<p>OctoberCMS Documentation is available at <a href="https://octobercms.com/docs/">https://octobercms.com/docs/</a></p>
<h3>
<a id="legacy-wordpress-migrations" class="anchor" href="#legacy-wordpress-migrations" aria-hidden="true"><span class="octicon octicon-link"></span></a>(LEGACY) Wordpress Migrations</h3>
<p>If you are migrating from a wordpress/badgeos installation of friends you will also
need to provide database configuration in order to migrate your data</p>
<ul>
<li>edit apps/config/database.php and add the following
<pre>
'friends_wordpress' => array(
'driver' => 'mysql',
'host' => 'localhost',
'port' => '',
'database' => 'WORDPRESS_FRIENDS_DB',
'username' => 'WORDPRESS_USER',
'password' => 'WORDPRESS_PASS',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
</pre>
Substituting the appropriate database, user, and password</li>
</ul>
</section>
<footer>
<p>This project is maintained by <a href="https://github.com/DallasMuseumArt">Dallas Museum of Art</a></p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-20829143-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>