Esempio n. 1
0
require_once $gfwww . 'include/pre.php';
require_once $gfcommon . 'reporting/report_utils.php';
require_once $gfcommon . 'reporting/ReportSetup.class.php';
session_require(array('group' => $sys_stats_group, 'A'));
$time_code = getStringFromRequest('time_code');
$category_name = getStringFromRequest('category_name');
if (getStringFromRequest('submit')) {
    if (getStringFromRequest('add')) {
        $r = new ReportSetup();
        if (!$r->addTimeCode($category_name)) {
            exit_error('Error', $r->getErrorMessage());
        } else {
            $feedback = _('Successful');
        }
    } elseif (getStringFromRequest('update')) {
        $r = new ReportSetup();
        if (!$r->updateTimeCode($time_code, $category_name)) {
            exit_error('Error', $r->getErrorMessage());
        } else {
            $feedback = _('Successful');
        }
        $time_code = false;
        $category_name = '';
    }
}
echo report_header(_('Main Page'));
if ($time_code) {
    $res1 = db_query("SELECT * FROM rep_time_category WHERE time_code='{$time_code}'");
    $category_name = db_result($res1, 0, 'category_name');
}
$res = db_query("SELECT * FROM rep_time_category");
Esempio n. 2
0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GForge; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
require_once '../env.inc.php';
require_once $gfwww . 'include/pre.php';
require_once $gfcommon . 'reporting/report_utils.php';
require_once $gfcommon . 'reporting/Report.class.php';
require_once $gfcommon . 'reporting/ReportSetup.class.php';
session_require(array('group' => $sys_stats_group, 'A'));
echo report_header(_('Main Page'));
if (getStringFromRequest('submit') && getStringFromRequest('im_sure')) {
    $r = new ReportSetup();
    if (!$r->initialSetup()) {
        echo $r->getErrorMessage();
        form_release_key(getStringFromRequest("form_key"));
    } else {
        Header("Location: index.php?feedback=Successfully+Rebuilt");
    }
}
echo _('<h3>Reporting System Initialization</h3><p>Occasionally, if cronjobs failed or the database was damaged, you may have to rebuild the reporting tables.<p>If you are sure you want to rebuild all the reporting tables, check the "I\'m Sure" box and click the button below.<p>This could take a couple minutes, so DO NOT CLICK MORE THAN ONCE.<p>');
?>

<form action="<?php 
echo getStringFromServer('PHP_SELF');
?>
" method="post">
Esempio n. 3
0
 *
 * GForge is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * GForge is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GForge; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
require dirname(__FILE__) . '/../www/env.inc.php';
require $gfwww . 'include/squal_pre.php';
require $gfcommon . 'include/cron_utils.php';
require $gfcommon . 'reporting/ReportSetup.class.php';
$err = '';
$report = new ReportSetup();
if ($report->isError()) {
    $err .= $report->getErrorMessage();
}
db_begin();
if (!$report->dailyData()) {
    $err .= $report->getErrorMessage();
}
db_commit();
$err .= "Done: " . date('Ymd H:i') . ' - ' . db_error();
cron_entry(20, $err);