-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.html
118 lines (81 loc) · 3.33 KB
/
README.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Welcome to your Plone installation</title>
<style>
body {
font: 90% Arial, FreeSans, sans-serif;
line-height: 1.5em;
clear: both;
margin: 2em auto;
width: 35em;
}
h1, h2 {
font-family: "Helvetica Neue", Arial, FreeSans, sans-serif;
margin-top: 1em;
}
a {
border-bottom:1px solid #999;
color:#0072B5;
text-decoration:none;
}
ul {
margin-left: 0;
padding-left:0;
list-style:none;
}
ul li {
margin-bottom: 1em;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1em;
}
</style>
</head>
<body>
<h1>Starting Zope/Plone</h1>
<p>Before you start Plone, you should review the settings in:</p>
<pre>/home/johan/instances/siyavula/buildout.cfg</pre>
<p>Adjust the ports Plone uses before starting the site, if necessary,
and run /home/johan/instances/siyavula/bin/buildout
to apply settings.</p>
<p>To start Plone, issue the following command in a terminal window:</p>
<pre> /home/johan/instances/siyavula/bin/plonectl start</pre>
<p>To stop Plone, issue the following command in a terminal window:</p>
<pre> /home/johan/instances/siyavula/bin/plonectl stop</pre>
<h1>Quick operating instructions</h1>
<p>After starting, you should be able to view the welcome page at::</p>
<pre><a href="http://localhost:8080/">http://localhost:8080/</a></pre>
<p>That page offer an options to create a new Plone site and to use the
lower-level Zope Management Interface (ZMI).</p>
<p>Use the admin password provided at:</p>
<pre>/home/johan/instances/siyavula/adminPassword.txt</pre>
<p>(If you used a GUI installer, you were asked for a password, and this file is not created.)</p>
<p>To change the admin password, click the "Password" link for the admin
user at:</p>
<pre><a href="http://localhost:8080/acl_users/users/manage_users">http://localhost:8080/acl_users/users/manage_users</a></pre>
<p>Password changes will not be reflected in adminPassword.txt.</p>
<h1>Updating After Installation</h1>
<p><strong>Always back up your installation before customizing or updating.</strong></p>
<h2>Customizing the installation</h2>
<p>You may control most aspects of your installation, including
changing ports and adding new packages and products by editing the
buildout.cfg file in your instance home at /home/johan/instances/siyavula.</p>
<p>See Martin Aspelli's excellent tutorial
<a href="http://plone.org/documentation/tutorial/buildout">Managing projects with zc.buildout</a>"
for information on buildout options.</p>
Apply settings by running " bin/buildout" in your instance directory.
<h2>Updating the installation</h2>
<p>To update your installation components, stop Plone, backup, edit your buildout.cfg file and run:</p>
<pre> bin/buildout</pre>
<p>from your instance directory.</p>
<p>Check portal_migration in the ZMI after update to perform version migration
if necessary. You may also need to visit the product installer to update
product versions.</p>
</body>
</html>