예제 #1
0
        </div>

    </div>

    <div class="box" id="configWarnings">
        <h2>Configuration Warnings</h2>

        <ul>
            <li id="cronWarning">
                <strong>cron script accessible from outside</strong><br />
                The modules/base/cron.php file should only be allowed to run from server (localhost).  Because
                this file will be run via command line PHP by cron (or your scheduler program) you should
                modify your web server's configuration (apache site file) to restrict access to this file.
            </li>
            <?php 
if (!$settings->checkForSchedulerRunning()) {
    ?>
            <li id="cronRun">
                <strong>cron script not running</strong><br />
                Many features of phpBMS (such as importing, triggers, and recurring invoices)
                will not work if the scheduler has not been configured. Check the scheduler
                section of the system menu for instructions on how to activate the scheduler.
            </li>
            <?php 
}
//endif
?>
        </ul>

    </div>