[ Index ]
 

Code source de eZ Publish 3.9.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/ -> kickstart.ini-dist (source)

   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 mysql
 103  ## - postgresql - Use postgresql
 104  ## other values are possible if provided by extension
 105  #Type=mysql
 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  ## Database=<database>
 115  ## Which database to use
 116  #Database=ezp35test
 117  ## User=<username>
 118  ## Which user should be used in database
 119  #User=root
 120  ## Server=<password>
 121  ## Which password should be used for user
 122  #Password=
 123  ## Socket=<socket-path>
 124  ## Path to socket or empty for no socket 
 125  #Socket=
 126  
 127  #[language_options]
 128  ## Continue=<true|false>
 129  ## Whether this step should continue after reading the data
 130  #Continue=true
 131  ## Primary=<locale>
 132  ## The primary language for the site
 133  #Primary=eng-GB
 134  ## Languages[]=<locale>
 135  ## Additional languages
 136  #Languages[]
 137  ## EnableUnicode=true|false
 138  ## If set to true it will setup site using Unicode (utf-8)
 139  #EnableUnicode=true
 140  
 141  #[site_types]
 142  ## Continue=<true|false>
 143  ## Whether this step should continue after reading the data
 144  #Continue=true
 145  ## Site_package=<identifier>
 146  ## Which site package to install, package identifier
 147  #Site_package=news_site
 148  
 149  #[site_access]
 150  ## Continue=<true|false>
 151  ## Whether this step should continue after reading the data
 152  #Continue=true
 153  ## Access=<access-type>
 154  ## <access-type>:
 155  ## - url - Use url/path for matching
 156  ## - port - Use port for matching
 157  ## - hostname - Use hostname for matching
 158  #Access=url
 159  
 160  #[site_details]
 161  ## Continue=<true|false>
 162  ## Whether this step should continue after reading the data
 163  #Continue=true
 164  ## Title=<string>
 165  ## The site title
 166  ## if not supplied it uses the site package name
 167  #Title=My cool new site
 168  
 169  ## URL=<url>
 170  ## The URL to use
 171  ## if not supplied it will generate it from the current url
 172  #URL=
 173  
 174  ## Access=<string>
 175  ## The access name to use for user site
 176  ## if not supplied it will use site identifier
 177  #Access=news
 178  
 179  ## AdminAccess=<string>
 180  ## The access name to use for admin site
 181  ## if not supplied it will use site identifier + _admin
 182  #AdminAccess=news_admin
 183  
 184  ## AccessPort=<number>
 185  ## The access port to use for user page
 186  #AccessPort=8080
 187  
 188  ## AdminAccessPort=<number>
 189  ## The access port to use for admin page
 190  #AdminAccessPort=8081
 191  
 192  ## AccessHostname=<url>
 193  ## The access hostname to use for user page
 194  #AccessHostname=news.test.com
 195  
 196  ## AdminAccessHostname=<url>
 197  ## The access hostname to use for admin page
 198  #AdminAccessHostname=news-admin.test.com
 199  
 200  ## Database=<databasename>
 201  ## The database name to use for site
 202  #Database=ezp39test
 203  
 204  ## DatabaseAction=<action>
 205  ## What to do with the database, can be one of:
 206  ## <action>:
 207  ## - ignore
 208  ##     Try to add entries without cleaning up
 209  ## - remove
 210  ##     Clean up entries and add new ones
 211  ## - skip
 212  ##     Do not insert database schema + data
 213  #DatabaseAction=remove
 214  
 215  #[site_admin]
 216  ## Continue=<true|false>
 217  ## Whether this step should continue after reading the data
 218  #Continue=true
 219  ## FirstName=[string]
 220  ## The first name of the administrator user
 221  #FirstName=God
 222  ## LastName=[string]
 223  ## The first name of the administrator user
 224  #LastName=Like
 225  ## Email=[string]
 226  ## The email address of the administrator user
 227  #Email=nospam@ez.no
 228  ## Password=[string]
 229  ## The password of the administrator user
 230  #Password=publish
 231  
 232  #[security]
 233  ## Continue=<true|false>
 234  ## Whether this step should continue after reading the data
 235  #Continue=true
 236  
 237  #[registration]
 238  ## Continue=<true|false>
 239  ## Whether this step should continue after reading the data
 240  #Continue=true
 241  ## Comments=<string>
 242  ## Comment string to add to registration email
 243  #Comments=
 244  ## Send=<boolean>
 245  ## Whether to send registration email or not
 246  #Send=false


Généré le : Sat Feb 24 10:30:04 2007 par Balluche grâce à PHPXref 0.7