nextcloud/core/templates/installation.php

152 lines
7.0 KiB
PHP
Raw Normal View History

2013-02-28 01:55:39 +04:00
<input type='hidden' id='hasMySQL' value='<?php p($_['hasMySQL']) ?>'>
<input type='hidden' id='hasSQLite' value='<?php p($_['hasSQLite']) ?>'>
<input type='hidden' id='hasPostgreSQL' value='<?php p($_['hasPostgreSQL']) ?>'>
<input type='hidden' id='hasOracle' value='<?php p($_['hasOracle']) ?>'>
<input type='hidden' id='hasMSSQL' value='<?php p($_['hasMSSQL']) ?>'>
2011-08-08 19:57:45 +04:00
<form action="index.php" method="post">
<input type="hidden" name="install" value="true" />
<?php if(count($_['errors']) > 0): ?>
<fieldset class="warning">
<legend><strong><?php p($l->t('Error'));?></strong></legend>
2011-08-08 19:57:45 +04:00
<?php foreach($_['errors'] as $err): ?>
<p>
2011-08-08 19:57:45 +04:00
<?php if(is_array($err)):?>
2013-02-28 01:55:39 +04:00
<?php print_unescaped($err['error']); ?>
<span class='hint'><?php print_unescaped($err['hint']); ?></span>
<?php else: ?>
2013-02-28 01:55:39 +04:00
<?php print_unescaped($err); ?>
<?php endif; ?>
</p>
2011-08-08 19:57:45 +04:00
<?php endforeach; ?>
</fieldset>
2011-08-08 19:57:45 +04:00
<?php endif; ?>
<?php if($_['vulnerableToNullByte']): ?>
<fieldset class="warning">
<legend><strong><?php p($l->t('Security Warning'));?></strong></legend>
<p><?php p($l->t('Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)'));?><br/>
<?php p($l->t('Please update your PHP installation to use %s securely.', $theme->getName() )); ?></p>
</fieldset>
<?php endif; ?>
<?php if(!$_['secureRNG']): ?>
<fieldset class="warning">
2013-02-28 01:55:39 +04:00
<legend><strong><?php p($l->t('Security Warning'));?></strong></legend>
<p><?php p($l->t('No secure random number generator is available, please enable the PHP OpenSSL extension.'));?><br/>
<?php p($l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.'));?></p>
</fieldset>
<?php endif; ?>
<?php if(!$_['htaccessWorking']): ?>
<fieldset class="warning">
2013-02-28 01:55:39 +04:00
<legend><strong><?php p($l->t('Security Warning'));?></strong></legend>
<p><?php p($l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.'));?><br>
2013-07-11 19:39:44 +04:00
<?php print_unescaped($l->t(
'For information how to properly configure your server, please see the <a href="%s" target="_blank">documentation</a>.',
link_to_docs('admin-install')
2013-07-11 19:39:44 +04:00
)); ?></p>
</fieldset>
<?php endif; ?>
<fieldset id="adminaccount">
2013-02-28 01:55:39 +04:00
<legend><?php print_unescaped($l->t( 'Create an <strong>admin account</strong>' )); ?></legend>
2012-12-04 19:58:42 +04:00
<p class="infield grouptop">
<input type="text" name="adminlogin" id="adminlogin" placeholder=""
value="<?php p($_['adminlogin']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" autofocus required />
2013-02-28 01:55:39 +04:00
<label for="adminlogin" class="infield"><?php p($l->t( 'Username' )); ?></label>
<img class="svg" src="<?php p(image_path('', 'actions/user.svg')); ?>" alt="" />
</p>
2012-12-04 19:58:42 +04:00
<p class="infield groupbottom">
<input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" placeholder=""
value="<?php p($_['adminpass']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" required />
2013-02-28 01:55:39 +04:00
<label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label>
<img class="svg" id="adminpass-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt="" />
<input type="checkbox" id="show" name="show" />
<label for="show"></label>
<div class="strengthify-wrapper"></div>
</p>
2011-08-08 23:40:39 +04:00
</fieldset>
2011-10-03 15:32:16 +04:00
<?php if(!$_['directoryIsSet'] OR !$_['dbIsSet'] OR count($_['errors']) > 0): ?>
<fieldset id="advancedHeader">
<legend><a id="showAdvanced"><?php p($l->t( 'Storage & database' )); ?> <img class="svg" src="<?php print_unescaped(image_path('', 'actions/caret.svg')); ?>" /></a></legend>
</fieldset>
<?php endif; ?>
<?php if(!$_['directoryIsSet'] OR count($_['errors']) > 0): ?>
2011-10-03 15:32:16 +04:00
<fieldset id="datadirField">
<div id="datadirContent">
2013-02-28 01:55:39 +04:00
<label for="directory"><?php p($l->t( 'Data folder' )); ?></label>
2013-02-15 02:19:12 +04:00
<input type="text" name="directory" id="directory"
placeholder="<?php p(OC::$SERVERROOT.'/data'); ?>"
value="<?php p($_['directory']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" />
2011-10-03 15:32:16 +04:00
</div>
</fieldset>
2013-09-30 04:16:32 +04:00
<?php endif; ?>
2011-10-03 15:32:16 +04:00
<?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?>
<fieldset id='databaseBackend'>
<?php if($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle'] or $_['hasMSSQL'])
2013-02-15 02:19:12 +04:00
$hasOtherDB = true; else $hasOtherDB =false; //other than SQLite ?>
2013-02-28 02:15:18 +04:00
<legend><?php p($l->t( 'Configure the database' )); ?></legend>
<div id="selectDbType">
2014-01-31 20:31:19 +04:00
<?php foreach($_['databases'] as $type => $label): ?>
<?php if(count($_['databases']) === 1): ?>
<p class="info"><?php p($label . ' ' . $l->t( 'will be used' )); ?>.</p>
2014-01-31 20:31:19 +04:00
<input type="hidden" id="dbtype" name="dbtype" value="<?php p($type) ?>" />
2011-08-08 19:57:45 +04:00
<?php else: ?>
2014-01-31 20:31:19 +04:00
<input type="radio" name="dbtype" value="<?php p($type) ?>" id="<?php p($type) ?>"
<?php print_unescaped($_['dbtype'] === $type ? 'checked="checked" ' : '') ?>/>
2014-01-31 20:31:19 +04:00
<label class="<?php p($type) ?>" for="<?php p($type) ?>"><?php p($label) ?></label>
<?php endif; ?>
2014-01-31 20:31:19 +04:00
<?php endforeach; ?>
</div>
</fieldset>
<?php if($hasOtherDB): ?>
<fieldset id='databaseField'>
<div id="use_other_db">
2012-12-04 19:58:42 +04:00
<p class="infield grouptop">
2013-02-28 01:55:39 +04:00
<label for="dbuser" class="infield"><?php p($l->t( 'Database user' )); ?></label>
<input type="text" name="dbuser" id="dbuser" placeholder=""
value="<?php p($_['dbuser']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" />
</p>
2012-12-04 19:58:42 +04:00
<p class="infield groupmiddle">
<input type="password" name="dbpass" id="dbpass" placeholder="" data-typetoggle="#dbpassword"
value="<?php p($_['dbpass']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" />
<label for="dbpass" class="infield"><?php p($l->t( 'Database password' )); ?></label>
<input type="checkbox" id="dbpassword" name="dbpassword" />
<label for="dbpassword"></label>
</p>
2012-12-04 19:58:42 +04:00
<p class="infield groupmiddle">
2013-02-28 01:55:39 +04:00
<label for="dbname" class="infield"><?php p($l->t( 'Database name' )); ?></label>
<input type="text" name="dbname" id="dbname" placeholder=""
value="<?php p($_['dbname']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off"
pattern="[0-9a-zA-Z$_-]+" />
</p>
<?php if($_['hasOracle']): ?>
<div id="use_oracle_db">
<p class="infield groupmiddle">
<label for="dbtablespace" class="infield"><?php p($l->t( 'Database tablespace' )); ?></label>
<input type="text" name="dbtablespace" id="dbtablespace" placeholder=""
value="<?php p($_['dbtablespace']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" />
</p>
</div>
<?php endif; ?>
<p class="infield groupbottom">
<label for="dbhost" class="infield"><?php p($l->t( 'Database host' )); ?></label>
<input type="text" name="dbhost" id="dbhost" placeholder=""
value="<?php p($_['dbhost']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" />
2012-07-30 22:53:21 +04:00
</p>
</div>
</fieldset>
2012-07-30 22:53:21 +04:00
<?php endif; ?>
2013-09-30 04:16:32 +04:00
<?php endif; ?>
<div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" data-finishing="<?php p($l->t( 'Finishing …' )); ?>" /></div>
2011-08-08 19:57:45 +04:00
</form>