summaryrefslogtreecommitdiffstats
path: root/templates/part.content.cronwarning.php
blob: 57eebe123074d771ceeda9d8ac75f29aba0ac132 (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
<?php if ($_['cronWarning']) { ?>
    <div id="cron-warning">
        <p><?php p($l->t('Ajax cron mode detected! Your feeds will ' .
            'not be updated correctly. It is recommended to either use ' .
            'the operating system cron or a custom updater.'
        )); ?>
            <ul>
                <li>
                    <a href="http://doc.owncloud.org/server/8.0/admin_manual/configuration/background_jobs_configuration.html#cron"
                       target="_blank">
                    <?php
                        p($l->t('How to set up the operating system cron'));
                    ?>
                    </a>
                </li>
                <li>
                    <a href="https://github.com/owncloud/news/wiki/Custom-Updater"
                       target="_blank">
                        <?php
                            p($l->t('How to set up a custom updater ' .
                                    '(faster and no possible deadlock) '
                            ));
                        ?>
                    </a>
                </li>
            </ul>
        </p>
    </div>
<?php }; ?>