xref: /webtrees/resources/views/errors/database-connection.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
6d70512abSGreg Roach
77c2c99faSGreg Roach/**
87c2c99faSGreg Roach * @var string $error
97c2c99faSGreg Roach */
107c2c99faSGreg Roach
11d70512abSGreg Roach?>
12dd6b2bfcSGreg Roach
13dd6b2bfcSGreg Roach<div class="content">
14dd6b2bfcSGreg Roach    <p>
15dd6b2bfcSGreg Roach        <?= I18N::translate('Oops! The webserver is unable to connect to the database server. It could be busy, undergoing maintenance, or simply broken. You should <a href="index.php">try again</a> in a few minutes or contact the website administrator.') ?>
16dd6b2bfcSGreg Roach    </p>
17dd6b2bfcSGreg Roach
18dd6b2bfcSGreg Roach    <blockquote>
19dd6b2bfcSGreg Roach        <?= e($error) ?>
20dd6b2bfcSGreg Roach    </blockquote>
21dd6b2bfcSGreg Roach
22dd6b2bfcSGreg Roach    <?= I18N::translate('If you are the website administrator, you should check that:') ?>
23dd6b2bfcSGreg Roach
24dd6b2bfcSGreg Roach    <ol>
25dd6b2bfcSGreg Roach        <li>
26dd6b2bfcSGreg Roach            <?= /* I18N: [you should check that:] ... */ I18N::translate('the database connection settings in the file “/data/config.ini.php” are still correct') ?>
27dd6b2bfcSGreg Roach        </li>
28dd6b2bfcSGreg Roach        <li>
29dd6b2bfcSGreg Roach            <?= /* I18N: [you should check that:] ... */ I18N::translate('the folder “/data” and the file “/data/config.ini.php” have access permissions that allow the webserver to read them') ?>
30dd6b2bfcSGreg Roach        </li>
31dd6b2bfcSGreg Roach        <li>
32dd6b2bfcSGreg Roach            <?= /* I18N: [you should check that:] ... */ I18N::translate('you can connect to the database using other applications, such as phpmyadmin') ?>
33dd6b2bfcSGreg Roach        </li>
34dd6b2bfcSGreg Roach    </ol>
35dd6b2bfcSGreg Roach
36dd6b2bfcSGreg Roach    <p class="good">
37dd6b2bfcSGreg Roach        <?= I18N::translate('If you cannot resolve the problem yourself, you can ask for help on the forums at <a href="https://webtrees.net">webtrees.net</a>.') ?>
38dd6b2bfcSGreg Roach    </p>
39dd6b2bfcSGreg Roach</div>
40