source: enpraxis.educommons/trunk/enpraxis/educommons/INSTALL.txt @ 568

Revision 568, 3.9 KB checked in by david, 4 years ago (diff)

revving to final

Line 
1==================================
2Installing eduCommons 3.2.1-final
3==================================
4
5Download the eduCommons 3.2.1-final release, available at:
6
7::
8
9  http://sourceforge.net/projects/educommons/files/educommons/eduCommons-3.2.1-final/educommons.buildout-3.2.1-final.tar.gz/download
10
11
12
13Unarchive the package to a directory which will serve as your buildout directory. Change directories and run the bootstrap script:
14
15::
16
17  cd eduCommons
18  /usr/local/python2.4 bootstrap.py
19  (in some envoronments the command will be /usr/local/bin/python2.4 bootstrap.py)
20
21
22Then run the buildout script to download all the required packages and set up the eduCommons application:
23
24::
25
26        bin/buildout
27
28
29Or run the same buildout script above, plus the Selenium test runner (needed to run acceptance tests):
30
31::
32
33  bin/buildout -c tests.cfg
34 
35
36Create two directories for file system storage:
37
38::
39
40        mkdir parts/instance/var/fss_storage
41        mkdir parts/instance/var/fss_backup
42
43
44Once you have the buildout ready you can launch it using the following:
45
46::
47
48        bin/instance start
49
50
51Or to launch in the foreground of your console:
52
53::
54
55        bin/instance fg
56
57
58You should now be able to open a browser and go to the ZMI with the following URL
59(assuming that you configured Zope to run on port 8080)
60
61::
62
63        http://<server name>:8080/manage
64
65
66You should then get a dialog prompt asking for your Zope admin username and password. The default username/password for the buildout is admin/test1234.
67
68Install eduCommons Product in Your Zope Instance
69================================================
70
71Once you have logged into the ZMI via the management interface, you are now ready
72to create the site. Start by creating a plone site with the pull down menu in the
73top right corner. Give the plone site an ID and title. The ID will be used in the
74URL to access the site, so name it appropriately. The title will appear several
75places within the eduCommons install, and should be based on your group or institution.</p>
76Under "Extension Profiles" you need to do a multi-select (hold down the CTRL or the
77Command key). Select the following so they are all highlighted:
78
791. Working Copy Support (Iterate)
802. ContentLicensing
813. IMSTransport
824. LinguaPlone
835. PloneBookmarklets
846. Zip File Transport
857. eduCommons
868. Left Skin
87
88Then click "Add Plone Site." Once the eduCommons instance has been created, you will need to QuickInstall the FileSystemStorage Product.
89
90In the ZMI:
91
921. Navigate to your eduCommons instance
932. Navigate to portal_quickinstaller
943. Select the checkbox to the left of FileSystemStorage
954. Click Install
96
97If you wish to localize content in other languages you will need to QuickInstall install LinguaPlone.
98This can be done either now from the ZMI or later, via Site Setup --> Add-on Products.
99
100In the ZMI:
101
1021. Navigate to your eduCommons instance
1032. Navigate to portal_quickinstaller
1043. Select the checkbox to the left of LinguPlone
1054. Click Install
106
107If you have installed LinguaPlone you will also need to select your supported languages.
108
109In the ZMI:
110
1111. Navigate to your eduCommons instance
1122. Navigate to portal_languages
1133. Select one or more Allowed languages (use the control or apple key to multi-select)
1144. Click Save
115
116Additional instructions for localizing content using LinguaPlone are available in LOCALIZATION.txt.
117Finally, you need to reorder the Layers in your eduCommons Skins Selections.
118In the ZMI:
119
1201. Navigate to your eduCommons instance
1212. Navigate to portal_skins
1223. Click on the Properties tab
1234. Under the Skins Selections, in the Layers textbox for LeftSkin, cut the LinguaPlone entry and paste it one a new line below the eduCommons entry
1245. Click Save (be sure to click the Save button for the Skins selection section)
125
126Configure eduCommons
127====================
128
129Additional configuration information is provided in SETUP.txt or online_. This will help you to further customize eduCommons.
130
131.. _online: http://educommons.com/documentation/how-to/educommons-setup-instructions
132
133
Note: See TracBrowser for help on using the repository browser.