pwet

Sign in or create your account | Project List | Help | pwet.fr | Planet eZ Publish.fr | Bioutifoul Photos

pwet Svn Source Tree

Root/trunk/www/kickstart.ini-dist

1# Kickstart configuration for the setup wizard
2#
3# DESCRIPTION
4#
5# In this file, installation parameters for each step
6# in the setup wizard can be specified. For example, by
7# providing the database connection parameters here, the
8# corresponding graphical user interface asking for the
9# database parameters will have the input forms pre-filled
10# or be skipped, using the values provided here.
11#
12# USAGE
13#
14# Initialization:
15#
16# Copy this file as kickstart.ini to the root of your
17# eZ Publish installation to enable this functionality.
18#
19# Installation Steps:
20#
21# For each step in the setup wizard asking for user input,
22# there exists a corresponding configuration block in this
23# file. The name of a configuration block is placed within
24# squared brackets.
25#
26# The available blocks are:
27# email_settings
28# database_choice
29# database_init
30# language_options
31# site_types
32# site_access
33# site_details
34# site_admin
35# security
36# registration
37#
38# Uncomment the blocks that you want kickstarted and
39# modify their parameter values as shown below.
40#
41# Parameter Values:
42#
43# Each parameter value is explained in details within a
44# configuration block.
45#
46# As a general convention, the following syntax is being
47# used to identify mandatory and optional parameters:
48# <string> - Angle brackets mean that this parameter value
49# is mandatory
50# [string] - Squared brackets mean that this parameter value
51# is optional
52#
53# "Continue" Parameter:
54#
55# The "Continue" parameter specifies whether a certain step
56# in the setup wizard should be skipped:
57# Continue=false - Show the interface, pre-filled with the
58# values defined in kickstart.ini. This is the
59# default behaviour if "Continue" is commented.
60# Continue=true - Do not show the interface, instead continue
61# to the next one and use the values defined
62# in the kickstart configuration file.
63#
64# TROUBLESHOOTING
65#
66# Remove all leading whitespaces from uncommented
67# configuration blocks or parameters - otherwise the
68# settings will not be read properly by eZ Publish.
69#
70# Do not mix up optional parameter values and configuration
71# blocks, just because both use squared brackets! Optional
72# parameter values only appear after the equal (=) sign.
73
74
75#[email_settings]
76## Continue=<true|false>
77## Whether this step should continue after reading the data
78#Continue=true
79## Type=<email-type>
80## Type of email handler
81## <email-type>:
82## - mta - Use Sendmail/MTA
83## - smtp - Use SMTP
84#Type=mta
85## Server=<hostname>
86## Which server to use for SMTP
87#Server=
88## User=<username>
89## Which user to use for SMTP
90#User=
91## Password=<hostname>
92## Which password to use for SMTP
93#Password=
94
95#[database_choice]
96## Continue=<true|false>
97## Whether this step should continue after reading the data
98#Continue=true
99## Type=<database-system>
100## Which database system to use
101## <database-system>:
102## - mysql - Use mysqli (MySQL Improved)
103## - postgresql - Use postgresql
104## other values are possible if provided by extension
105#Type=mysqli
106
107#[database_init]
108## Continue=<true|false>
109## Whether this step should continue after reading the data
110#Continue=true
111## Server=<hostname>
112## Which hostname has the database server
113#Server=localhost
114## Which port to connect to the database server
115#Port=
116## Database=<database>
117## Which database to use
118#Database=ezp35test
119## User=<username>
120## Which user should be used in database
121#User=root
122## Server=<password>
123## Which password should be used for user
124#Password=
125## Socket=<socket-path>
126## Path to socket or empty for no socket
127#Socket=
128
129#[language_options]
130## Continue=<true|false>
131## Whether this step should continue after reading the data
132#Continue=true
133## Primary=<locale>
134## The primary language for the site
135#Primary=eng-GB
136## Languages[]=<locale>
137## Additional languages
138#Languages[]
139
140#[site_types]
141## Continue=<true|false>
142## Whether this step should continue after reading the data
143#Continue=true
144## Site_package=<identifier>
145## Which site package to install, package identifier
146#Site_package=news_site
147
148#[site_access]
149## Continue=<true|false>
150## Whether this step should continue after reading the data
151#Continue=true
152## Access=<access-type>
153## <access-type>:
154## - url - Use url/path for matching
155## - port - Use port for matching
156## - hostname - Use hostname for matching
157#Access=url
158
159#[site_details]
160## Continue=<true|false>
161## Whether this step should continue after reading the data
162#Continue=true
163## Title=<string>
164## The site title
165## if not supplied it uses the site package name
166#Title=My cool new site
167
168## URL=<url>
169## The URL to use
170## if not supplied it will generate it from the current url
171#URL=
172
173## Access=<string>
174## The access name to use for user site
175## if not supplied it will use site identifier
176#Access=news
177
178## AdminAccess=<string>
179## The access name to use for admin site
180## if not supplied it will use site identifier + _admin
181#AdminAccess=news_admin
182
183## AccessPort=<number>
184## The access port to use for user page
185#AccessPort=8080
186
187## AdminAccessPort=<number>
188## The access port to use for admin page
189#AdminAccessPort=8081
190
191## AccessHostname=<url>
192## The access hostname to use for user page
193#AccessHostname=news.test.com
194
195## AdminAccessHostname=<url>
196## The access hostname to use for admin page
197#AdminAccessHostname=news-admin.test.com
198
199## Database=<databasename>
200## The database name to use for site
201#Database=ezp39test
202
203## DatabaseAction=<action>
204## What to do with the database, can be one of:
205## <action>:
206## - ignore
207## Try to add entries without cleaning up
208## - remove
209## Clean up entries and add new ones
210## - skip
211## Do not insert database schema + data
212#DatabaseAction=remove
213
214#[site_admin]
215## Continue=<true|false>
216## Whether this step should continue after reading the data
217#Continue=true
218## FirstName=[string]
219## The first name of the administrator user
220#FirstName=God
221## LastName=[string]
222## The first name of the administrator user
223#LastName=Like
224## Email=[string]
225## The email address of the administrator user
226#Email=nospam@ez.no
227## Password=[string]
228## The password of the administrator user
229#Password=publish
230
231#[security]
232## Continue=<true|false>
233## Whether this step should continue after reading the data
234#Continue=true
235
236#[registration]
237## Continue=<true|false>
238## Whether this step should continue after reading the data
239#Continue=true
240## Comments=<string>
241## Comment string to add to registration email
242#Comments=
243## Send=<boolean>
244## Whether to send registration email or not
245#Send=false
246

Archive Download this file

Revision: HEAD