/www/admin/run-mpe.php
https://github.com/orchestra-io/sample-openx · PHP · 59 lines · 14 code · 11 blank · 34 comment · 1 complexity · 4945740b9480bf247a0da095ed1c60f8 MD5 · raw file
- <?php
- /*
- +---------------------------------------------------------------------------+
- | OpenX v${RELEASE_MAJOR_MINOR} |
- | =======${RELEASE_MAJOR_MINOR_DOUBLE_UNDERLINE} |
- | |
- | Copyright (c) 2003-2009 OpenX Limited |
- | For contact details, see: http://www.openx.org/ |
- | |
- | This program 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. |
- | |
- | This program 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 this program; if not, write to the Free Software |
- | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
- +---------------------------------------------------------------------------+
- $Id: run-mpe.php 30820 2009-01-13 19:02:17Z andrew.hill $
- */
- /**
- * A script file to run the Maintenance Priority Engine.
- */
- // Send headers to the client before proceeding
- flush();
- // Prevent output
- ob_start();
- // Run maintenance
- // Done this way so that it works in CLI PHP
- $path = dirname(__FILE__);
- require_once $path . '/../../init.php';
- // Set longer time out, and ignore user abort
- if (!ini_get('safe_mode')) {
- @set_time_limit($conf['maintenance']['timeLimitScripts']);
- @ignore_user_abort(true);
- }
- require_once MAX_PATH . '/lib/OA/Maintenance/Priority.php';
- OA_Maintenance_Priority::run();
- // Get and clean output buffer
- $buffer = ob_get_clean();
- // Flush output buffer, stripping the
- echo preg_replace('/^#!.*\n/', '', $buffer);
- ?>