Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-04-05 00:32:00 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-04-11 10:32:33 +0300
commit7e7146db7fdefa7039ad5dd9653500589a1d0c51 (patch)
treebe21d5f37601376d96afb96e696b4fd12ef98bf4 /core/templates
parent7641a1589f23eaddbbf3a953746ef1bf6f5234f8 (diff)
Block install without CAN_INSTALL file
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/installation_forbidden.php6
-rw-r--r--core/templates/installation_incomplete.php6
2 files changed, 12 insertions, 0 deletions
diff --git a/core/templates/installation_forbidden.php b/core/templates/installation_forbidden.php
new file mode 100644
index 00000000000..743d14b1330
--- /dev/null
+++ b/core/templates/installation_forbidden.php
@@ -0,0 +1,6 @@
+<div class="error">
+ <h2><?php p($l->t('Error')) ?></h2>
+ <p>
+ <?php p($l->t('It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue.')) ?>
+ </p>
+</div>
diff --git a/core/templates/installation_incomplete.php b/core/templates/installation_incomplete.php
new file mode 100644
index 00000000000..867f637d701
--- /dev/null
+++ b/core/templates/installation_incomplete.php
@@ -0,0 +1,6 @@
+<div class="error">
+ <h2><?php p($l->t('Error')) ?></h2>
+ <p>
+ <?php p($l->t('Could not remove CAN_INSTALL from the config folder. Please remove this file manually.')) ?>
+ </p>
+</div>