<?php
// ******************************************************************
// Cowtacular
// (c) 2010 - Cowtacular LLC
//
// http://www.cowtacular.com
//
// ******************************************************************
// Change the working directory to the proper location
$scriptspath = $_SERVER["PWD"] ."/". $_SERVER["PHP_SELF"];
if (! file_exists($scriptspath))
die("\n\nStopping! Could not find script at ". $scriptspath ."\n\n");
$scriptspath = str_replace("/scripts/". basename($scriptspath), "", $scriptspath);
chdir($scriptspath);
// Load the configuration
include_once('cow-config.php');
// Include the global library
include_once('global/lib.php');
// Call the global background process routine
$backgroundprocess_outputtype = 1;
$backgroundprocess_maintenancewindow = 2;
include_once('api/backgroundprocess.php');
// Close the databases
db_writeobjectcache();
db_close();
?>