summaryrefslogtreecommitdiffstats
path: root/templates/part.content.warnings.php
blob: cdfc2f6dade3d389198994e66cb5af0fa82245d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php if ($_['warnings']['improperlyConfiguredCron']) { ?>
    <news-instant-notification id="cron-warning">
        <p><?php p($l->t('Ajax or webcron mode detected! Your feeds will not be updated!')); ?></p>
        <ul>
            <li>
                <a href="https://docs.nextcloud.org/server/latest/admin_manual/configuration_server/background_jobs_configuration.html#cron"
                   target="_blank"
                   rel="noreferrer">
                    <?php
                    p($l->t('How to set up the operating system cron'));
                    ?>
                </a>
            </li>
            <li>
                <a href="https://github.com/nextcloud/news-updater"
                   target="_blank"
                   rel="noreferrer">
                    <?php
                    p($l->t('Install and set up a faster parallel updater that uses the News app\'s update API'));
                    ?>
                </a>
            </li>
        </ul>
    </news-instant-notification>
<?php }; ?>

<?php if ($_['warnings']['incorrectDbCharset']) { ?>
    <news-instant-notification id="cron-warning">
        <p><?php p($l->t('Non UTF-8 charset for MySQL/MariaDB database detected!')); ?></p>
        <ul>
            <li>
                <a href="https://docs.nextcloud.com/server/latest/admin_manual/configuration_database/mysql_4byte_support.html"
                   target="_blank"
                   rel="noreferrer">
                    <?php
                    p($l->t('Learn how to convert your database to utf8mb4 (make a backup beforehand)'));
                    ?>
                </a>
            </li>
        </ul>
    </news-instant-notification>
<?php }; ?>